diff --git a/corpus/patterns.txt b/corpus/patterns.txt index a57cd24b..327bf118 100644 --- a/corpus/patterns.txt +++ b/corpus/patterns.txt @@ -135,3 +135,39 @@ match x { (match_arm (match_pattern (captured_pattern (identifier) (range_pattern (identifier) (identifier)))) (identifier))))) + +================================= +Box patterns +================================= + +match x { + box a @ 10 => a, + box a @ 11 => a, + box a => a, +} + +--- + +(source_file + (match_expression + value: (identifier) + body: (match_block + (match_arm + pattern: (match_pattern + (box_pattern + (captured_pattern + (identifier) + (integer_literal)))) + value: (identifier)) + (match_arm + pattern: (match_pattern + (box_pattern + (captured_pattern + (identifier) + (integer_literal)))) + value: (identifier)) + (match_arm + pattern: (match_pattern + (box_pattern + (identifier))) + value: (identifier))))) diff --git a/grammar.js b/grammar.js index 7c12d18c..35924881 100644 --- a/grammar.js +++ b/grammar.js @@ -1240,6 +1240,7 @@ module.exports = grammar({ $.remaining_field_pattern, $.mut_pattern, $.range_pattern, + $.box_pattern, '_' ), @@ -1296,7 +1297,7 @@ module.exports = grammar({ mut_pattern: $ => prec(-1, seq( $.mutable_specifier, - $._pattern + $._pattern, )), range_pattern: $ => seq( @@ -1313,7 +1314,7 @@ module.exports = grammar({ ref_pattern: $ => seq( 'ref', - $._pattern + $._pattern, ), captured_pattern: $ => seq( @@ -1325,7 +1326,12 @@ module.exports = grammar({ reference_pattern: $ => seq( '&', optional($.mutable_specifier), - $._pattern + $._pattern, + ), + + box_pattern: $ => seq( + 'box', + $._pattern, ), // Section - Literals diff --git a/src/grammar.json b/src/grammar.json index 866362a4..ab434c81 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -755,7 +755,7 @@ }, { "type": "PATTERN", - "value": "[\\/_\\-=->,;:::!=?.@*=\\/=&=#%=^=+<>|~]+" + "value": "[/_\\-=->,;:::!=?.@*=/=&=#%=^=+<>|~]+" }, { "type": "STRING", @@ -7216,6 +7216,10 @@ "type": "SYMBOL", "name": "range_pattern" }, + { + "type": "SYMBOL", + "name": "box_pattern" + }, { "type": "STRING", "value": "_" @@ -7698,6 +7702,19 @@ } ] }, + "box_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "box" + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] + }, "_literal": { "type": "CHOICE", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 0d4c13e8..50644c19 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -323,6 +323,10 @@ "type": "_literal_pattern", "named": true }, + { + "type": "box_pattern", + "named": true + }, { "type": "captured_pattern", "named": true @@ -805,6 +809,21 @@ ] } }, + { + "type": "box_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + } + }, { "type": "bracketed_type", "named": true, @@ -4674,6 +4693,10 @@ "type": "block_comment", "named": true }, + { + "type": "box", + "named": false + }, { "type": "break", "named": false diff --git a/src/parser.c b/src/parser.c index ade7b4bb..8ba1b66b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 11 -#define STATE_COUNT 2413 -#define LARGE_STATE_COUNT 530 -#define SYMBOL_COUNT 312 +#define STATE_COUNT 2416 +#define LARGE_STATE_COUNT 537 +#define SYMBOL_COUNT 314 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 138 +#define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -137,200 +137,202 @@ enum { anon_sym_move = 119, anon_sym_DOT = 120, anon_sym_AT = 121, - sym_integer_literal = 122, - aux_sym_string_literal_token1 = 123, - anon_sym_DQUOTE = 124, - sym_char_literal = 125, - sym_escape_sequence = 126, - anon_sym_true = 127, - anon_sym_false = 128, - sym_line_comment = 129, - sym_self = 130, - sym_super = 131, - sym_crate = 132, - sym_metavariable = 133, - sym__string_content = 134, - sym_raw_string_literal = 135, - sym_float_literal = 136, - sym_block_comment = 137, - sym_source_file = 138, - sym__statement = 139, - sym_empty_statement = 140, - sym__expression_statement = 141, - sym_macro_definition = 142, - sym_macro_rule = 143, - sym__token_pattern = 144, - sym_token_tree_pattern = 145, - sym_token_binding_pattern = 146, - sym_token_repetition_pattern = 147, - sym_fragment_specifier = 148, - sym_token_tree = 149, - sym_token_repetition = 150, - sym_attribute_item = 151, - sym_inner_attribute_item = 152, - sym_meta_item = 153, - sym_meta_arguments = 154, - sym_mod_item = 155, - sym_foreign_mod_item = 156, - sym_declaration_list = 157, - sym_struct_item = 158, - sym_union_item = 159, - sym_enum_item = 160, - sym_enum_variant_list = 161, - sym_enum_variant = 162, - sym_field_declaration_list = 163, - sym_field_declaration = 164, - sym_ordered_field_declaration_list = 165, - sym_extern_crate_declaration = 166, - sym_const_item = 167, - sym_static_item = 168, - sym_type_item = 169, - sym_function_item = 170, - sym_function_signature_item = 171, - sym_function_modifiers = 172, - sym_where_clause = 173, - sym_where_predicate = 174, - sym_impl_item = 175, - sym_trait_item = 176, - sym_associated_type = 177, - sym_trait_bounds = 178, - sym_higher_ranked_trait_bound = 179, - sym_removed_trait_bound = 180, - sym_type_parameters = 181, - sym_const_parameter = 182, - sym_constrained_type_parameter = 183, - sym_optional_type_parameter = 184, - sym_let_declaration = 185, - sym_use_declaration = 186, - sym__use_clause = 187, - sym_scoped_use_list = 188, - sym_use_list = 189, - sym_use_as_clause = 190, - sym_use_wildcard = 191, - sym_parameters = 192, - sym_self_parameter = 193, - sym_variadic_parameter = 194, - sym_parameter = 195, - sym_extern_modifier = 196, - sym_visibility_modifier = 197, - sym__type = 198, - sym_bracketed_type = 199, - sym_qualified_type = 200, - sym_lifetime = 201, - sym_array_type = 202, - sym_for_lifetimes = 203, - sym_function_type = 204, - sym_tuple_type = 205, - sym_unit_type = 206, - sym_generic_function = 207, - sym_generic_type = 208, - sym_generic_type_with_turbofish = 209, - sym_bounded_type = 210, - sym_type_arguments = 211, - sym_type_binding = 212, - sym_reference_type = 213, - sym_pointer_type = 214, - sym_empty_type = 215, - sym_abstract_type = 216, - sym_dynamic_type = 217, - sym__expression = 218, - sym_macro_invocation = 219, - sym_scoped_identifier = 220, - sym_scoped_type_identifier_in_expression_position = 221, - sym_scoped_type_identifier = 222, - sym_range_expression = 223, - sym_unary_expression = 224, - sym_try_expression = 225, - sym_reference_expression = 226, - sym_binary_expression = 227, - sym_assignment_expression = 228, - sym_compound_assignment_expr = 229, - sym_type_cast_expression = 230, - sym_return_expression = 231, - sym_call_expression = 232, - sym_arguments = 233, - sym_array_expression = 234, - sym_parenthesized_expression = 235, - sym_tuple_expression = 236, - sym_unit_expression = 237, - sym_struct_expression = 238, - sym_field_initializer_list = 239, - sym_shorthand_field_initializer = 240, - sym_field_initializer = 241, - sym_base_field_initializer = 242, - sym_if_expression = 243, - sym_if_let_expression = 244, - sym__else_tail = 245, - sym_match_expression = 246, - sym_match_block = 247, - sym_match_arm = 248, - sym_last_match_arm = 249, - sym_match_pattern = 250, - sym_while_expression = 251, - sym_while_let_expression = 252, - sym_loop_expression = 253, - sym_for_expression = 254, - sym_closure_expression = 255, - sym_closure_parameters = 256, - sym_loop_label = 257, - sym_break_expression = 258, - sym_continue_expression = 259, - sym_index_expression = 260, - sym_await_expression = 261, - sym_field_expression = 262, - sym_unsafe_block = 263, - sym_async_block = 264, - sym_block = 265, - sym__pattern = 266, - sym_tuple_pattern = 267, - sym_slice_pattern = 268, - sym_tuple_struct_pattern = 269, - sym_struct_pattern = 270, - sym_field_pattern = 271, - sym_remaining_field_pattern = 272, - sym_mut_pattern = 273, - sym_range_pattern = 274, - sym_ref_pattern = 275, - sym_captured_pattern = 276, - sym_reference_pattern = 277, - sym__literal = 278, - sym__literal_pattern = 279, - sym_negative_literal = 280, - sym_string_literal = 281, - sym_boolean_literal = 282, - aux_sym_source_file_repeat1 = 283, - aux_sym_macro_definition_repeat1 = 284, - aux_sym_token_tree_pattern_repeat1 = 285, - aux_sym_token_tree_repeat1 = 286, - aux_sym_meta_arguments_repeat1 = 287, - aux_sym_declaration_list_repeat1 = 288, - aux_sym_enum_variant_list_repeat1 = 289, - aux_sym_enum_variant_list_repeat2 = 290, - aux_sym_field_declaration_list_repeat1 = 291, - aux_sym_ordered_field_declaration_list_repeat1 = 292, - aux_sym_function_modifiers_repeat1 = 293, - aux_sym_where_clause_repeat1 = 294, - aux_sym_trait_bounds_repeat1 = 295, - aux_sym_type_parameters_repeat1 = 296, - aux_sym_use_list_repeat1 = 297, - aux_sym_parameters_repeat1 = 298, - aux_sym_for_lifetimes_repeat1 = 299, - aux_sym_tuple_type_repeat1 = 300, - aux_sym_type_arguments_repeat1 = 301, - aux_sym_arguments_repeat1 = 302, - aux_sym_array_expression_repeat1 = 303, - aux_sym_tuple_expression_repeat1 = 304, - aux_sym_field_initializer_list_repeat1 = 305, - aux_sym_match_block_repeat1 = 306, - aux_sym_match_pattern_repeat1 = 307, - aux_sym_closure_parameters_repeat1 = 308, - aux_sym_tuple_pattern_repeat1 = 309, - aux_sym_struct_pattern_repeat1 = 310, - aux_sym_string_literal_repeat1 = 311, - alias_sym_field_identifier = 312, - alias_sym_primitive_type = 313, - alias_sym_shorthand_field_identifier = 314, - alias_sym_type_identifier = 315, + anon_sym_box = 122, + sym_integer_literal = 123, + aux_sym_string_literal_token1 = 124, + anon_sym_DQUOTE = 125, + sym_char_literal = 126, + sym_escape_sequence = 127, + anon_sym_true = 128, + anon_sym_false = 129, + sym_line_comment = 130, + sym_self = 131, + sym_super = 132, + sym_crate = 133, + sym_metavariable = 134, + sym__string_content = 135, + sym_raw_string_literal = 136, + sym_float_literal = 137, + sym_block_comment = 138, + sym_source_file = 139, + sym__statement = 140, + sym_empty_statement = 141, + sym__expression_statement = 142, + sym_macro_definition = 143, + sym_macro_rule = 144, + sym__token_pattern = 145, + sym_token_tree_pattern = 146, + sym_token_binding_pattern = 147, + sym_token_repetition_pattern = 148, + sym_fragment_specifier = 149, + sym_token_tree = 150, + sym_token_repetition = 151, + sym_attribute_item = 152, + sym_inner_attribute_item = 153, + sym_meta_item = 154, + sym_meta_arguments = 155, + sym_mod_item = 156, + sym_foreign_mod_item = 157, + sym_declaration_list = 158, + sym_struct_item = 159, + sym_union_item = 160, + sym_enum_item = 161, + sym_enum_variant_list = 162, + sym_enum_variant = 163, + sym_field_declaration_list = 164, + sym_field_declaration = 165, + sym_ordered_field_declaration_list = 166, + sym_extern_crate_declaration = 167, + sym_const_item = 168, + sym_static_item = 169, + sym_type_item = 170, + sym_function_item = 171, + sym_function_signature_item = 172, + sym_function_modifiers = 173, + sym_where_clause = 174, + sym_where_predicate = 175, + sym_impl_item = 176, + sym_trait_item = 177, + sym_associated_type = 178, + sym_trait_bounds = 179, + sym_higher_ranked_trait_bound = 180, + sym_removed_trait_bound = 181, + sym_type_parameters = 182, + sym_const_parameter = 183, + sym_constrained_type_parameter = 184, + sym_optional_type_parameter = 185, + sym_let_declaration = 186, + sym_use_declaration = 187, + sym__use_clause = 188, + sym_scoped_use_list = 189, + sym_use_list = 190, + sym_use_as_clause = 191, + sym_use_wildcard = 192, + sym_parameters = 193, + sym_self_parameter = 194, + sym_variadic_parameter = 195, + sym_parameter = 196, + sym_extern_modifier = 197, + sym_visibility_modifier = 198, + sym__type = 199, + sym_bracketed_type = 200, + sym_qualified_type = 201, + sym_lifetime = 202, + sym_array_type = 203, + sym_for_lifetimes = 204, + sym_function_type = 205, + sym_tuple_type = 206, + sym_unit_type = 207, + sym_generic_function = 208, + sym_generic_type = 209, + sym_generic_type_with_turbofish = 210, + sym_bounded_type = 211, + sym_type_arguments = 212, + sym_type_binding = 213, + sym_reference_type = 214, + sym_pointer_type = 215, + sym_empty_type = 216, + sym_abstract_type = 217, + sym_dynamic_type = 218, + sym__expression = 219, + sym_macro_invocation = 220, + sym_scoped_identifier = 221, + sym_scoped_type_identifier_in_expression_position = 222, + sym_scoped_type_identifier = 223, + sym_range_expression = 224, + sym_unary_expression = 225, + sym_try_expression = 226, + sym_reference_expression = 227, + sym_binary_expression = 228, + sym_assignment_expression = 229, + sym_compound_assignment_expr = 230, + sym_type_cast_expression = 231, + sym_return_expression = 232, + sym_call_expression = 233, + sym_arguments = 234, + sym_array_expression = 235, + sym_parenthesized_expression = 236, + sym_tuple_expression = 237, + sym_unit_expression = 238, + sym_struct_expression = 239, + sym_field_initializer_list = 240, + sym_shorthand_field_initializer = 241, + sym_field_initializer = 242, + sym_base_field_initializer = 243, + sym_if_expression = 244, + sym_if_let_expression = 245, + sym__else_tail = 246, + sym_match_expression = 247, + sym_match_block = 248, + sym_match_arm = 249, + sym_last_match_arm = 250, + sym_match_pattern = 251, + sym_while_expression = 252, + sym_while_let_expression = 253, + sym_loop_expression = 254, + sym_for_expression = 255, + sym_closure_expression = 256, + sym_closure_parameters = 257, + sym_loop_label = 258, + sym_break_expression = 259, + sym_continue_expression = 260, + sym_index_expression = 261, + sym_await_expression = 262, + sym_field_expression = 263, + sym_unsafe_block = 264, + sym_async_block = 265, + sym_block = 266, + sym__pattern = 267, + sym_tuple_pattern = 268, + sym_slice_pattern = 269, + sym_tuple_struct_pattern = 270, + sym_struct_pattern = 271, + sym_field_pattern = 272, + sym_remaining_field_pattern = 273, + sym_mut_pattern = 274, + sym_range_pattern = 275, + sym_ref_pattern = 276, + sym_captured_pattern = 277, + sym_reference_pattern = 278, + sym_box_pattern = 279, + sym__literal = 280, + sym__literal_pattern = 281, + sym_negative_literal = 282, + sym_string_literal = 283, + sym_boolean_literal = 284, + aux_sym_source_file_repeat1 = 285, + aux_sym_macro_definition_repeat1 = 286, + aux_sym_token_tree_pattern_repeat1 = 287, + aux_sym_token_tree_repeat1 = 288, + aux_sym_meta_arguments_repeat1 = 289, + aux_sym_declaration_list_repeat1 = 290, + aux_sym_enum_variant_list_repeat1 = 291, + aux_sym_enum_variant_list_repeat2 = 292, + aux_sym_field_declaration_list_repeat1 = 293, + aux_sym_ordered_field_declaration_list_repeat1 = 294, + aux_sym_function_modifiers_repeat1 = 295, + aux_sym_where_clause_repeat1 = 296, + aux_sym_trait_bounds_repeat1 = 297, + aux_sym_type_parameters_repeat1 = 298, + aux_sym_use_list_repeat1 = 299, + aux_sym_parameters_repeat1 = 300, + aux_sym_for_lifetimes_repeat1 = 301, + aux_sym_tuple_type_repeat1 = 302, + aux_sym_type_arguments_repeat1 = 303, + aux_sym_arguments_repeat1 = 304, + aux_sym_array_expression_repeat1 = 305, + aux_sym_tuple_expression_repeat1 = 306, + aux_sym_field_initializer_list_repeat1 = 307, + aux_sym_match_block_repeat1 = 308, + aux_sym_match_pattern_repeat1 = 309, + aux_sym_closure_parameters_repeat1 = 310, + aux_sym_tuple_pattern_repeat1 = 311, + aux_sym_struct_pattern_repeat1 = 312, + aux_sym_string_literal_repeat1 = 313, + alias_sym_field_identifier = 314, + alias_sym_primitive_type = 315, + alias_sym_shorthand_field_identifier = 316, + alias_sym_type_identifier = 317, }; static const char *ts_symbol_names[] = { @@ -456,6 +458,7 @@ static const char *ts_symbol_names[] = { [anon_sym_move] = "move", [anon_sym_DOT] = ".", [anon_sym_AT] = "@", + [anon_sym_box] = "box", [sym_integer_literal] = "integer_literal", [aux_sym_string_literal_token1] = "\"", [anon_sym_DQUOTE] = "\"", @@ -612,6 +615,7 @@ static const char *ts_symbol_names[] = { [sym_ref_pattern] = "ref_pattern", [sym_captured_pattern] = "captured_pattern", [sym_reference_pattern] = "reference_pattern", + [sym_box_pattern] = "box_pattern", [sym__literal] = "_literal", [sym__literal_pattern] = "_literal_pattern", [sym_negative_literal] = "negative_literal", @@ -775,6 +779,7 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_move] = anon_sym_move, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_AT] = anon_sym_AT, + [anon_sym_box] = anon_sym_box, [sym_integer_literal] = sym_integer_literal, [aux_sym_string_literal_token1] = anon_sym_DQUOTE, [anon_sym_DQUOTE] = anon_sym_DQUOTE, @@ -931,6 +936,7 @@ static TSSymbol ts_symbol_map[] = { [sym_ref_pattern] = sym_ref_pattern, [sym_captured_pattern] = sym_captured_pattern, [sym_reference_pattern] = sym_reference_pattern, + [sym_box_pattern] = sym_box_pattern, [sym__literal] = sym__literal, [sym__literal_pattern] = sym__literal_pattern, [sym_negative_literal] = sym_negative_literal, @@ -1460,6 +1466,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_box] = { + .visible = true, + .named = false, + }, [sym_integer_literal] = { .visible = true, .named = true, @@ -2084,6 +2094,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_box_pattern] = { + .visible = true, + .named = true, + }, [sym__literal] = { .visible = false, .named = true, @@ -5027,460 +5041,461 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 21: if (lookahead == 'o') ADVANCE(73); + if (lookahead == 'x') ADVANCE(74); END_STATE(); case 22: - if (lookahead == 'e') ADVANCE(74); + if (lookahead == 'e') ADVANCE(75); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(75); + if (lookahead == 'a') ADVANCE(76); END_STATE(); case 24: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'n') ADVANCE(77); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(77); + if (lookahead == 'a') ADVANCE(78); END_STATE(); case 26: - if (lookahead == 'f') ADVANCE(78); + if (lookahead == 'f') ADVANCE(79); END_STATE(); case 27: - if (lookahead == 'n') ADVANCE(79); + if (lookahead == 'n') ADVANCE(80); END_STATE(); case 28: - if (lookahead == 's') ADVANCE(80); + if (lookahead == 's') ADVANCE(81); END_STATE(); case 29: - if (lookahead == 'u') ADVANCE(81); + if (lookahead == 'u') ADVANCE(82); END_STATE(); case 30: - if (lookahead == 'p') ADVANCE(82); - if (lookahead == 't') ADVANCE(83); + if (lookahead == 'p') ADVANCE(83); + if (lookahead == 't') ADVANCE(84); END_STATE(); case 31: - if (lookahead == '2') ADVANCE(84); + if (lookahead == '2') ADVANCE(85); END_STATE(); case 32: - if (lookahead == '4') ADVANCE(85); + if (lookahead == '4') ADVANCE(86); END_STATE(); case 33: - if (lookahead == 'l') ADVANCE(86); + if (lookahead == 'l') ADVANCE(87); END_STATE(); case 34: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 35: - if (lookahead == 'r') ADVANCE(87); + if (lookahead == 'r') ADVANCE(88); END_STATE(); case 36: - if (lookahead == '2') ADVANCE(88); - if (lookahead == '6') ADVANCE(89); + if (lookahead == '2') ADVANCE(89); + if (lookahead == '6') ADVANCE(90); END_STATE(); case 37: - if (lookahead == '2') ADVANCE(90); + if (lookahead == '2') ADVANCE(91); END_STATE(); case 38: - if (lookahead == '4') ADVANCE(91); + if (lookahead == '4') ADVANCE(92); END_STATE(); case 39: ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'e') ADVANCE(93); END_STATE(); case 41: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 42: - if (lookahead == 'p') ADVANCE(93); + if (lookahead == 'p') ADVANCE(94); END_STATE(); case 43: ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 44: - if (lookahead == 'i') ADVANCE(94); + if (lookahead == 'i') ADVANCE(95); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 46: - if (lookahead == 't') ADVANCE(96); + if (lookahead == 't') ADVANCE(97); END_STATE(); case 47: - if (lookahead == 'f') ADVANCE(97); - if (lookahead == 't') ADVANCE(98); + if (lookahead == 'f') ADVANCE(98); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 48: - if (lookahead == 'o') ADVANCE(99); + if (lookahead == 'o') ADVANCE(100); END_STATE(); case 49: - if (lookahead == 't') ADVANCE(100); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(101); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(102); - if (lookahead == 'v') ADVANCE(103); + if (lookahead == 'd') ADVANCE(103); + if (lookahead == 'v') ADVANCE(104); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(104); + if (lookahead == 't') ADVANCE(105); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(105); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 54: - if (lookahead == 'b') ADVANCE(106); + if (lookahead == 'b') ADVANCE(107); END_STATE(); case 55: - if (lookahead == 'f') ADVANCE(107); - if (lookahead == 't') ADVANCE(108); + if (lookahead == 'f') ADVANCE(108); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 56: - if (lookahead == 'l') ADVANCE(109); + if (lookahead == 'l') ADVANCE(110); END_STATE(); case 57: - if (lookahead == 'a') ADVANCE(110); - if (lookahead == 'm') ADVANCE(111); - if (lookahead == 'r') ADVANCE(112); + if (lookahead == 'a') ADVANCE(111); + if (lookahead == 'm') ADVANCE(112); + if (lookahead == 'r') ADVANCE(113); END_STATE(); case 58: - if (lookahead == 'p') ADVANCE(113); + if (lookahead == 'p') ADVANCE(114); END_STATE(); case 59: - if (lookahead == 'a') ADVANCE(114); - if (lookahead == 'u') ADVANCE(115); + if (lookahead == 'a') ADVANCE(115); + if (lookahead == 'u') ADVANCE(116); END_STATE(); case 60: ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(116); + if (lookahead == 'p') ADVANCE(117); END_STATE(); case 62: - if (lookahead == '2') ADVANCE(117); - if (lookahead == '6') ADVANCE(118); + if (lookahead == '2') ADVANCE(118); + if (lookahead == '6') ADVANCE(119); END_STATE(); case 63: - if (lookahead == '2') ADVANCE(119); + if (lookahead == '2') ADVANCE(120); END_STATE(); case 64: - if (lookahead == '4') ADVANCE(120); + if (lookahead == '4') ADVANCE(121); END_STATE(); case 65: ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 66: - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 's') ADVANCE(122); + if (lookahead == 'i') ADVANCE(122); + if (lookahead == 's') ADVANCE(123); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(123); - if (lookahead == 'i') ADVANCE(124); + if (lookahead == 'e') ADVANCE(124); + if (lookahead == 'i') ADVANCE(125); END_STATE(); case 68: - if (lookahead == 's') ADVANCE(125); + if (lookahead == 's') ADVANCE(126); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(126); - if (lookahead == 'i') ADVANCE(127); + if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'i') ADVANCE(128); END_STATE(); case 70: - if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'n') ADVANCE(129); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(129); + if (lookahead == 'i') ADVANCE(130); END_STATE(); case 72: - if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'c') ADVANCE(131); END_STATE(); case 73: - if (lookahead == 'l') ADVANCE(131); + if (lookahead == 'l') ADVANCE(132); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(132); + ACCEPT_TOKEN(anon_sym_box); END_STATE(); case 75: - if (lookahead == 'r') ADVANCE(133); + if (lookahead == 'a') ADVANCE(133); END_STATE(); case 76: - if (lookahead == 's') ADVANCE(134); - if (lookahead == 't') ADVANCE(135); + if (lookahead == 'r') ADVANCE(134); END_STATE(); case 77: + if (lookahead == 's') ADVANCE(135); if (lookahead == 't') ADVANCE(136); END_STATE(); case 78: - if (lookahead == 'a') ADVANCE(137); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_dyn); + if (lookahead == 'a') ADVANCE(138); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 81: - if (lookahead == 'm') ADVANCE(139); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 82: - if (lookahead == 'r') ADVANCE(140); + if (lookahead == 'm') ADVANCE(140); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(141); + if (lookahead == 'r') ADVANCE(141); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'e') ADVANCE(142); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_f64); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 86: - if (lookahead == 's') ADVANCE(142); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(143); END_STATE(); case 88: - if (lookahead == '8') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == '8') ADVANCE(144); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_i32); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_i64); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 92: - if (lookahead == 'n') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 93: - if (lookahead == 'l') ADVANCE(145); + if (lookahead == 'n') ADVANCE(145); END_STATE(); case 94: - if (lookahead == 'z') ADVANCE(146); + if (lookahead == 'l') ADVANCE(146); END_STATE(); case 95: - if (lookahead == 'm') ADVANCE(147); + if (lookahead == 'z') ADVANCE(147); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'm') ADVANCE(148); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 98: if (lookahead == 'e') ADVANCE(149); END_STATE(); case 99: - if (lookahead == 'p') ADVANCE(150); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 100: - if (lookahead == 'c') ADVANCE(151); + if (lookahead == 'p') ADVANCE(151); END_STATE(); case 101: - if (lookahead == 'a') ADVANCE(152); + if (lookahead == 'c') ADVANCE(152); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_mod); + if (lookahead == 'a') ADVANCE(153); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 104: - ACCEPT_TOKEN(sym_mutable_specifier); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(154); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(155); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_ref); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 108: - if (lookahead == 'u') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 109: - if (lookahead == 'f') ADVANCE(156); + if (lookahead == 'u') ADVANCE(156); END_STATE(); case 110: - if (lookahead == 't') ADVANCE(157); + if (lookahead == 'f') ADVANCE(157); END_STATE(); case 111: if (lookahead == 't') ADVANCE(158); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(159); + if (lookahead == 't') ADVANCE(159); END_STATE(); case 113: - if (lookahead == 'e') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(160); END_STATE(); case 114: - if (lookahead == 'i') ADVANCE(161); + if (lookahead == 'e') ADVANCE(161); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'i') ADVANCE(162); END_STATE(); case 116: if (lookahead == 'e') ADVANCE(163); END_STATE(); case 117: - if (lookahead == '8') ADVANCE(164); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == '8') ADVANCE(165); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_u32); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_u64); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 121: - if (lookahead == 'o') ADVANCE(165); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 122: - if (lookahead == 'a') ADVANCE(166); + if (lookahead == 'o') ADVANCE(166); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'a') ADVANCE(167); END_STATE(); case 124: - if (lookahead == 'z') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_vis); + if (lookahead == 'z') ADVANCE(168); END_STATE(); case 126: - if (lookahead == 'r') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 127: - if (lookahead == 'l') ADVANCE(169); + if (lookahead == 'r') ADVANCE(169); END_STATE(); case 128: - if (lookahead == 'c') ADVANCE(170); + if (lookahead == 'l') ADVANCE(170); END_STATE(); case 129: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'c') ADVANCE(171); END_STATE(); case 130: - if (lookahead == 'k') ADVANCE(172); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'k') ADVANCE(173); END_STATE(); case 132: - if (lookahead == 'k') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_char); + if (lookahead == 'k') ADVANCE(174); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 135: - if (lookahead == 'i') ADVANCE(175); + if (lookahead == 't') ADVANCE(175); END_STATE(); case 136: - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'i') ADVANCE(176); END_STATE(); case 137: - if (lookahead == 'u') ADVANCE(177); + if (lookahead == 'e') ADVANCE(177); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'u') ADVANCE(178); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_enum); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_expr); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 141: - if (lookahead == 'r') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 142: - if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'r') ADVANCE(179); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_i128); + if (lookahead == 'e') ADVANCE(180); END_STATE(); case 144: - if (lookahead == 't') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_impl); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_item); + if (lookahead == 'e') ADVANCE(182); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 149: - if (lookahead == 'r') ADVANCE(183); + if (lookahead == 't') ADVANCE(183); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == 'r') ADVANCE(184); END_STATE(); case 151: - if (lookahead == 'h') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_meta); + if (lookahead == 'h') ADVANCE(185); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_move); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_path); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 155: - if (lookahead == 'r') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 156: - ACCEPT_TOKEN(sym_self); + if (lookahead == 'r') ADVANCE(186); END_STATE(); case 157: - if (lookahead == 'i') ADVANCE(186); + ACCEPT_TOKEN(sym_self); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_stmt); + if (lookahead == 'i') ADVANCE(187); END_STATE(); case 159: - if (lookahead == 'c') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 160: - if (lookahead == 'r') ADVANCE(188); + if (lookahead == 'c') ADVANCE(188); END_STATE(); case 161: - if (lookahead == 't') ADVANCE(189); + if (lookahead == 'r') ADVANCE(189); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 't') ADVANCE(190); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_type); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_u128); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 165: - if (lookahead == 'n') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 166: - if (lookahead == 'f') ADVANCE(191); + if (lookahead == 'n') ADVANCE(191); END_STATE(); case 167: - if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'f') ADVANCE(192); END_STATE(); case 168: if (lookahead == 'e') ADVANCE(193); @@ -5489,123 +5504,126 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(194); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_await); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_block); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 176: - ACCEPT_TOKEN(sym_crate); + if (lookahead == 'n') ADVANCE(196); END_STATE(); case 177: - if (lookahead == 'l') ADVANCE(196); + ACCEPT_TOKEN(sym_crate); END_STATE(); case 178: - if (lookahead == 'n') ADVANCE(197); + if (lookahead == 'l') ADVANCE(197); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'n') ADVANCE(198); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_ident); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_isize); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 182: - if (lookahead == 'i') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 183: - if (lookahead == 'a') ADVANCE(199); + if (lookahead == 'i') ADVANCE(199); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'a') ADVANCE(200); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 186: - if (lookahead == 'c') ADVANCE(201); + if (lookahead == 'n') ADVANCE(201); END_STATE(); case 187: - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'c') ADVANCE(202); END_STATE(); case 188: - ACCEPT_TOKEN(sym_super); + if (lookahead == 't') ADVANCE(203); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_trait); + ACCEPT_TOKEN(sym_super); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_union); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 191: - if (lookahead == 'e') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_usize); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 195: - if (lookahead == 'u') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 196: - if (lookahead == 't') ADVANCE(205); + if (lookahead == 'u') ADVANCE(205); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 't') ADVANCE(206); END_STATE(); case 198: - if (lookahead == 'm') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 199: - if (lookahead == 'l') ADVANCE(207); + if (lookahead == 'm') ADVANCE(207); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'l') ADVANCE(208); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_static); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_unsafe); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'e') ADVANCE(209); END_STATE(); case 206: - if (lookahead == 'e') ADVANCE(209); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_literal); + if (lookahead == 'e') ADVANCE(210); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_literal); END_STATE(); case 209: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 210: ACCEPT_TOKEN(anon_sym_lifetime); END_STATE(); default: @@ -5644,65 +5662,65 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [27] = {.lex_state = 56, .external_lex_state = 2}, [28] = {.lex_state = 5, .external_lex_state = 2}, [29] = {.lex_state = 56, .external_lex_state = 2}, - [30] = {.lex_state = 5, .external_lex_state = 2}, - [31] = {.lex_state = 56, .external_lex_state = 2}, + [30] = {.lex_state = 56, .external_lex_state = 2}, + [31] = {.lex_state = 5, .external_lex_state = 2}, [32] = {.lex_state = 5, .external_lex_state = 2}, [33] = {.lex_state = 56, .external_lex_state = 2}, [34] = {.lex_state = 56, .external_lex_state = 2}, [35] = {.lex_state = 56, .external_lex_state = 2}, - [36] = {.lex_state = 5, .external_lex_state = 2}, + [36] = {.lex_state = 56, .external_lex_state = 2}, [37] = {.lex_state = 56, .external_lex_state = 2}, [38] = {.lex_state = 56, .external_lex_state = 2}, - [39] = {.lex_state = 5, .external_lex_state = 2}, + [39] = {.lex_state = 56, .external_lex_state = 2}, [40] = {.lex_state = 56, .external_lex_state = 2}, - [41] = {.lex_state = 56, .external_lex_state = 2}, + [41] = {.lex_state = 5, .external_lex_state = 2}, [42] = {.lex_state = 56, .external_lex_state = 2}, [43] = {.lex_state = 56, .external_lex_state = 2}, [44] = {.lex_state = 56, .external_lex_state = 2}, [45] = {.lex_state = 56, .external_lex_state = 2}, - [46] = {.lex_state = 56, .external_lex_state = 2}, + [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 56, .external_lex_state = 2}, [48] = {.lex_state = 56, .external_lex_state = 2}, [49] = {.lex_state = 56, .external_lex_state = 2}, [50] = {.lex_state = 56, .external_lex_state = 2}, [51] = {.lex_state = 56, .external_lex_state = 2}, - [52] = {.lex_state = 5, .external_lex_state = 2}, + [52] = {.lex_state = 56, .external_lex_state = 2}, [53] = {.lex_state = 56, .external_lex_state = 2}, [54] = {.lex_state = 56, .external_lex_state = 2}, [55] = {.lex_state = 56, .external_lex_state = 2}, - [56] = {.lex_state = 56, .external_lex_state = 2}, + [56] = {.lex_state = 5, .external_lex_state = 2}, [57] = {.lex_state = 56, .external_lex_state = 2}, - [58] = {.lex_state = 56, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 56, .external_lex_state = 2}, + [58] = {.lex_state = 5, .external_lex_state = 2}, + [59] = {.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}, + [62] = {.lex_state = 56, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 5, .external_lex_state = 2}, - [66] = {.lex_state = 5, .external_lex_state = 2}, + [65] = {.lex_state = 6, .external_lex_state = 2}, + [66] = {.lex_state = 6, .external_lex_state = 2}, [67] = {.lex_state = 5, .external_lex_state = 2}, - [68] = {.lex_state = 5, .external_lex_state = 2}, + [68] = {.lex_state = 6, .external_lex_state = 2}, [69] = {.lex_state = 5, .external_lex_state = 2}, [70] = {.lex_state = 5, .external_lex_state = 2}, - [71] = {.lex_state = 5, .external_lex_state = 2}, + [71] = {.lex_state = 6, .external_lex_state = 2}, [72] = {.lex_state = 5, .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}, + [74] = {.lex_state = 6, .external_lex_state = 2}, + [75] = {.lex_state = 6, .external_lex_state = 2}, [76] = {.lex_state = 5, .external_lex_state = 2}, [77] = {.lex_state = 5, .external_lex_state = 2}, [78] = {.lex_state = 5, .external_lex_state = 2}, [79] = {.lex_state = 5, .external_lex_state = 2}, [80] = {.lex_state = 5, .external_lex_state = 2}, [81] = {.lex_state = 5, .external_lex_state = 2}, - [82] = {.lex_state = 5, .external_lex_state = 2}, + [82] = {.lex_state = 6, .external_lex_state = 2}, [83] = {.lex_state = 5, .external_lex_state = 2}, [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 5, .external_lex_state = 2}, + [85] = {.lex_state = 6, .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}, + [88] = {.lex_state = 6, .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}, @@ -5725,7 +5743,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [108] = {.lex_state = 5, .external_lex_state = 2}, [109] = {.lex_state = 5, .external_lex_state = 2}, [110] = {.lex_state = 5, .external_lex_state = 2}, - [111] = {.lex_state = 5, .external_lex_state = 2}, + [111] = {.lex_state = 6, .external_lex_state = 2}, [112] = {.lex_state = 5, .external_lex_state = 2}, [113] = {.lex_state = 5, .external_lex_state = 2}, [114] = {.lex_state = 5, .external_lex_state = 2}, @@ -5754,13 +5772,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [137] = {.lex_state = 5, .external_lex_state = 2}, [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.lex_state = 5, .external_lex_state = 2}, - [140] = {.lex_state = 6, .external_lex_state = 2}, + [140] = {.lex_state = 5, .external_lex_state = 2}, [141] = {.lex_state = 5, .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 = 6, .external_lex_state = 2}, + [146] = {.lex_state = 5, .external_lex_state = 2}, [147] = {.lex_state = 5, .external_lex_state = 2}, [148] = {.lex_state = 5, .external_lex_state = 2}, [149] = {.lex_state = 5, .external_lex_state = 2}, @@ -5771,7 +5789,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 5, .external_lex_state = 2}, [155] = {.lex_state = 5, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 2}, - [157] = {.lex_state = 6, .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 = 5, .external_lex_state = 2}, @@ -5792,22 +5810,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [175] = {.lex_state = 5, .external_lex_state = 2}, [176] = {.lex_state = 5, .external_lex_state = 2}, [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 6, .external_lex_state = 2}, - [179] = {.lex_state = 6, .external_lex_state = 2}, - [180] = {.lex_state = 6, .external_lex_state = 2}, - [181] = {.lex_state = 6, .external_lex_state = 2}, - [182] = {.lex_state = 6, .external_lex_state = 2}, - [183] = {.lex_state = 6, .external_lex_state = 2}, - [184] = {.lex_state = 6, .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 = 5, .external_lex_state = 2}, + [183] = {.lex_state = 5, .external_lex_state = 2}, + [184] = {.lex_state = 5, .external_lex_state = 2}, [185] = {.lex_state = 6, .external_lex_state = 2}, [186] = {.lex_state = 6, .external_lex_state = 2}, [187] = {.lex_state = 6, .external_lex_state = 2}, [188] = {.lex_state = 5, .external_lex_state = 2}, [189] = {.lex_state = 5, .external_lex_state = 2}, [190] = {.lex_state = 5, .external_lex_state = 2}, - [191] = {.lex_state = 1, .external_lex_state = 2}, + [191] = {.lex_state = 5, .external_lex_state = 2}, [192] = {.lex_state = 5, .external_lex_state = 2}, - [193] = {.lex_state = 5, .external_lex_state = 2}, + [193] = {.lex_state = 1, .external_lex_state = 2}, [194] = {.lex_state = 5, .external_lex_state = 2}, [195] = {.lex_state = 5, .external_lex_state = 2}, [196] = {.lex_state = 5, .external_lex_state = 2}, @@ -5817,24 +5835,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [200] = {.lex_state = 5, .external_lex_state = 2}, [201] = {.lex_state = 5, .external_lex_state = 2}, [202] = {.lex_state = 5, .external_lex_state = 2}, - [203] = {.lex_state = 5, .external_lex_state = 2}, - [204] = {.lex_state = 5, .external_lex_state = 2}, + [203] = {.lex_state = 1, .external_lex_state = 2}, + [204] = {.lex_state = 1, .external_lex_state = 2}, [205] = {.lex_state = 5, .external_lex_state = 2}, [206] = {.lex_state = 5, .external_lex_state = 2}, - [207] = {.lex_state = 1, .external_lex_state = 2}, + [207] = {.lex_state = 5, .external_lex_state = 2}, [208] = {.lex_state = 1, .external_lex_state = 2}, - [209] = {.lex_state = 4, .external_lex_state = 3}, - [210] = {.lex_state = 4, .external_lex_state = 3}, - [211] = {.lex_state = 12, .external_lex_state = 2}, - [212] = {.lex_state = 5, .external_lex_state = 2}, + [209] = {.lex_state = 1, .external_lex_state = 2}, + [210] = {.lex_state = 1, .external_lex_state = 2}, + [211] = {.lex_state = 5, .external_lex_state = 2}, + [212] = {.lex_state = 1, .external_lex_state = 2}, [213] = {.lex_state = 1, .external_lex_state = 2}, [214] = {.lex_state = 1, .external_lex_state = 2}, - [215] = {.lex_state = 1, .external_lex_state = 2}, - [216] = {.lex_state = 5, .external_lex_state = 2}, - [217] = {.lex_state = 4, .external_lex_state = 3}, - [218] = {.lex_state = 4, .external_lex_state = 3}, - [219] = {.lex_state = 4, .external_lex_state = 3}, - [220] = {.lex_state = 5, .external_lex_state = 2}, + [215] = {.lex_state = 5, .external_lex_state = 2}, + [216] = {.lex_state = 1, .external_lex_state = 2}, + [217] = {.lex_state = 1, .external_lex_state = 2}, + [218] = {.lex_state = 1, .external_lex_state = 2}, + [219] = {.lex_state = 1, .external_lex_state = 2}, + [220] = {.lex_state = 4, .external_lex_state = 3}, [221] = {.lex_state = 1, .external_lex_state = 2}, [222] = {.lex_state = 1, .external_lex_state = 2}, [223] = {.lex_state = 1, .external_lex_state = 2}, @@ -5846,15 +5864,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 1, .external_lex_state = 2}, - [234] = {.lex_state = 1, .external_lex_state = 2}, - [235] = {.lex_state = 1, .external_lex_state = 2}, + [232] = {.lex_state = 5, .external_lex_state = 2}, + [233] = {.lex_state = 12, .external_lex_state = 2}, + [234] = {.lex_state = 4, .external_lex_state = 3}, + [235] = {.lex_state = 5, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, - [237] = {.lex_state = 1, .external_lex_state = 2}, + [237] = {.lex_state = 4, .external_lex_state = 3}, [238] = {.lex_state = 1, .external_lex_state = 2}, - [239] = {.lex_state = 1, .external_lex_state = 2}, - [240] = {.lex_state = 1, .external_lex_state = 2}, + [239] = {.lex_state = 4, .external_lex_state = 3}, + [240] = {.lex_state = 4, .external_lex_state = 3}, [241] = {.lex_state = 57, .external_lex_state = 2}, [242] = {.lex_state = 57, .external_lex_state = 2}, [243] = {.lex_state = 57, .external_lex_state = 2}, @@ -5888,14 +5906,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [274] = {.lex_state = 12, .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}, + [278] = {.lex_state = 12, .external_lex_state = 2}, [279] = {.lex_state = 57, .external_lex_state = 2}, - [280] = {.lex_state = 57, .external_lex_state = 2}, - [281] = {.lex_state = 57, .external_lex_state = 2}, + [280] = {.lex_state = 12, .external_lex_state = 2}, + [281] = {.lex_state = 12, .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}, @@ -5919,7 +5937,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 12, .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}, @@ -5931,16 +5949,16 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [317] = {.lex_state = 12, .external_lex_state = 2}, [318] = {.lex_state = 57, .external_lex_state = 2}, - [319] = {.lex_state = 12, .external_lex_state = 2}, - [320] = {.lex_state = 12, .external_lex_state = 2}, - [321] = {.lex_state = 12, .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}, + [325] = {.lex_state = 12, .external_lex_state = 2}, + [326] = {.lex_state = 12, .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}, @@ -5949,56 +5967,56 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [335] = {.lex_state = 12, .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 = 12, .external_lex_state = 2}, + [342] = {.lex_state = 57, .external_lex_state = 2}, [343] = {.lex_state = 57, .external_lex_state = 2}, - [344] = {.lex_state = 12, .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 = 12, .external_lex_state = 2}, + [348] = {.lex_state = 57, .external_lex_state = 2}, [349] = {.lex_state = 57, .external_lex_state = 2}, - [350] = {.lex_state = 12, .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}, + [355] = {.lex_state = 12, .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}, + [358] = {.lex_state = 12, .external_lex_state = 2}, [359] = {.lex_state = 57, .external_lex_state = 2}, [360] = {.lex_state = 57, .external_lex_state = 2}, - [361] = {.lex_state = 57, .external_lex_state = 2}, + [361] = {.lex_state = 12, .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}, + [368] = {.lex_state = 12, .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}, + [373] = {.lex_state = 12, .external_lex_state = 2}, + [374] = {.lex_state = 12, .external_lex_state = 2}, [375] = {.lex_state = 57, .external_lex_state = 2}, - [376] = {.lex_state = 57, .external_lex_state = 2}, + [376] = {.lex_state = 12, .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 = 12, .external_lex_state = 2}, - [384] = {.lex_state = 12, .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 = 57, .external_lex_state = 2}, @@ -6007,17 +6025,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 12, .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 = 12, .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 = 12, .external_lex_state = 2}, - [403] = {.lex_state = 12, .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}, @@ -6046,7 +6064,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 12, .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}, @@ -6066,8 +6084,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [449] = {.lex_state = 57, .external_lex_state = 2}, [450] = {.lex_state = 57, .external_lex_state = 2}, [451] = {.lex_state = 12, .external_lex_state = 2}, - [452] = {.lex_state = 12, .external_lex_state = 2}, - [453] = {.lex_state = 12, .external_lex_state = 2}, + [452] = {.lex_state = 5, .external_lex_state = 2}, + [453] = {.lex_state = 5, .external_lex_state = 2}, [454] = {.lex_state = 12, .external_lex_state = 2}, [455] = {.lex_state = 12, .external_lex_state = 2}, [456] = {.lex_state = 12, .external_lex_state = 2}, @@ -6088,7 +6106,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [471] = {.lex_state = 12, .external_lex_state = 2}, [472] = {.lex_state = 12, .external_lex_state = 2}, [473] = {.lex_state = 12, .external_lex_state = 2}, - [474] = {.lex_state = 12, .external_lex_state = 2}, + [474] = {.lex_state = 5, .external_lex_state = 2}, [475] = {.lex_state = 12, .external_lex_state = 2}, [476] = {.lex_state = 12, .external_lex_state = 2}, [477] = {.lex_state = 12, .external_lex_state = 2}, @@ -6097,77 +6115,77 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [480] = {.lex_state = 12, .external_lex_state = 2}, [481] = {.lex_state = 12, .external_lex_state = 2}, [482] = {.lex_state = 12, .external_lex_state = 2}, - [483] = {.lex_state = 5, .external_lex_state = 2}, - [484] = {.lex_state = 7, .external_lex_state = 3}, - [485] = {.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 = 5, .external_lex_state = 2}, [487] = {.lex_state = 5, .external_lex_state = 2}, - [488] = {.lex_state = 7, .external_lex_state = 3}, + [488] = {.lex_state = 5, .external_lex_state = 2}, [489] = {.lex_state = 7, .external_lex_state = 3}, - [490] = {.lex_state = 7, .external_lex_state = 3}, + [490] = {.lex_state = 5, .external_lex_state = 2}, [491] = {.lex_state = 7, .external_lex_state = 3}, [492] = {.lex_state = 11, .external_lex_state = 2}, [493] = {.lex_state = 7, .external_lex_state = 3}, - [494] = {.lex_state = 5, .external_lex_state = 2}, + [494] = {.lex_state = 7, .external_lex_state = 3}, [495] = {.lex_state = 7, .external_lex_state = 3}, - [496] = {.lex_state = 5, .external_lex_state = 2}, - [497] = {.lex_state = 12, .external_lex_state = 2}, - [498] = {.lex_state = 7, .external_lex_state = 3}, + [496] = {.lex_state = 7, .external_lex_state = 3}, + [497] = {.lex_state = 7, .external_lex_state = 3}, + [498] = {.lex_state = 12, .external_lex_state = 2}, [499] = {.lex_state = 12, .external_lex_state = 2}, [500] = {.lex_state = 12, .external_lex_state = 2}, [501] = {.lex_state = 12, .external_lex_state = 2}, [502] = {.lex_state = 12, .external_lex_state = 2}, [503] = {.lex_state = 7, .external_lex_state = 3}, - [504] = {.lex_state = 12, .external_lex_state = 2}, + [504] = {.lex_state = 5, .external_lex_state = 2}, [505] = {.lex_state = 12, .external_lex_state = 2}, - [506] = {.lex_state = 12, .external_lex_state = 2}, + [506] = {.lex_state = 7, .external_lex_state = 3}, [507] = {.lex_state = 12, .external_lex_state = 2}, [508] = {.lex_state = 12, .external_lex_state = 2}, - [509] = {.lex_state = 5, .external_lex_state = 2}, + [509] = {.lex_state = 12, .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 = 5, .external_lex_state = 2}, + [513] = {.lex_state = 7, .external_lex_state = 3}, [514] = {.lex_state = 12, .external_lex_state = 2}, [515] = {.lex_state = 12, .external_lex_state = 2}, [516] = {.lex_state = 12, .external_lex_state = 2}, - [517] = {.lex_state = 7, .external_lex_state = 3}, - [518] = {.lex_state = 7, .external_lex_state = 3}, - [519] = {.lex_state = 7, .external_lex_state = 3}, - [520] = {.lex_state = 7, .external_lex_state = 3}, - [521] = {.lex_state = 5, .external_lex_state = 2}, - [522] = {.lex_state = 7, .external_lex_state = 3}, - [523] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, + [521] = {.lex_state = 7, .external_lex_state = 3}, + [522] = {.lex_state = 5, .external_lex_state = 2}, + [523] = {.lex_state = 7, .external_lex_state = 3}, [524] = {.lex_state = 7, .external_lex_state = 3}, [525] = {.lex_state = 7, .external_lex_state = 3}, [526] = {.lex_state = 7, .external_lex_state = 3}, - [527] = {.lex_state = 5, .external_lex_state = 2}, - [528] = {.lex_state = 7, .external_lex_state = 3}, - [529] = {.lex_state = 7, .external_lex_state = 3}, - [530] = {.lex_state = 7, .external_lex_state = 3}, - [531] = {.lex_state = 7, .external_lex_state = 3}, + [527] = {.lex_state = 7, .external_lex_state = 3}, + [528] = {.lex_state = 5, .external_lex_state = 2}, + [529] = {.lex_state = 5, .external_lex_state = 2}, + [530] = {.lex_state = 5, .external_lex_state = 2}, + [531] = {.lex_state = 5, .external_lex_state = 2}, [532] = {.lex_state = 7, .external_lex_state = 3}, [533] = {.lex_state = 5, .external_lex_state = 2}, [534] = {.lex_state = 7, .external_lex_state = 3}, - [535] = {.lex_state = 7, .external_lex_state = 3}, + [535] = {.lex_state = 5, .external_lex_state = 2}, [536] = {.lex_state = 7, .external_lex_state = 3}, [537] = {.lex_state = 7, .external_lex_state = 3}, - [538] = {.lex_state = 7, .external_lex_state = 3}, + [538] = {.lex_state = 5, .external_lex_state = 2}, [539] = {.lex_state = 7, .external_lex_state = 3}, - [540] = {.lex_state = 7, .external_lex_state = 3}, - [541] = {.lex_state = 5, .external_lex_state = 2}, + [540] = {.lex_state = 5, .external_lex_state = 2}, + [541] = {.lex_state = 7, .external_lex_state = 3}, [542] = {.lex_state = 7, .external_lex_state = 3}, [543] = {.lex_state = 7, .external_lex_state = 3}, - [544] = {.lex_state = 7, .external_lex_state = 3}, + [544] = {.lex_state = 5, .external_lex_state = 2}, [545] = {.lex_state = 7, .external_lex_state = 3}, - [546] = {.lex_state = 7, .external_lex_state = 3}, - [547] = {.lex_state = 7, .external_lex_state = 3}, + [546] = {.lex_state = 5, .external_lex_state = 2}, + [547] = {.lex_state = 5, .external_lex_state = 2}, [548] = {.lex_state = 7, .external_lex_state = 3}, [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}, + [553] = {.lex_state = 5, .external_lex_state = 2}, [554] = {.lex_state = 7, .external_lex_state = 3}, [555] = {.lex_state = 7, .external_lex_state = 3}, [556] = {.lex_state = 7, .external_lex_state = 3}, @@ -6175,38 +6193,38 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [558] = {.lex_state = 7, .external_lex_state = 3}, [559] = {.lex_state = 7, .external_lex_state = 3}, [560] = {.lex_state = 7, .external_lex_state = 3}, - [561] = {.lex_state = 7, .external_lex_state = 3}, + [561] = {.lex_state = 5, .external_lex_state = 2}, [562] = {.lex_state = 7, .external_lex_state = 3}, [563] = {.lex_state = 7, .external_lex_state = 3}, [564] = {.lex_state = 7, .external_lex_state = 3}, [565] = {.lex_state = 7, .external_lex_state = 3}, [566] = {.lex_state = 7, .external_lex_state = 3}, - [567] = {.lex_state = 7, .external_lex_state = 3}, - [568] = {.lex_state = 7, .external_lex_state = 3}, - [569] = {.lex_state = 7, .external_lex_state = 3}, + [567] = {.lex_state = 5, .external_lex_state = 2}, + [568] = {.lex_state = 5, .external_lex_state = 2}, + [569] = {.lex_state = 5, .external_lex_state = 2}, [570] = {.lex_state = 7, .external_lex_state = 3}, [571] = {.lex_state = 7, .external_lex_state = 3}, [572] = {.lex_state = 7, .external_lex_state = 3}, - [573] = {.lex_state = 5, .external_lex_state = 2}, - [574] = {.lex_state = 5, .external_lex_state = 2}, + [573] = {.lex_state = 7, .external_lex_state = 3}, + [574] = {.lex_state = 7, .external_lex_state = 3}, [575] = {.lex_state = 7, .external_lex_state = 3}, - [576] = {.lex_state = 7, .external_lex_state = 3}, - [577] = {.lex_state = 7, .external_lex_state = 3}, + [576] = {.lex_state = 5, .external_lex_state = 2}, + [577] = {.lex_state = 5, .external_lex_state = 2}, [578] = {.lex_state = 7, .external_lex_state = 3}, [579] = {.lex_state = 7, .external_lex_state = 3}, [580] = {.lex_state = 7, .external_lex_state = 3}, - [581] = {.lex_state = 7, .external_lex_state = 3}, - [582] = {.lex_state = 7, .external_lex_state = 3}, + [581] = {.lex_state = 5, .external_lex_state = 2}, + [582] = {.lex_state = 5, .external_lex_state = 2}, [583] = {.lex_state = 7, .external_lex_state = 3}, [584] = {.lex_state = 7, .external_lex_state = 3}, [585] = {.lex_state = 7, .external_lex_state = 3}, [586] = {.lex_state = 7, .external_lex_state = 3}, - [587] = {.lex_state = 7, .external_lex_state = 3}, + [587] = {.lex_state = 5, .external_lex_state = 2}, [588] = {.lex_state = 7, .external_lex_state = 3}, [589] = {.lex_state = 7, .external_lex_state = 3}, [590] = {.lex_state = 7, .external_lex_state = 3}, [591] = {.lex_state = 7, .external_lex_state = 3}, - [592] = {.lex_state = 7, .external_lex_state = 3}, + [592] = {.lex_state = 5, .external_lex_state = 2}, [593] = {.lex_state = 7, .external_lex_state = 3}, [594] = {.lex_state = 7, .external_lex_state = 3}, [595] = {.lex_state = 7, .external_lex_state = 3}, @@ -6217,14 +6235,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [600] = {.lex_state = 7, .external_lex_state = 3}, [601] = {.lex_state = 7, .external_lex_state = 3}, [602] = {.lex_state = 7, .external_lex_state = 3}, - [603] = {.lex_state = 7, .external_lex_state = 3}, + [603] = {.lex_state = 5, .external_lex_state = 2}, [604] = {.lex_state = 7, .external_lex_state = 3}, [605] = {.lex_state = 7, .external_lex_state = 3}, [606] = {.lex_state = 7, .external_lex_state = 3}, - [607] = {.lex_state = 7, .external_lex_state = 3}, + [607] = {.lex_state = 5, .external_lex_state = 2}, [608] = {.lex_state = 7, .external_lex_state = 3}, [609] = {.lex_state = 7, .external_lex_state = 3}, - [610] = {.lex_state = 7, .external_lex_state = 3}, + [610] = {.lex_state = 5, .external_lex_state = 2}, [611] = {.lex_state = 7, .external_lex_state = 3}, [612] = {.lex_state = 7, .external_lex_state = 3}, [613] = {.lex_state = 7, .external_lex_state = 3}, @@ -6236,127 +6254,127 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5, .external_lex_state = 2}, + [622] = {.lex_state = 7, .external_lex_state = 3}, [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}, + [628] = {.lex_state = 5, .external_lex_state = 2}, [629] = {.lex_state = 7, .external_lex_state = 3}, [630] = {.lex_state = 7, .external_lex_state = 3}, - [631] = {.lex_state = 7, .external_lex_state = 3}, + [631] = {.lex_state = 5, .external_lex_state = 2}, [632] = {.lex_state = 7, .external_lex_state = 3}, [633] = {.lex_state = 7, .external_lex_state = 3}, - [634] = {.lex_state = 7, .external_lex_state = 3}, + [634] = {.lex_state = 5, .external_lex_state = 2}, [635] = {.lex_state = 7, .external_lex_state = 3}, [636] = {.lex_state = 7, .external_lex_state = 3}, [637] = {.lex_state = 7, .external_lex_state = 3}, [638] = {.lex_state = 7, .external_lex_state = 3}, [639] = {.lex_state = 7, .external_lex_state = 3}, - [640] = {.lex_state = 7, .external_lex_state = 3}, + [640] = {.lex_state = 5, .external_lex_state = 2}, [641] = {.lex_state = 7, .external_lex_state = 3}, [642] = {.lex_state = 7, .external_lex_state = 3}, [643] = {.lex_state = 7, .external_lex_state = 3}, [644] = {.lex_state = 7, .external_lex_state = 3}, [645] = {.lex_state = 7, .external_lex_state = 3}, - [646] = {.lex_state = 5, .external_lex_state = 2}, - [647] = {.lex_state = 5, .external_lex_state = 2}, + [646] = {.lex_state = 7, .external_lex_state = 3}, + [647] = {.lex_state = 7, .external_lex_state = 3}, [648] = {.lex_state = 7, .external_lex_state = 3}, [649] = {.lex_state = 7, .external_lex_state = 3}, [650] = {.lex_state = 7, .external_lex_state = 3}, [651] = {.lex_state = 7, .external_lex_state = 3}, [652] = {.lex_state = 7, .external_lex_state = 3}, - [653] = {.lex_state = 7, .external_lex_state = 3}, + [653] = {.lex_state = 5, .external_lex_state = 2}, [654] = {.lex_state = 7, .external_lex_state = 3}, [655] = {.lex_state = 7, .external_lex_state = 3}, [656] = {.lex_state = 7, .external_lex_state = 3}, [657] = {.lex_state = 7, .external_lex_state = 3}, - [658] = {.lex_state = 7, .external_lex_state = 3}, - [659] = {.lex_state = 5, .external_lex_state = 2}, + [658] = {.lex_state = 5, .external_lex_state = 2}, + [659] = {.lex_state = 7, .external_lex_state = 3}, [660] = {.lex_state = 5, .external_lex_state = 2}, [661] = {.lex_state = 5, .external_lex_state = 2}, [662] = {.lex_state = 5, .external_lex_state = 2}, - [663] = {.lex_state = 5, .external_lex_state = 2}, - [664] = {.lex_state = 5, .external_lex_state = 2}, - [665] = {.lex_state = 5, .external_lex_state = 2}, + [663] = {.lex_state = 7, .external_lex_state = 3}, + [664] = {.lex_state = 7, .external_lex_state = 3}, + [665] = {.lex_state = 7, .external_lex_state = 3}, [666] = {.lex_state = 5, .external_lex_state = 2}, [667] = {.lex_state = 5, .external_lex_state = 2}, - [668] = {.lex_state = 5, .external_lex_state = 2}, + [668] = {.lex_state = 7, .external_lex_state = 3}, [669] = {.lex_state = 5, .external_lex_state = 2}, [670] = {.lex_state = 5, .external_lex_state = 2}, [671] = {.lex_state = 5, .external_lex_state = 2}, [672] = {.lex_state = 5, .external_lex_state = 2}, - [673] = {.lex_state = 5, .external_lex_state = 2}, - [674] = {.lex_state = 5, .external_lex_state = 2}, - [675] = {.lex_state = 5, .external_lex_state = 2}, - [676] = {.lex_state = 5, .external_lex_state = 2}, + [673] = {.lex_state = 7, .external_lex_state = 3}, + [674] = {.lex_state = 7, .external_lex_state = 3}, + [675] = {.lex_state = 7, .external_lex_state = 3}, + [676] = {.lex_state = 7, .external_lex_state = 3}, [677] = {.lex_state = 5, .external_lex_state = 2}, - [678] = {.lex_state = 5, .external_lex_state = 2}, - [679] = {.lex_state = 5, .external_lex_state = 2}, - [680] = {.lex_state = 5, .external_lex_state = 2}, - [681] = {.lex_state = 5, .external_lex_state = 2}, - [682] = {.lex_state = 5, .external_lex_state = 2}, - [683] = {.lex_state = 5, .external_lex_state = 2}, - [684] = {.lex_state = 5, .external_lex_state = 2}, + [678] = {.lex_state = 7, .external_lex_state = 3}, + [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}, + [683] = {.lex_state = 7, .external_lex_state = 3}, + [684] = {.lex_state = 7, .external_lex_state = 3}, [685] = {.lex_state = 5, .external_lex_state = 2}, - [686] = {.lex_state = 5, .external_lex_state = 2}, - [687] = {.lex_state = 5, .external_lex_state = 2}, - [688] = {.lex_state = 5, .external_lex_state = 2}, + [686] = {.lex_state = 7, .external_lex_state = 3}, + [687] = {.lex_state = 7, .external_lex_state = 3}, + [688] = {.lex_state = 7, .external_lex_state = 3}, [689] = {.lex_state = 5, .external_lex_state = 2}, - [690] = {.lex_state = 5, .external_lex_state = 2}, - [691] = {.lex_state = 5, .external_lex_state = 2}, - [692] = {.lex_state = 5, .external_lex_state = 2}, - [693] = {.lex_state = 5, .external_lex_state = 2}, + [690] = {.lex_state = 7, .external_lex_state = 3}, + [691] = {.lex_state = 7, .external_lex_state = 3}, + [692] = {.lex_state = 7, .external_lex_state = 3}, + [693] = {.lex_state = 7, .external_lex_state = 3}, [694] = {.lex_state = 5, .external_lex_state = 2}, [695] = {.lex_state = 5, .external_lex_state = 2}, [696] = {.lex_state = 5, .external_lex_state = 2}, [697] = {.lex_state = 5, .external_lex_state = 2}, - [698] = {.lex_state = 5, .external_lex_state = 2}, + [698] = {.lex_state = 7, .external_lex_state = 3}, [699] = {.lex_state = 5, .external_lex_state = 2}, - [700] = {.lex_state = 5, .external_lex_state = 2}, + [700] = {.lex_state = 7, .external_lex_state = 3}, [701] = {.lex_state = 5, .external_lex_state = 2}, [702] = {.lex_state = 5, .external_lex_state = 2}, [703] = {.lex_state = 5, .external_lex_state = 2}, - [704] = {.lex_state = 6, .external_lex_state = 2}, - [705] = {.lex_state = 3, .external_lex_state = 3}, - [706] = {.lex_state = 2, .external_lex_state = 3}, + [704] = {.lex_state = 5, .external_lex_state = 2}, + [705] = {.lex_state = 5, .external_lex_state = 2}, + [706] = {.lex_state = 6, .external_lex_state = 2}, [707] = {.lex_state = 3, .external_lex_state = 3}, - [708] = {.lex_state = 3, .external_lex_state = 3}, - [709] = {.lex_state = 2, .external_lex_state = 3}, - [710] = {.lex_state = 4, .external_lex_state = 3}, - [711] = {.lex_state = 4, .external_lex_state = 3}, + [708] = {.lex_state = 2, .external_lex_state = 3}, + [709] = {.lex_state = 3, .external_lex_state = 3}, + [710] = {.lex_state = 3, .external_lex_state = 3}, + [711] = {.lex_state = 3, .external_lex_state = 3}, [712] = {.lex_state = 3, .external_lex_state = 3}, - [713] = {.lex_state = 4, .external_lex_state = 3}, - [714] = {.lex_state = 3, .external_lex_state = 3}, + [713] = {.lex_state = 3, .external_lex_state = 3}, + [714] = {.lex_state = 4, .external_lex_state = 3}, [715] = {.lex_state = 4, .external_lex_state = 3}, [716] = {.lex_state = 4, .external_lex_state = 3}, - [717] = {.lex_state = 3, .external_lex_state = 3}, - [718] = {.lex_state = 3, .external_lex_state = 3}, - [719] = {.lex_state = 4, .external_lex_state = 3}, - [720] = {.lex_state = 4, .external_lex_state = 3}, - [721] = {.lex_state = 3, .external_lex_state = 3}, + [717] = {.lex_state = 4, .external_lex_state = 3}, + [718] = {.lex_state = 4, .external_lex_state = 3}, + [719] = {.lex_state = 2, .external_lex_state = 3}, + [720] = {.lex_state = 3, .external_lex_state = 3}, + [721] = {.lex_state = 4, .external_lex_state = 3}, [722] = {.lex_state = 3, .external_lex_state = 3}, - [723] = {.lex_state = 3, .external_lex_state = 3}, - [724] = {.lex_state = 4, .external_lex_state = 3}, - [725] = {.lex_state = 10, .external_lex_state = 3}, - [726] = {.lex_state = 2, .external_lex_state = 3}, + [723] = {.lex_state = 4, .external_lex_state = 3}, + [724] = {.lex_state = 3, .external_lex_state = 3}, + [725] = {.lex_state = 3, .external_lex_state = 3}, + [726] = {.lex_state = 4, .external_lex_state = 3}, [727] = {.lex_state = 2, .external_lex_state = 3}, [728] = {.lex_state = 2, .external_lex_state = 3}, [729] = {.lex_state = 2, .external_lex_state = 3}, [730] = {.lex_state = 10, .external_lex_state = 3}, [731] = {.lex_state = 2, .external_lex_state = 3}, [732] = {.lex_state = 2, .external_lex_state = 3}, - [733] = {.lex_state = 2, .external_lex_state = 3}, + [733] = {.lex_state = 10, .external_lex_state = 3}, [734] = {.lex_state = 10, .external_lex_state = 3}, [735] = {.lex_state = 2, .external_lex_state = 3}, - [736] = {.lex_state = 4, .external_lex_state = 3}, - [737] = {.lex_state = 2, .external_lex_state = 3}, - [738] = {.lex_state = 4, .external_lex_state = 3}, + [736] = {.lex_state = 2, .external_lex_state = 3}, + [737] = {.lex_state = 4, .external_lex_state = 3}, + [738] = {.lex_state = 2, .external_lex_state = 3}, [739] = {.lex_state = 4, .external_lex_state = 3}, [740] = {.lex_state = 4, .external_lex_state = 3}, [741] = {.lex_state = 4, .external_lex_state = 3}, - [742] = {.lex_state = 2, .external_lex_state = 3}, + [742] = {.lex_state = 4, .external_lex_state = 3}, [743] = {.lex_state = 4, .external_lex_state = 3}, [744] = {.lex_state = 4, .external_lex_state = 3}, [745] = {.lex_state = 4, .external_lex_state = 3}, @@ -6372,7 +6390,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [755] = {.lex_state = 4, .external_lex_state = 3}, [756] = {.lex_state = 4, .external_lex_state = 3}, [757] = {.lex_state = 4, .external_lex_state = 3}, - [758] = {.lex_state = 2, .external_lex_state = 3}, + [758] = {.lex_state = 4, .external_lex_state = 3}, [759] = {.lex_state = 4, .external_lex_state = 3}, [760] = {.lex_state = 4, .external_lex_state = 3}, [761] = {.lex_state = 4, .external_lex_state = 3}, @@ -6383,35 +6401,35 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [766] = {.lex_state = 4, .external_lex_state = 3}, [767] = {.lex_state = 4, .external_lex_state = 3}, [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.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 = 4, .external_lex_state = 3}, [773] = {.lex_state = 4, .external_lex_state = 3}, - [774] = {.lex_state = 2, .external_lex_state = 3}, - [775] = {.lex_state = 10, .external_lex_state = 3}, - [776] = {.lex_state = 2, .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}, [777] = {.lex_state = 4, .external_lex_state = 3}, - [778] = {.lex_state = 4, .external_lex_state = 3}, - [779] = {.lex_state = 2, .external_lex_state = 3}, - [780] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [786] = {.lex_state = 4, .external_lex_state = 3}, + [785] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, [791] = {.lex_state = 4, .external_lex_state = 3}, - [792] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, + [797] = {.lex_state = 4, .external_lex_state = 3}, [798] = {.lex_state = 4, .external_lex_state = 3}, [799] = {.lex_state = 4, .external_lex_state = 3}, [800] = {.lex_state = 4, .external_lex_state = 3}, @@ -6419,7 +6437,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [802] = {.lex_state = 4, .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}, + [805] = {.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 = 4, .external_lex_state = 3}, @@ -6428,82 +6446,82 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 3}, + [814] = {.lex_state = 4, .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}, - [818] = {.lex_state = 4, .external_lex_state = 3}, + [818] = {.lex_state = 10, .external_lex_state = 3}, [819] = {.lex_state = 4, .external_lex_state = 3}, [820] = {.lex_state = 4, .external_lex_state = 3}, [821] = {.lex_state = 4, .external_lex_state = 3}, [822] = {.lex_state = 4, .external_lex_state = 3}, [823] = {.lex_state = 4, .external_lex_state = 3}, - [824] = {.lex_state = 4, .external_lex_state = 3}, + [824] = {.lex_state = 2, .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}, - [828] = {.lex_state = 4, .external_lex_state = 3}, + [828] = {.lex_state = 2, .external_lex_state = 3}, [829] = {.lex_state = 4, .external_lex_state = 3}, [830] = {.lex_state = 4, .external_lex_state = 3}, [831] = {.lex_state = 4, .external_lex_state = 3}, [832] = {.lex_state = 4, .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}, + [835] = {.lex_state = 2, .external_lex_state = 3}, [836] = {.lex_state = 4, .external_lex_state = 3}, - [837] = {.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 = 4, .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}, [843] = {.lex_state = 4, .external_lex_state = 3}, - [844] = {.lex_state = 4, .external_lex_state = 3}, + [844] = {.lex_state = 2, .external_lex_state = 3}, [845] = {.lex_state = 4, .external_lex_state = 3}, - [846] = {.lex_state = 4, .external_lex_state = 3}, + [846] = {.lex_state = 2, .external_lex_state = 3}, [847] = {.lex_state = 4, .external_lex_state = 3}, [848] = {.lex_state = 4, .external_lex_state = 3}, [849] = {.lex_state = 4, .external_lex_state = 3}, [850] = {.lex_state = 4, .external_lex_state = 3}, [851] = {.lex_state = 2, .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}, + [853] = {.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 = 4, .external_lex_state = 3}, - [858] = {.lex_state = 2, .external_lex_state = 3}, - [859] = {.lex_state = 2, .external_lex_state = 3}, - [860] = {.lex_state = 2, .external_lex_state = 3}, + [858] = {.lex_state = 4, .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}, + [862] = {.lex_state = 2, .external_lex_state = 3}, [863] = {.lex_state = 4, .external_lex_state = 3}, [864] = {.lex_state = 4, .external_lex_state = 3}, [865] = {.lex_state = 4, .external_lex_state = 3}, [866] = {.lex_state = 4, .external_lex_state = 3}, [867] = {.lex_state = 4, .external_lex_state = 3}, - [868] = {.lex_state = 2, .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 = 4, .external_lex_state = 3}, + [872] = {.lex_state = 2, .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}, - [876] = {.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}, - [881] = {.lex_state = 3, .external_lex_state = 3}, - [882] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [886] = {.lex_state = 4, .external_lex_state = 3}, + [886] = {.lex_state = 2, .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}, + [889] = {.lex_state = 2, .external_lex_state = 3}, [890] = {.lex_state = 4, .external_lex_state = 3}, [891] = {.lex_state = 4, .external_lex_state = 3}, [892] = {.lex_state = 4, .external_lex_state = 3}, @@ -6511,73 +6529,73 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [894] = {.lex_state = 4, .external_lex_state = 3}, [895] = {.lex_state = 4, .external_lex_state = 3}, [896] = {.lex_state = 4, .external_lex_state = 3}, - [897] = {.lex_state = 4, .external_lex_state = 3}, + [897] = {.lex_state = 2, .external_lex_state = 3}, [898] = {.lex_state = 4, .external_lex_state = 3}, - [899] = {.lex_state = 4, .external_lex_state = 3}, + [899] = {.lex_state = 3, .external_lex_state = 3}, [900] = {.lex_state = 4, .external_lex_state = 3}, [901] = {.lex_state = 4, .external_lex_state = 3}, - [902] = {.lex_state = 4, .external_lex_state = 3}, - [903] = {.lex_state = 2, .external_lex_state = 3}, + [902] = {.lex_state = 2, .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 = 4, .external_lex_state = 3}, - [908] = {.lex_state = 2, .external_lex_state = 3}, + [908] = {.lex_state = 4, .external_lex_state = 3}, [909] = {.lex_state = 4, .external_lex_state = 3}, [910] = {.lex_state = 4, .external_lex_state = 3}, - [911] = {.lex_state = 2, .external_lex_state = 3}, - [912] = {.lex_state = 4, .external_lex_state = 3}, + [911] = {.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 = 2, .external_lex_state = 3}, + [918] = {.lex_state = 4, .external_lex_state = 3}, [919] = {.lex_state = 4, .external_lex_state = 3}, [920] = {.lex_state = 4, .external_lex_state = 3}, - [921] = {.lex_state = 4, .external_lex_state = 3}, - [922] = {.lex_state = 2, .external_lex_state = 3}, + [921] = {.lex_state = 2, .external_lex_state = 3}, + [922] = {.lex_state = 4, .external_lex_state = 3}, [923] = {.lex_state = 4, .external_lex_state = 3}, - [924] = {.lex_state = 4, .external_lex_state = 3}, + [924] = {.lex_state = 2, .external_lex_state = 3}, [925] = {.lex_state = 4, .external_lex_state = 3}, - [926] = {.lex_state = 4, .external_lex_state = 3}, - [927] = {.lex_state = 2, .external_lex_state = 3}, + [926] = {.lex_state = 2, .external_lex_state = 3}, + [927] = {.lex_state = 4, .external_lex_state = 3}, [928] = {.lex_state = 2, .external_lex_state = 3}, - [929] = {.lex_state = 4, .external_lex_state = 3}, + [929] = {.lex_state = 2, .external_lex_state = 3}, [930] = {.lex_state = 4, .external_lex_state = 3}, - [931] = {.lex_state = 2, .external_lex_state = 3}, - [932] = {.lex_state = 4, .external_lex_state = 3}, + [931] = {.lex_state = 4, .external_lex_state = 3}, + [932] = {.lex_state = 2, .external_lex_state = 3}, [933] = {.lex_state = 4, .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}, [937] = {.lex_state = 4, .external_lex_state = 3}, [938] = {.lex_state = 4, .external_lex_state = 3}, - [939] = {.lex_state = 4, .external_lex_state = 3}, - [940] = {.lex_state = 4, .external_lex_state = 3}, + [939] = {.lex_state = 2, .external_lex_state = 3}, + [940] = {.lex_state = 2, .external_lex_state = 3}, [941] = {.lex_state = 4, .external_lex_state = 3}, [942] = {.lex_state = 4, .external_lex_state = 3}, [943] = {.lex_state = 4, .external_lex_state = 3}, [944] = {.lex_state = 4, .external_lex_state = 3}, - [945] = {.lex_state = 2, .external_lex_state = 3}, - [946] = {.lex_state = 4, .external_lex_state = 3}, - [947] = {.lex_state = 4, .external_lex_state = 3}, - [948] = {.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 = 2, .external_lex_state = 3}, + [948] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [953] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, + [957] = {.lex_state = 4, .external_lex_state = 3}, [958] = {.lex_state = 4, .external_lex_state = 3}, - [959] = {.lex_state = 2, .external_lex_state = 3}, + [959] = {.lex_state = 4, .external_lex_state = 3}, [960] = {.lex_state = 4, .external_lex_state = 3}, [961] = {.lex_state = 4, .external_lex_state = 3}, - [962] = {.lex_state = 2, .external_lex_state = 3}, - [963] = {.lex_state = 2, .external_lex_state = 3}, + [962] = {.lex_state = 4, .external_lex_state = 3}, + [963] = {.lex_state = 4, .external_lex_state = 3}, [964] = {.lex_state = 2, .external_lex_state = 3}, [965] = {.lex_state = 2, .external_lex_state = 3}, [966] = {.lex_state = 2, .external_lex_state = 3}, @@ -6673,8 +6691,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1056] = {.lex_state = 2, .external_lex_state = 3}, [1057] = {.lex_state = 2, .external_lex_state = 3}, [1058] = {.lex_state = 2, .external_lex_state = 3}, - [1059] = {.lex_state = 7, .external_lex_state = 3}, - [1060] = {.lex_state = 7, .external_lex_state = 3}, + [1059] = {.lex_state = 2, .external_lex_state = 3}, + [1060] = {.lex_state = 2, .external_lex_state = 3}, [1061] = {.lex_state = 7, .external_lex_state = 3}, [1062] = {.lex_state = 7, .external_lex_state = 3}, [1063] = {.lex_state = 7, .external_lex_state = 3}, @@ -6682,29 +6700,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1065] = {.lex_state = 7, .external_lex_state = 3}, [1066] = {.lex_state = 2, .external_lex_state = 3}, [1067] = {.lex_state = 7, .external_lex_state = 3}, - [1068] = {.lex_state = 2, .external_lex_state = 3}, - [1069] = {.lex_state = 7, .external_lex_state = 3}, + [1068] = {.lex_state = 7, .external_lex_state = 3}, + [1069] = {.lex_state = 5, .external_lex_state = 2}, [1070] = {.lex_state = 2, .external_lex_state = 3}, - [1071] = {.lex_state = 2, .external_lex_state = 3}, - [1072] = {.lex_state = 7, .external_lex_state = 3}, - [1073] = {.lex_state = 7, .external_lex_state = 3}, - [1074] = {.lex_state = 5, .external_lex_state = 2}, + [1071] = {.lex_state = 7, .external_lex_state = 3}, + [1072] = {.lex_state = 2, .external_lex_state = 3}, + [1073] = {.lex_state = 5, .external_lex_state = 2}, + [1074] = {.lex_state = 7, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, [1076] = {.lex_state = 2, .external_lex_state = 3}, - [1077] = {.lex_state = 7, .external_lex_state = 3}, + [1077] = {.lex_state = 2, .external_lex_state = 3}, [1078] = {.lex_state = 5, .external_lex_state = 2}, [1079] = {.lex_state = 7, .external_lex_state = 3}, - [1080] = {.lex_state = 7, .external_lex_state = 3}, - [1081] = {.lex_state = 2, .external_lex_state = 3}, + [1080] = {.lex_state = 2, .external_lex_state = 3}, + [1081] = {.lex_state = 7, .external_lex_state = 3}, [1082] = {.lex_state = 7, .external_lex_state = 3}, - [1083] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, + [1083] = {.lex_state = 7, .external_lex_state = 3}, + [1084] = {.lex_state = 7, .external_lex_state = 3}, + [1085] = {.lex_state = 5, .external_lex_state = 2}, + [1086] = {.lex_state = 7, .external_lex_state = 3}, + [1087] = {.lex_state = 7, .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}, @@ -6712,7 +6730,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5, .external_lex_state = 2}, + [1098] = {.lex_state = 2, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 3}, [1100] = {.lex_state = 2, .external_lex_state = 3}, [1101] = {.lex_state = 2, .external_lex_state = 3}, @@ -6722,17 +6740,17 @@ static 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 = 7, .external_lex_state = 3}, + [1108] = {.lex_state = 2, .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}, - [1112] = {.lex_state = 2, .external_lex_state = 3}, + [1112] = {.lex_state = 5, .external_lex_state = 2}, [1113] = {.lex_state = 2, .external_lex_state = 3}, [1114] = {.lex_state = 2, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, - [1116] = {.lex_state = 7, .external_lex_state = 3}, + [1116] = {.lex_state = 2, .external_lex_state = 3}, [1117] = {.lex_state = 2, .external_lex_state = 3}, - [1118] = {.lex_state = 2, .external_lex_state = 3}, + [1118] = {.lex_state = 7, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, [1121] = {.lex_state = 2, .external_lex_state = 3}, @@ -6746,7 +6764,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5, .external_lex_state = 2}, + [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}, @@ -6766,43 +6784,43 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1149] = {.lex_state = 2, .external_lex_state = 3}, [1150] = {.lex_state = 2, .external_lex_state = 3}, [1151] = {.lex_state = 2, .external_lex_state = 3}, - [1152] = {.lex_state = 5, .external_lex_state = 2}, + [1152] = {.lex_state = 7, .external_lex_state = 3}, [1153] = {.lex_state = 2, .external_lex_state = 3}, [1154] = {.lex_state = 2, .external_lex_state = 3}, [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 5, .external_lex_state = 2}, + [1156] = {.lex_state = 2, .external_lex_state = 3}, [1157] = {.lex_state = 2, .external_lex_state = 3}, - [1158] = {.lex_state = 7, .external_lex_state = 3}, - [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 5, .external_lex_state = 2}, + [1158] = {.lex_state = 5, .external_lex_state = 2}, + [1159] = {.lex_state = 7, .external_lex_state = 3}, + [1160] = {.lex_state = 7, .external_lex_state = 3}, [1161] = {.lex_state = 2, .external_lex_state = 3}, - [1162] = {.lex_state = 2, .external_lex_state = 3}, + [1162] = {.lex_state = 7, .external_lex_state = 3}, [1163] = {.lex_state = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 7, .external_lex_state = 3}, - [1165] = {.lex_state = 5, .external_lex_state = 2}, + [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 = 7, .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}, + [1169] = {.lex_state = 5, .external_lex_state = 2}, [1170] = {.lex_state = 2, .external_lex_state = 3}, [1171] = {.lex_state = 2, .external_lex_state = 3}, [1172] = {.lex_state = 2, .external_lex_state = 3}, - [1173] = {.lex_state = 2, .external_lex_state = 3}, + [1173] = {.lex_state = 7, .external_lex_state = 3}, [1174] = {.lex_state = 2, .external_lex_state = 3}, [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1176] = {.lex_state = 5, .external_lex_state = 2}, [1177] = {.lex_state = 5, .external_lex_state = 2}, [1178] = {.lex_state = 2, .external_lex_state = 3}, [1179] = {.lex_state = 2, .external_lex_state = 3}, [1180] = {.lex_state = 2, .external_lex_state = 3}, - [1181] = {.lex_state = 5, .external_lex_state = 2}, + [1181] = {.lex_state = 2, .external_lex_state = 3}, [1182] = {.lex_state = 2, .external_lex_state = 3}, [1183] = {.lex_state = 2, .external_lex_state = 3}, [1184] = {.lex_state = 2, .external_lex_state = 3}, [1185] = {.lex_state = 2, .external_lex_state = 3}, [1186] = {.lex_state = 2, .external_lex_state = 3}, [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 7, .external_lex_state = 3}, + [1188] = {.lex_state = 2, .external_lex_state = 3}, [1189] = {.lex_state = 2, .external_lex_state = 3}, [1190] = {.lex_state = 2, .external_lex_state = 3}, [1191] = {.lex_state = 7, .external_lex_state = 3}, @@ -6812,11 +6830,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1195] = {.lex_state = 2, .external_lex_state = 3}, [1196] = {.lex_state = 2, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 7, .external_lex_state = 3}, + [1198] = {.lex_state = 2, .external_lex_state = 3}, [1199] = {.lex_state = 2, .external_lex_state = 3}, [1200] = {.lex_state = 2, .external_lex_state = 3}, [1201] = {.lex_state = 2, .external_lex_state = 3}, - [1202] = {.lex_state = 2, .external_lex_state = 3}, + [1202] = {.lex_state = 5, .external_lex_state = 2}, [1203] = {.lex_state = 2, .external_lex_state = 3}, [1204] = {.lex_state = 2, .external_lex_state = 3}, [1205] = {.lex_state = 7, .external_lex_state = 3}, @@ -6825,11 +6843,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1208] = {.lex_state = 2, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 5, .external_lex_state = 2}, [1212] = {.lex_state = 2, .external_lex_state = 3}, - [1213] = {.lex_state = 5, .external_lex_state = 2}, - [1214] = {.lex_state = 7, .external_lex_state = 3}, - [1215] = {.lex_state = 7, .external_lex_state = 3}, + [1213] = {.lex_state = 2, .external_lex_state = 3}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 5, .external_lex_state = 2}, [1216] = {.lex_state = 7, .external_lex_state = 3}, [1217] = {.lex_state = 7, .external_lex_state = 3}, [1218] = {.lex_state = 7, .external_lex_state = 3}, @@ -6850,8 +6868,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1233] = {.lex_state = 7, .external_lex_state = 3}, [1234] = {.lex_state = 7, .external_lex_state = 3}, [1235] = {.lex_state = 7, .external_lex_state = 3}, - [1236] = {.lex_state = 9, .external_lex_state = 3}, - [1237] = {.lex_state = 9, .external_lex_state = 3}, + [1236] = {.lex_state = 7, .external_lex_state = 3}, + [1237] = {.lex_state = 7, .external_lex_state = 3}, [1238] = {.lex_state = 9, .external_lex_state = 3}, [1239] = {.lex_state = 9, .external_lex_state = 3}, [1240] = {.lex_state = 9, .external_lex_state = 3}, @@ -6861,18 +6879,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 9, .external_lex_state = 3}, [1245] = {.lex_state = 9, .external_lex_state = 3}, [1246] = {.lex_state = 9, .external_lex_state = 3}, - [1247] = {.lex_state = 7, .external_lex_state = 3}, - [1248] = {.lex_state = 17, .external_lex_state = 3}, - [1249] = {.lex_state = 17, .external_lex_state = 3}, - [1250] = {.lex_state = 7, .external_lex_state = 3}, - [1251] = {.lex_state = 17, .external_lex_state = 3}, + [1247] = {.lex_state = 9, .external_lex_state = 3}, + [1248] = {.lex_state = 9, .external_lex_state = 3}, + [1249] = {.lex_state = 7, .external_lex_state = 3}, + [1250] = {.lex_state = 17, .external_lex_state = 3}, + [1251] = {.lex_state = 7, .external_lex_state = 3}, [1252] = {.lex_state = 17, .external_lex_state = 3}, [1253] = {.lex_state = 17, .external_lex_state = 3}, - [1254] = {.lex_state = 7, .external_lex_state = 3}, + [1254] = {.lex_state = 17, .external_lex_state = 3}, [1255] = {.lex_state = 17, .external_lex_state = 3}, - [1256] = {.lex_state = 3, .external_lex_state = 3}, - [1257] = {.lex_state = 7, .external_lex_state = 3}, - [1258] = {.lex_state = 7, .external_lex_state = 3}, + [1256] = {.lex_state = 7, .external_lex_state = 3}, + [1257] = {.lex_state = 17, .external_lex_state = 3}, + [1258] = {.lex_state = 3, .external_lex_state = 3}, [1259] = {.lex_state = 7, .external_lex_state = 3}, [1260] = {.lex_state = 7, .external_lex_state = 3}, [1261] = {.lex_state = 7, .external_lex_state = 3}, @@ -6880,44 +6898,44 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1263] = {.lex_state = 7, .external_lex_state = 3}, [1264] = {.lex_state = 7, .external_lex_state = 3}, [1265] = {.lex_state = 7, .external_lex_state = 3}, - [1266] = {.lex_state = 7, .external_lex_state = 3}, + [1266] = {.lex_state = 17, .external_lex_state = 3}, [1267] = {.lex_state = 7, .external_lex_state = 3}, [1268] = {.lex_state = 7, .external_lex_state = 3}, - [1269] = {.lex_state = 17, .external_lex_state = 3}, + [1269] = {.lex_state = 7, .external_lex_state = 3}, [1270] = {.lex_state = 7, .external_lex_state = 3}, - [1271] = {.lex_state = 17, .external_lex_state = 3}, - [1272] = {.lex_state = 9, .external_lex_state = 3}, + [1271] = {.lex_state = 7, .external_lex_state = 3}, + [1272] = {.lex_state = 7, .external_lex_state = 3}, [1273] = {.lex_state = 17, .external_lex_state = 3}, [1274] = {.lex_state = 7, .external_lex_state = 3}, [1275] = {.lex_state = 17, .external_lex_state = 3}, - [1276] = {.lex_state = 7, .external_lex_state = 3}, - [1277] = {.lex_state = 7, .external_lex_state = 3}, + [1276] = {.lex_state = 9, .external_lex_state = 3}, + [1277] = {.lex_state = 17, .external_lex_state = 3}, [1278] = {.lex_state = 17, .external_lex_state = 3}, - [1279] = {.lex_state = 17, .external_lex_state = 3}, + [1279] = {.lex_state = 7, .external_lex_state = 3}, [1280] = {.lex_state = 17, .external_lex_state = 3}, - [1281] = {.lex_state = 9, .external_lex_state = 3}, - [1282] = {.lex_state = 17, .external_lex_state = 3}, - [1283] = {.lex_state = 17, .external_lex_state = 3}, + [1281] = {.lex_state = 17, .external_lex_state = 3}, + [1282] = {.lex_state = 9, .external_lex_state = 3}, + [1283] = {.lex_state = 7, .external_lex_state = 3}, [1284] = {.lex_state = 17, .external_lex_state = 3}, - [1285] = {.lex_state = 7, .external_lex_state = 3}, + [1285] = {.lex_state = 17, .external_lex_state = 3}, [1286] = {.lex_state = 17, .external_lex_state = 3}, [1287] = {.lex_state = 17, .external_lex_state = 3}, - [1288] = {.lex_state = 17, .external_lex_state = 3}, - [1289] = {.lex_state = 7, .external_lex_state = 3}, - [1290] = {.lex_state = 9, .external_lex_state = 3}, - [1291] = {.lex_state = 9, .external_lex_state = 3}, - [1292] = {.lex_state = 7, .external_lex_state = 3}, + [1288] = {.lex_state = 7, .external_lex_state = 3}, + [1289] = {.lex_state = 9, .external_lex_state = 3}, + [1290] = {.lex_state = 7, .external_lex_state = 3}, + [1291] = {.lex_state = 7, .external_lex_state = 3}, + [1292] = {.lex_state = 17, .external_lex_state = 3}, [1293] = {.lex_state = 17, .external_lex_state = 3}, - [1294] = {.lex_state = 17, .external_lex_state = 3}, + [1294] = {.lex_state = 9, .external_lex_state = 3}, [1295] = {.lex_state = 17, .external_lex_state = 3}, [1296] = {.lex_state = 17, .external_lex_state = 3}, [1297] = {.lex_state = 17, .external_lex_state = 3}, [1298] = {.lex_state = 17, .external_lex_state = 3}, [1299] = {.lex_state = 17, .external_lex_state = 3}, - [1300] = {.lex_state = 17, .external_lex_state = 3}, + [1300] = {.lex_state = 9, .external_lex_state = 3}, [1301] = {.lex_state = 17, .external_lex_state = 3}, [1302] = {.lex_state = 17, .external_lex_state = 3}, - [1303] = {.lex_state = 9, .external_lex_state = 3}, + [1303] = {.lex_state = 17, .external_lex_state = 3}, [1304] = {.lex_state = 17, .external_lex_state = 3}, [1305] = {.lex_state = 17, .external_lex_state = 3}, [1306] = {.lex_state = 17, .external_lex_state = 3}, @@ -6934,76 +6952,76 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1317] = {.lex_state = 17, .external_lex_state = 3}, [1318] = {.lex_state = 17, .external_lex_state = 3}, [1319] = {.lex_state = 17, .external_lex_state = 3}, - [1320] = {.lex_state = 9, .external_lex_state = 3}, - [1321] = {.lex_state = 7, .external_lex_state = 3}, - [1322] = {.lex_state = 7, .external_lex_state = 3}, + [1320] = {.lex_state = 17, .external_lex_state = 3}, + [1321] = {.lex_state = 17, .external_lex_state = 3}, + [1322] = {.lex_state = 9, .external_lex_state = 3}, [1323] = {.lex_state = 7, .external_lex_state = 3}, - [1324] = {.lex_state = 9, .external_lex_state = 3}, - [1325] = {.lex_state = 13, .external_lex_state = 3}, - [1326] = {.lex_state = 9, .external_lex_state = 3}, - [1327] = {.lex_state = 9, .external_lex_state = 3}, - [1328] = {.lex_state = 17, .external_lex_state = 3}, + [1324] = {.lex_state = 7, .external_lex_state = 3}, + [1325] = {.lex_state = 7, .external_lex_state = 3}, + [1326] = {.lex_state = 17, .external_lex_state = 3}, + [1327] = {.lex_state = 17, .external_lex_state = 3}, + [1328] = {.lex_state = 13, .external_lex_state = 3}, [1329] = {.lex_state = 9, .external_lex_state = 3}, - [1330] = {.lex_state = 17, .external_lex_state = 3}, - [1331] = {.lex_state = 17, .external_lex_state = 3}, + [1330] = {.lex_state = 9, .external_lex_state = 3}, + [1331] = {.lex_state = 9, .external_lex_state = 3}, [1332] = {.lex_state = 17, .external_lex_state = 3}, - [1333] = {.lex_state = 9, .external_lex_state = 3}, - [1334] = {.lex_state = 17, .external_lex_state = 3}, - [1335] = {.lex_state = 17, .external_lex_state = 3}, - [1336] = {.lex_state = 17, .external_lex_state = 3}, - [1337] = {.lex_state = 9, .external_lex_state = 3}, - [1338] = {.lex_state = 17, .external_lex_state = 3}, - [1339] = {.lex_state = 9, .external_lex_state = 3}, + [1333] = {.lex_state = 17, .external_lex_state = 3}, + [1334] = {.lex_state = 9, .external_lex_state = 3}, + [1335] = {.lex_state = 9, .external_lex_state = 3}, + [1336] = {.lex_state = 9, .external_lex_state = 3}, + [1337] = {.lex_state = 17, .external_lex_state = 3}, + [1338] = {.lex_state = 9, .external_lex_state = 3}, + [1339] = {.lex_state = 17, .external_lex_state = 3}, [1340] = {.lex_state = 17, .external_lex_state = 3}, [1341] = {.lex_state = 17, .external_lex_state = 3}, - [1342] = {.lex_state = 17, .external_lex_state = 3}, + [1342] = {.lex_state = 9, .external_lex_state = 3}, [1343] = {.lex_state = 17, .external_lex_state = 3}, [1344] = {.lex_state = 17, .external_lex_state = 3}, - [1345] = {.lex_state = 17, .external_lex_state = 3}, - [1346] = {.lex_state = 17, .external_lex_state = 3}, - [1347] = {.lex_state = 17, .external_lex_state = 3}, - [1348] = {.lex_state = 17, .external_lex_state = 3}, - [1349] = {.lex_state = 9, .external_lex_state = 3}, - [1350] = {.lex_state = 9, .external_lex_state = 3}, + [1345] = {.lex_state = 9, .external_lex_state = 3}, + [1346] = {.lex_state = 9, .external_lex_state = 3}, + [1347] = {.lex_state = 9, .external_lex_state = 3}, + [1348] = {.lex_state = 9, .external_lex_state = 3}, + [1349] = {.lex_state = 17, .external_lex_state = 3}, + [1350] = {.lex_state = 13, .external_lex_state = 3}, [1351] = {.lex_state = 17, .external_lex_state = 3}, [1352] = {.lex_state = 17, .external_lex_state = 3}, [1353] = {.lex_state = 17, .external_lex_state = 3}, - [1354] = {.lex_state = 7, .external_lex_state = 3}, - [1355] = {.lex_state = 17, .external_lex_state = 3}, + [1354] = {.lex_state = 17, .external_lex_state = 3}, + [1355] = {.lex_state = 7, .external_lex_state = 3}, [1356] = {.lex_state = 13, .external_lex_state = 3}, [1357] = {.lex_state = 17, .external_lex_state = 3}, [1358] = {.lex_state = 17, .external_lex_state = 3}, [1359] = {.lex_state = 17, .external_lex_state = 3}, [1360] = {.lex_state = 17, .external_lex_state = 3}, [1361] = {.lex_state = 17, .external_lex_state = 3}, - [1362] = {.lex_state = 9, .external_lex_state = 3}, + [1362] = {.lex_state = 13, .external_lex_state = 3}, [1363] = {.lex_state = 17, .external_lex_state = 3}, - [1364] = {.lex_state = 9, .external_lex_state = 3}, - [1365] = {.lex_state = 13, .external_lex_state = 3}, - [1366] = {.lex_state = 9, .external_lex_state = 3}, + [1364] = {.lex_state = 17, .external_lex_state = 3}, + [1365] = {.lex_state = 17, .external_lex_state = 3}, + [1366] = {.lex_state = 17, .external_lex_state = 3}, [1367] = {.lex_state = 17, .external_lex_state = 3}, - [1368] = {.lex_state = 13, .external_lex_state = 3}, - [1369] = {.lex_state = 9, .external_lex_state = 3}, - [1370] = {.lex_state = 7, .external_lex_state = 3}, - [1371] = {.lex_state = 9, .external_lex_state = 3}, - [1372] = {.lex_state = 7, .external_lex_state = 3}, + [1368] = {.lex_state = 17, .external_lex_state = 3}, + [1369] = {.lex_state = 17, .external_lex_state = 3}, + [1370] = {.lex_state = 17, .external_lex_state = 3}, + [1371] = {.lex_state = 17, .external_lex_state = 3}, + [1372] = {.lex_state = 9, .external_lex_state = 3}, [1373] = {.lex_state = 9, .external_lex_state = 3}, - [1374] = {.lex_state = 14, .external_lex_state = 3}, - [1375] = {.lex_state = 9, .external_lex_state = 3}, - [1376] = {.lex_state = 10, .external_lex_state = 3}, + [1374] = {.lex_state = 9, .external_lex_state = 3}, + [1375] = {.lex_state = 7, .external_lex_state = 3}, + [1376] = {.lex_state = 9, .external_lex_state = 3}, [1377] = {.lex_state = 9, .external_lex_state = 3}, - [1378] = {.lex_state = 9, .external_lex_state = 3}, - [1379] = {.lex_state = 7, .external_lex_state = 3}, + [1378] = {.lex_state = 7, .external_lex_state = 3}, + [1379] = {.lex_state = 9, .external_lex_state = 3}, [1380] = {.lex_state = 9, .external_lex_state = 3}, - [1381] = {.lex_state = 9, .external_lex_state = 3}, - [1382] = {.lex_state = 7, .external_lex_state = 3}, - [1383] = {.lex_state = 1, .external_lex_state = 2}, - [1384] = {.lex_state = 9, .external_lex_state = 3}, - [1385] = {.lex_state = 1, .external_lex_state = 2}, + [1381] = {.lex_state = 14, .external_lex_state = 3}, + [1382] = {.lex_state = 9, .external_lex_state = 3}, + [1383] = {.lex_state = 7, .external_lex_state = 3}, + [1384] = {.lex_state = 10, .external_lex_state = 3}, + [1385] = {.lex_state = 9, .external_lex_state = 3}, [1386] = {.lex_state = 7, .external_lex_state = 3}, - [1387] = {.lex_state = 9, .external_lex_state = 3}, - [1388] = {.lex_state = 7, .external_lex_state = 3}, - [1389] = {.lex_state = 14, .external_lex_state = 3}, + [1387] = {.lex_state = 1, .external_lex_state = 2}, + [1388] = {.lex_state = 1, .external_lex_state = 2}, + [1389] = {.lex_state = 9, .external_lex_state = 3}, [1390] = {.lex_state = 7, .external_lex_state = 3}, [1391] = {.lex_state = 7, .external_lex_state = 3}, [1392] = {.lex_state = 7, .external_lex_state = 3}, @@ -7013,7 +7031,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1396] = {.lex_state = 7, .external_lex_state = 3}, [1397] = {.lex_state = 7, .external_lex_state = 3}, [1398] = {.lex_state = 7, .external_lex_state = 3}, - [1399] = {.lex_state = 14, .external_lex_state = 3}, + [1399] = {.lex_state = 7, .external_lex_state = 3}, [1400] = {.lex_state = 7, .external_lex_state = 3}, [1401] = {.lex_state = 7, .external_lex_state = 3}, [1402] = {.lex_state = 7, .external_lex_state = 3}, @@ -7022,7 +7040,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1405] = {.lex_state = 7, .external_lex_state = 3}, [1406] = {.lex_state = 7, .external_lex_state = 3}, [1407] = {.lex_state = 7, .external_lex_state = 3}, - [1408] = {.lex_state = 7, .external_lex_state = 3}, + [1408] = {.lex_state = 14, .external_lex_state = 3}, [1409] = {.lex_state = 7, .external_lex_state = 3}, [1410] = {.lex_state = 7, .external_lex_state = 3}, [1411] = {.lex_state = 7, .external_lex_state = 3}, @@ -7033,7 +7051,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1416] = {.lex_state = 7, .external_lex_state = 3}, [1417] = {.lex_state = 7, .external_lex_state = 3}, [1418] = {.lex_state = 7, .external_lex_state = 3}, - [1419] = {.lex_state = 7, .external_lex_state = 3}, + [1419] = {.lex_state = 14, .external_lex_state = 3}, [1420] = {.lex_state = 7, .external_lex_state = 3}, [1421] = {.lex_state = 7, .external_lex_state = 3}, [1422] = {.lex_state = 7, .external_lex_state = 3}, @@ -7041,99 +7059,99 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1424] = {.lex_state = 7, .external_lex_state = 3}, [1425] = {.lex_state = 7, .external_lex_state = 3}, [1426] = {.lex_state = 7, .external_lex_state = 3}, - [1427] = {.lex_state = 9, .external_lex_state = 3}, - [1428] = {.lex_state = 4, .external_lex_state = 3}, - [1429] = {.lex_state = 0, .external_lex_state = 3}, + [1427] = {.lex_state = 7, .external_lex_state = 3}, + [1428] = {.lex_state = 7, .external_lex_state = 3}, + [1429] = {.lex_state = 7, .external_lex_state = 3}, [1430] = {.lex_state = 7, .external_lex_state = 3}, - [1431] = {.lex_state = 14, .external_lex_state = 3}, - [1432] = {.lex_state = 9, .external_lex_state = 3}, - [1433] = {.lex_state = 14, .external_lex_state = 3}, + [1431] = {.lex_state = 7, .external_lex_state = 3}, + [1432] = {.lex_state = 13, .external_lex_state = 3}, + [1433] = {.lex_state = 7, .external_lex_state = 3}, [1434] = {.lex_state = 9, .external_lex_state = 3}, - [1435] = {.lex_state = 9, .external_lex_state = 3}, + [1435] = {.lex_state = 14, .external_lex_state = 3}, [1436] = {.lex_state = 7, .external_lex_state = 3}, - [1437] = {.lex_state = 9, .external_lex_state = 3}, - [1438] = {.lex_state = 14, .external_lex_state = 3}, - [1439] = {.lex_state = 7, .external_lex_state = 3}, - [1440] = {.lex_state = 14, .external_lex_state = 3}, - [1441] = {.lex_state = 7, .external_lex_state = 3}, + [1437] = {.lex_state = 17, .external_lex_state = 3}, + [1438] = {.lex_state = 7, .external_lex_state = 3}, + [1439] = {.lex_state = 14, .external_lex_state = 3}, + [1440] = {.lex_state = 9, .external_lex_state = 3}, + [1441] = {.lex_state = 4, .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}, + [1444] = {.lex_state = 9, .external_lex_state = 3}, [1445] = {.lex_state = 7, .external_lex_state = 3}, - [1446] = {.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 = 14, .external_lex_state = 3}, - [1449] = {.lex_state = 7, .external_lex_state = 3}, + [1449] = {.lex_state = 9, .external_lex_state = 3}, [1450] = {.lex_state = 14, .external_lex_state = 3}, - [1451] = {.lex_state = 7, .external_lex_state = 3}, - [1452] = {.lex_state = 9, .external_lex_state = 3}, + [1451] = {.lex_state = 14, .external_lex_state = 3}, + [1452] = {.lex_state = 14, .external_lex_state = 3}, [1453] = {.lex_state = 7, .external_lex_state = 3}, - [1454] = {.lex_state = 17, .external_lex_state = 3}, + [1454] = {.lex_state = 14, .external_lex_state = 3}, [1455] = {.lex_state = 7, .external_lex_state = 3}, - [1456] = {.lex_state = 14, .external_lex_state = 3}, - [1457] = {.lex_state = 14, .external_lex_state = 3}, - [1458] = {.lex_state = 7, .external_lex_state = 3}, + [1456] = {.lex_state = 0, .external_lex_state = 3}, + [1457] = {.lex_state = 7, .external_lex_state = 3}, + [1458] = {.lex_state = 14, .external_lex_state = 3}, [1459] = {.lex_state = 7, .external_lex_state = 3}, - [1460] = {.lex_state = 9, .external_lex_state = 3}, - [1461] = {.lex_state = 7, .external_lex_state = 3}, + [1460] = {.lex_state = 7, .external_lex_state = 3}, + [1461] = {.lex_state = 9, .external_lex_state = 3}, [1462] = {.lex_state = 7, .external_lex_state = 3}, - [1463] = {.lex_state = 13, .external_lex_state = 3}, - [1464] = {.lex_state = 14, .external_lex_state = 3}, + [1463] = {.lex_state = 7, .external_lex_state = 3}, + [1464] = {.lex_state = 7, .external_lex_state = 3}, [1465] = {.lex_state = 7, .external_lex_state = 3}, [1466] = {.lex_state = 7, .external_lex_state = 3}, - [1467] = {.lex_state = 7, .external_lex_state = 3}, + [1467] = {.lex_state = 9, .external_lex_state = 3}, [1468] = {.lex_state = 7, .external_lex_state = 3}, - [1469] = {.lex_state = 7, .external_lex_state = 3}, - [1470] = {.lex_state = 7, .external_lex_state = 3}, + [1469] = {.lex_state = 14, .external_lex_state = 3}, + [1470] = {.lex_state = 9, .external_lex_state = 3}, [1471] = {.lex_state = 7, .external_lex_state = 3}, [1472] = {.lex_state = 7, .external_lex_state = 3}, - [1473] = {.lex_state = 4, .external_lex_state = 3}, - [1474] = {.lex_state = 7, .external_lex_state = 3}, + [1473] = {.lex_state = 9, .external_lex_state = 3}, + [1474] = {.lex_state = 4, .external_lex_state = 3}, [1475] = {.lex_state = 7, .external_lex_state = 3}, - [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 14, .external_lex_state = 3}, - [1478] = {.lex_state = 7, .external_lex_state = 3}, - [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 0, .external_lex_state = 3}, - [1481] = {.lex_state = 14, .external_lex_state = 3}, + [1476] = {.lex_state = 0, .external_lex_state = 3}, + [1477] = {.lex_state = 0, .external_lex_state = 3}, + [1478] = {.lex_state = 0, .external_lex_state = 3}, + [1479] = {.lex_state = 0, .external_lex_state = 3}, + [1480] = {.lex_state = 7, .external_lex_state = 3}, + [1481] = {.lex_state = 7, .external_lex_state = 3}, [1482] = {.lex_state = 0, .external_lex_state = 3}, [1483] = {.lex_state = 7, .external_lex_state = 3}, [1484] = {.lex_state = 7, .external_lex_state = 3}, [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 0, .external_lex_state = 3}, - [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 0, .external_lex_state = 3}, - [1489] = {.lex_state = 17, .external_lex_state = 3}, + [1486] = {.lex_state = 7, .external_lex_state = 3}, + [1487] = {.lex_state = 10, .external_lex_state = 3}, + [1488] = {.lex_state = 7, .external_lex_state = 3}, + [1489] = {.lex_state = 7, .external_lex_state = 3}, [1490] = {.lex_state = 0, .external_lex_state = 3}, - [1491] = {.lex_state = 10, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 7, .external_lex_state = 3}, - [1494] = {.lex_state = 0, .external_lex_state = 3}, - [1495] = {.lex_state = 4, .external_lex_state = 3}, - [1496] = {.lex_state = 7, .external_lex_state = 3}, - [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 0, .external_lex_state = 3}, + [1491] = {.lex_state = 7, .external_lex_state = 3}, + [1492] = {.lex_state = 0, .external_lex_state = 3}, + [1493] = {.lex_state = 4, .external_lex_state = 3}, + [1494] = {.lex_state = 14, .external_lex_state = 3}, + [1495] = {.lex_state = 7, .external_lex_state = 3}, + [1496] = {.lex_state = 14, .external_lex_state = 3}, + [1497] = {.lex_state = 0, .external_lex_state = 3}, + [1498] = {.lex_state = 7, .external_lex_state = 3}, [1499] = {.lex_state = 0, .external_lex_state = 3}, - [1500] = {.lex_state = 0, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, - [1502] = {.lex_state = 0, .external_lex_state = 3}, - [1503] = {.lex_state = 4, .external_lex_state = 3}, + [1500] = {.lex_state = 14, .external_lex_state = 3}, + [1501] = {.lex_state = 0, .external_lex_state = 3}, + [1502] = {.lex_state = 4, .external_lex_state = 3}, + [1503] = {.lex_state = 7, .external_lex_state = 3}, [1504] = {.lex_state = 0, .external_lex_state = 3}, [1505] = {.lex_state = 14, .external_lex_state = 3}, [1506] = {.lex_state = 0, .external_lex_state = 3}, - [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 0, .external_lex_state = 3}, + [1507] = {.lex_state = 17, .external_lex_state = 3}, + [1508] = {.lex_state = 4, .external_lex_state = 3}, [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 0, .external_lex_state = 3}, - [1511] = {.lex_state = 14, .external_lex_state = 3}, - [1512] = {.lex_state = 7, .external_lex_state = 3}, - [1513] = {.lex_state = 4, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, + [1510] = {.lex_state = 7, .external_lex_state = 3}, + [1511] = {.lex_state = 7, .external_lex_state = 3}, + [1512] = {.lex_state = 0, .external_lex_state = 3}, + [1513] = {.lex_state = 7, .external_lex_state = 3}, + [1514] = {.lex_state = 0, .external_lex_state = 3}, [1515] = {.lex_state = 7, .external_lex_state = 3}, - [1516] = {.lex_state = 10, .external_lex_state = 3}, - [1517] = {.lex_state = 7, .external_lex_state = 3}, + [1516] = {.lex_state = 7, .external_lex_state = 3}, + [1517] = {.lex_state = 17, .external_lex_state = 3}, [1518] = {.lex_state = 0, .external_lex_state = 3}, - [1519] = {.lex_state = 10, .external_lex_state = 3}, + [1519] = {.lex_state = 14, .external_lex_state = 3}, [1520] = {.lex_state = 7, .external_lex_state = 3}, [1521] = {.lex_state = 7, .external_lex_state = 3}, [1522] = {.lex_state = 7, .external_lex_state = 3}, @@ -7142,97 +7160,97 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1525] = {.lex_state = 7, .external_lex_state = 3}, [1526] = {.lex_state = 17, .external_lex_state = 3}, [1527] = {.lex_state = 7, .external_lex_state = 3}, - [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 4, .external_lex_state = 3}, - [1530] = {.lex_state = 17, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 7, .external_lex_state = 3}, - [1533] = {.lex_state = 13, .external_lex_state = 3}, + [1528] = {.lex_state = 10, .external_lex_state = 3}, + [1529] = {.lex_state = 7, .external_lex_state = 3}, + [1530] = {.lex_state = 9, .external_lex_state = 3}, + [1531] = {.lex_state = 13, .external_lex_state = 3}, + [1532] = {.lex_state = 10, .external_lex_state = 3}, + [1533] = {.lex_state = 10, .external_lex_state = 3}, [1534] = {.lex_state = 7, .external_lex_state = 3}, [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 14, .external_lex_state = 3}, + [1536] = {.lex_state = 17, .external_lex_state = 3}, [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 17, .external_lex_state = 3}, - [1539] = {.lex_state = 4, .external_lex_state = 3}, + [1538] = {.lex_state = 7, .external_lex_state = 3}, + [1539] = {.lex_state = 7, .external_lex_state = 3}, [1540] = {.lex_state = 7, .external_lex_state = 3}, [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 4, .external_lex_state = 3}, - [1543] = {.lex_state = 0, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, + [1542] = {.lex_state = 7, .external_lex_state = 3}, + [1543] = {.lex_state = 7, .external_lex_state = 3}, + [1544] = {.lex_state = 0, .external_lex_state = 3}, [1545] = {.lex_state = 7, .external_lex_state = 3}, [1546] = {.lex_state = 7, .external_lex_state = 3}, - [1547] = {.lex_state = 17, .external_lex_state = 3}, - [1548] = {.lex_state = 10, .external_lex_state = 3}, + [1547] = {.lex_state = 7, .external_lex_state = 3}, + [1548] = {.lex_state = 4, .external_lex_state = 3}, [1549] = {.lex_state = 7, .external_lex_state = 3}, - [1550] = {.lex_state = 7, .external_lex_state = 3}, - [1551] = {.lex_state = 9, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, + [1550] = {.lex_state = 4, .external_lex_state = 3}, + [1551] = {.lex_state = 7, .external_lex_state = 3}, + [1552] = {.lex_state = 4, .external_lex_state = 3}, [1553] = {.lex_state = 7, .external_lex_state = 3}, [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 7, .external_lex_state = 3}, + [1555] = {.lex_state = 17, .external_lex_state = 3}, [1556] = {.lex_state = 10, .external_lex_state = 3}, [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 0, .external_lex_state = 3}, - [1559] = {.lex_state = 7, .external_lex_state = 3}, - [1560] = {.lex_state = 10, .external_lex_state = 3}, + [1558] = {.lex_state = 7, .external_lex_state = 3}, + [1559] = {.lex_state = 0, .external_lex_state = 3}, + [1560] = {.lex_state = 7, .external_lex_state = 3}, [1561] = {.lex_state = 10, .external_lex_state = 3}, [1562] = {.lex_state = 7, .external_lex_state = 3}, [1563] = {.lex_state = 7, .external_lex_state = 3}, [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, + [1565] = {.lex_state = 4, .external_lex_state = 3}, [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 9, .external_lex_state = 3}, + [1567] = {.lex_state = 7, .external_lex_state = 3}, [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, + [1569] = {.lex_state = 13, .external_lex_state = 3}, [1570] = {.lex_state = 7, .external_lex_state = 3}, [1571] = {.lex_state = 7, .external_lex_state = 3}, [1572] = {.lex_state = 7, .external_lex_state = 3}, - [1573] = {.lex_state = 4, .external_lex_state = 3}, - [1574] = {.lex_state = 13, .external_lex_state = 3}, - [1575] = {.lex_state = 7, .external_lex_state = 3}, + [1573] = {.lex_state = 7, .external_lex_state = 3}, + [1574] = {.lex_state = 7, .external_lex_state = 3}, + [1575] = {.lex_state = 10, .external_lex_state = 3}, [1576] = {.lex_state = 7, .external_lex_state = 3}, - [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 17, .external_lex_state = 3}, + [1577] = {.lex_state = 9, .external_lex_state = 3}, + [1578] = {.lex_state = 7, .external_lex_state = 3}, [1579] = {.lex_state = 7, .external_lex_state = 3}, [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 0, .external_lex_state = 3}, + [1581] = {.lex_state = 0, .external_lex_state = 3}, + [1582] = {.lex_state = 7, .external_lex_state = 3}, [1583] = {.lex_state = 7, .external_lex_state = 3}, [1584] = {.lex_state = 0, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 0, .external_lex_state = 3}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, + [1585] = {.lex_state = 17, .external_lex_state = 3}, + [1586] = {.lex_state = 17, .external_lex_state = 3}, + [1587] = {.lex_state = 0, .external_lex_state = 3}, + [1588] = {.lex_state = 17, .external_lex_state = 3}, [1589] = {.lex_state = 7, .external_lex_state = 3}, [1590] = {.lex_state = 7, .external_lex_state = 3}, - [1591] = {.lex_state = 0, .external_lex_state = 3}, + [1591] = {.lex_state = 7, .external_lex_state = 3}, [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 0, .external_lex_state = 3}, - [1595] = {.lex_state = 57, .external_lex_state = 3}, + [1593] = {.lex_state = 0, .external_lex_state = 3}, + [1594] = {.lex_state = 7, .external_lex_state = 3}, + [1595] = {.lex_state = 7, .external_lex_state = 3}, [1596] = {.lex_state = 7, .external_lex_state = 3}, [1597] = {.lex_state = 7, .external_lex_state = 3}, - [1598] = {.lex_state = 7, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, + [1598] = {.lex_state = 0, .external_lex_state = 3}, + [1599] = {.lex_state = 0, .external_lex_state = 3}, [1600] = {.lex_state = 7, .external_lex_state = 3}, [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, + [1602] = {.lex_state = 57, .external_lex_state = 3}, [1603] = {.lex_state = 7, .external_lex_state = 3}, [1604] = {.lex_state = 7, .external_lex_state = 3}, - [1605] = {.lex_state = 57, .external_lex_state = 3}, - [1606] = {.lex_state = 17, .external_lex_state = 3}, + [1605] = {.lex_state = 7, .external_lex_state = 3}, + [1606] = {.lex_state = 7, .external_lex_state = 3}, [1607] = {.lex_state = 7, .external_lex_state = 3}, - [1608] = {.lex_state = 17, .external_lex_state = 3}, - [1609] = {.lex_state = 17, .external_lex_state = 3}, - [1610] = {.lex_state = 0, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 17, .external_lex_state = 3}, - [1613] = {.lex_state = 17, .external_lex_state = 3}, + [1608] = {.lex_state = 57, .external_lex_state = 3}, + [1609] = {.lex_state = 7, .external_lex_state = 3}, + [1610] = {.lex_state = 7, .external_lex_state = 3}, + [1611] = {.lex_state = 17, .external_lex_state = 3}, + [1612] = {.lex_state = 7, .external_lex_state = 3}, + [1613] = {.lex_state = 7, .external_lex_state = 3}, [1614] = {.lex_state = 7, .external_lex_state = 3}, [1615] = {.lex_state = 7, .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}, + [1618] = {.lex_state = 0, .external_lex_state = 3}, [1619] = {.lex_state = 7, .external_lex_state = 3}, [1620] = {.lex_state = 7, .external_lex_state = 3}, [1621] = {.lex_state = 7, .external_lex_state = 3}, @@ -7248,367 +7266,367 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1631] = {.lex_state = 7, .external_lex_state = 3}, [1632] = {.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 = 17, .external_lex_state = 3}, + [1634] = {.lex_state = 7, .external_lex_state = 3}, + [1635] = {.lex_state = 7, .external_lex_state = 3}, [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 7, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, + [1637] = {.lex_state = 17, .external_lex_state = 3}, + [1638] = {.lex_state = 17, .external_lex_state = 3}, [1639] = {.lex_state = 7, .external_lex_state = 3}, [1640] = {.lex_state = 7, .external_lex_state = 3}, [1641] = {.lex_state = 0, .external_lex_state = 3}, - [1642] = {.lex_state = 10, .external_lex_state = 3}, - [1643] = {.lex_state = 57, .external_lex_state = 3}, + [1642] = {.lex_state = 17, .external_lex_state = 3}, + [1643] = {.lex_state = 7, .external_lex_state = 3}, [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 17, .external_lex_state = 3}, - [1646] = {.lex_state = 0, .external_lex_state = 3}, - [1647] = {.lex_state = 57, .external_lex_state = 3}, - [1648] = {.lex_state = 18, .external_lex_state = 3}, - [1649] = {.lex_state = 0, .external_lex_state = 3}, - [1650] = {.lex_state = 57, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 57, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 17, .external_lex_state = 3}, - [1655] = {.lex_state = 57, .external_lex_state = 3}, - [1656] = {.lex_state = 4, .external_lex_state = 4}, + [1645] = {.lex_state = 7, .external_lex_state = 3}, + [1646] = {.lex_state = 57, .external_lex_state = 3}, + [1647] = {.lex_state = 4, .external_lex_state = 4}, + [1648] = {.lex_state = 57, .external_lex_state = 3}, + [1649] = {.lex_state = 7, .external_lex_state = 3}, + [1650] = {.lex_state = 0, .external_lex_state = 3}, + [1651] = {.lex_state = 17, .external_lex_state = 3}, + [1652] = {.lex_state = 17, .external_lex_state = 3}, + [1653] = {.lex_state = 10, .external_lex_state = 3}, + [1654] = {.lex_state = 4, .external_lex_state = 4}, + [1655] = {.lex_state = 0, .external_lex_state = 3}, + [1656] = {.lex_state = 57, .external_lex_state = 3}, [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 17, .external_lex_state = 3}, - [1659] = {.lex_state = 0, .external_lex_state = 3}, - [1660] = {.lex_state = 17, .external_lex_state = 3}, + [1658] = {.lex_state = 57, .external_lex_state = 3}, + [1659] = {.lex_state = 57, .external_lex_state = 3}, + [1660] = {.lex_state = 57, .external_lex_state = 3}, [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 57, .external_lex_state = 3}, - [1663] = {.lex_state = 0, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, + [1662] = {.lex_state = 0, .external_lex_state = 3}, + [1663] = {.lex_state = 17, .external_lex_state = 3}, + [1664] = {.lex_state = 57, .external_lex_state = 3}, [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 0, .external_lex_state = 3}, - [1667] = {.lex_state = 4, .external_lex_state = 4}, + [1666] = {.lex_state = 18, .external_lex_state = 3}, + [1667] = {.lex_state = 7, .external_lex_state = 3}, [1668] = {.lex_state = 7, .external_lex_state = 3}, [1669] = {.lex_state = 7, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 57, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 57, .external_lex_state = 3}, + [1670] = {.lex_state = 0, .external_lex_state = 3}, + [1671] = {.lex_state = 17, .external_lex_state = 3}, + [1672] = {.lex_state = 18, .external_lex_state = 3}, + [1673] = {.lex_state = 0, .external_lex_state = 3}, + [1674] = {.lex_state = 4, .external_lex_state = 4}, [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 18, .external_lex_state = 3}, + [1676] = {.lex_state = 57, .external_lex_state = 3}, [1677] = {.lex_state = 0, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, - [1679] = {.lex_state = 0, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 4, .external_lex_state = 4}, - [1682] = {.lex_state = 57, .external_lex_state = 3}, + [1678] = {.lex_state = 4, .external_lex_state = 4}, + [1679] = {.lex_state = 4, .external_lex_state = 4}, + [1680] = {.lex_state = 0, .external_lex_state = 3}, + [1681] = {.lex_state = 17, .external_lex_state = 3}, + [1682] = {.lex_state = 7, .external_lex_state = 3}, [1683] = {.lex_state = 10, .external_lex_state = 3}, - [1684] = {.lex_state = 4, .external_lex_state = 4}, - [1685] = {.lex_state = 18, .external_lex_state = 3}, - [1686] = {.lex_state = 10, .external_lex_state = 3}, - [1687] = {.lex_state = 10, .external_lex_state = 3}, + [1684] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, - [1690] = {.lex_state = 57, .external_lex_state = 3}, - [1691] = {.lex_state = 0, .external_lex_state = 3}, - [1692] = {.lex_state = 17, .external_lex_state = 3}, - [1693] = {.lex_state = 17, .external_lex_state = 3}, - [1694] = {.lex_state = 4, .external_lex_state = 4}, + [1689] = {.lex_state = 57, .external_lex_state = 3}, + [1690] = {.lex_state = 10, .external_lex_state = 3}, + [1691] = {.lex_state = 18, .external_lex_state = 3}, + [1692] = {.lex_state = 7, .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 = 57, .external_lex_state = 3}, + [1696] = {.lex_state = 7, .external_lex_state = 3}, [1697] = {.lex_state = 57, .external_lex_state = 3}, - [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 57, .external_lex_state = 3}, + [1698] = {.lex_state = 57, .external_lex_state = 3}, + [1699] = {.lex_state = 18, .external_lex_state = 3}, [1700] = {.lex_state = 57, .external_lex_state = 3}, - [1701] = {.lex_state = 57, .external_lex_state = 3}, + [1701] = {.lex_state = 7, .external_lex_state = 3}, [1702] = {.lex_state = 57, .external_lex_state = 3}, - [1703] = {.lex_state = 57, .external_lex_state = 3}, - [1704] = {.lex_state = 0, .external_lex_state = 3}, + [1703] = {.lex_state = 10, .external_lex_state = 3}, + [1704] = {.lex_state = 7, .external_lex_state = 3}, [1705] = {.lex_state = 7, .external_lex_state = 3}, [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, + [1707] = {.lex_state = 57, .external_lex_state = 3}, [1708] = {.lex_state = 57, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 7, .external_lex_state = 3}, + [1709] = {.lex_state = 0, .external_lex_state = 3}, + [1710] = {.lex_state = 57, .external_lex_state = 3}, [1711] = {.lex_state = 57, .external_lex_state = 3}, - [1712] = {.lex_state = 10, .external_lex_state = 3}, + [1712] = {.lex_state = 57, .external_lex_state = 3}, [1713] = {.lex_state = 7, .external_lex_state = 3}, [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 57, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 57, .external_lex_state = 3}, - [1718] = {.lex_state = 4, .external_lex_state = 4}, + [1715] = {.lex_state = 7, .external_lex_state = 3}, + [1716] = {.lex_state = 0, .external_lex_state = 3}, + [1717] = {.lex_state = 4, .external_lex_state = 4}, + [1718] = {.lex_state = 7, .external_lex_state = 3}, [1719] = {.lex_state = 57, .external_lex_state = 3}, - [1720] = {.lex_state = 57, .external_lex_state = 3}, - [1721] = {.lex_state = 57, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, - [1724] = {.lex_state = 0, .external_lex_state = 3}, - [1725] = {.lex_state = 18, .external_lex_state = 3}, - [1726] = {.lex_state = 4, .external_lex_state = 4}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, + [1720] = {.lex_state = 0, .external_lex_state = 3}, + [1721] = {.lex_state = 0, .external_lex_state = 3}, + [1722] = {.lex_state = 17, .external_lex_state = 3}, + [1723] = {.lex_state = 10, .external_lex_state = 3}, + [1724] = {.lex_state = 4, .external_lex_state = 4}, + [1725] = {.lex_state = 57, .external_lex_state = 3}, + [1726] = {.lex_state = 0, .external_lex_state = 3}, + [1727] = {.lex_state = 17, .external_lex_state = 3}, [1728] = {.lex_state = 57, .external_lex_state = 3}, - [1729] = {.lex_state = 10, .external_lex_state = 3}, - [1730] = {.lex_state = 0, .external_lex_state = 3}, - [1731] = {.lex_state = 0, .external_lex_state = 3}, - [1732] = {.lex_state = 17, .external_lex_state = 3}, + [1729] = {.lex_state = 57, .external_lex_state = 3}, + [1730] = {.lex_state = 7, .external_lex_state = 3}, + [1731] = {.lex_state = 7, .external_lex_state = 3}, + [1732] = {.lex_state = 57, .external_lex_state = 3}, [1733] = {.lex_state = 0, .external_lex_state = 3}, - [1734] = {.lex_state = 0, .external_lex_state = 3}, - [1735] = {.lex_state = 7, .external_lex_state = 3}, - [1736] = {.lex_state = 3, .external_lex_state = 3}, - [1737] = {.lex_state = 0, .external_lex_state = 3}, - [1738] = {.lex_state = 0, .external_lex_state = 3}, + [1734] = {.lex_state = 7, .external_lex_state = 3}, + [1735] = {.lex_state = 10, .external_lex_state = 3}, + [1736] = {.lex_state = 57, .external_lex_state = 3}, + [1737] = {.lex_state = 10, .external_lex_state = 3}, + [1738] = {.lex_state = 7, .external_lex_state = 3}, [1739] = {.lex_state = 0, .external_lex_state = 3}, - [1740] = {.lex_state = 0, .external_lex_state = 3}, + [1740] = {.lex_state = 7, .external_lex_state = 3}, [1741] = {.lex_state = 0, .external_lex_state = 3}, [1742] = {.lex_state = 0, .external_lex_state = 3}, - [1743] = {.lex_state = 0, .external_lex_state = 3}, - [1744] = {.lex_state = 0, .external_lex_state = 3}, - [1745] = {.lex_state = 0, .external_lex_state = 3}, + [1743] = {.lex_state = 57, .external_lex_state = 3}, + [1744] = {.lex_state = 7, .external_lex_state = 3}, + [1745] = {.lex_state = 10, .external_lex_state = 3}, [1746] = {.lex_state = 0, .external_lex_state = 3}, - [1747] = {.lex_state = 0, .external_lex_state = 3}, + [1747] = {.lex_state = 10, .external_lex_state = 3}, [1748] = {.lex_state = 0, .external_lex_state = 3}, [1749] = {.lex_state = 0, .external_lex_state = 3}, [1750] = {.lex_state = 0, .external_lex_state = 3}, - [1751] = {.lex_state = 0, .external_lex_state = 3}, + [1751] = {.lex_state = 57, .external_lex_state = 3}, [1752] = {.lex_state = 0, .external_lex_state = 3}, [1753] = {.lex_state = 0, .external_lex_state = 3}, [1754] = {.lex_state = 0, .external_lex_state = 3}, - [1755] = {.lex_state = 0, .external_lex_state = 3}, - [1756] = {.lex_state = 57, .external_lex_state = 3}, + [1755] = {.lex_state = 7, .external_lex_state = 3}, + [1756] = {.lex_state = 3, .external_lex_state = 3}, [1757] = {.lex_state = 0, .external_lex_state = 3}, [1758] = {.lex_state = 0, .external_lex_state = 3}, [1759] = {.lex_state = 0, .external_lex_state = 3}, - [1760] = {.lex_state = 57, .external_lex_state = 3}, + [1760] = {.lex_state = 0, .external_lex_state = 3}, [1761] = {.lex_state = 0, .external_lex_state = 3}, - [1762] = {.lex_state = 0, .external_lex_state = 3}, + [1762] = {.lex_state = 7, .external_lex_state = 3}, [1763] = {.lex_state = 0, .external_lex_state = 3}, - [1764] = {.lex_state = 0, .external_lex_state = 3}, - [1765] = {.lex_state = 0, .external_lex_state = 3}, + [1764] = {.lex_state = 10, .external_lex_state = 3}, + [1765] = {.lex_state = 7, .external_lex_state = 3}, [1766] = {.lex_state = 0, .external_lex_state = 3}, - [1767] = {.lex_state = 57, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 3}, - [1769] = {.lex_state = 3, .external_lex_state = 3}, - [1770] = {.lex_state = 57, .external_lex_state = 3}, - [1771] = {.lex_state = 0, .external_lex_state = 3}, - [1772] = {.lex_state = 57, .external_lex_state = 3}, - [1773] = {.lex_state = 0, .external_lex_state = 3}, - [1774] = {.lex_state = 57, .external_lex_state = 3}, - [1775] = {.lex_state = 7, .external_lex_state = 3}, + [1767] = {.lex_state = 10, .external_lex_state = 3}, + [1768] = {.lex_state = 0, .external_lex_state = 3}, + [1769] = {.lex_state = 57, .external_lex_state = 3}, + [1770] = {.lex_state = 0, .external_lex_state = 3}, + [1771] = {.lex_state = 7, .external_lex_state = 3}, + [1772] = {.lex_state = 0, .external_lex_state = 3}, + [1773] = {.lex_state = 7, .external_lex_state = 3}, + [1774] = {.lex_state = 3, .external_lex_state = 3}, + [1775] = {.lex_state = 0, .external_lex_state = 3}, [1776] = {.lex_state = 57, .external_lex_state = 3}, [1777] = {.lex_state = 0, .external_lex_state = 3}, - [1778] = {.lex_state = 0, .external_lex_state = 3}, + [1778] = {.lex_state = 10, .external_lex_state = 3}, [1779] = {.lex_state = 0, .external_lex_state = 3}, [1780] = {.lex_state = 0, .external_lex_state = 3}, - [1781] = {.lex_state = 0, .external_lex_state = 3}, + [1781] = {.lex_state = 10, .external_lex_state = 3}, [1782] = {.lex_state = 0, .external_lex_state = 3}, - [1783] = {.lex_state = 0, .external_lex_state = 3}, - [1784] = {.lex_state = 57, .external_lex_state = 3}, - [1785] = {.lex_state = 0, .external_lex_state = 3}, - [1786] = {.lex_state = 3, .external_lex_state = 3}, - [1787] = {.lex_state = 0, .external_lex_state = 3}, - [1788] = {.lex_state = 0, .external_lex_state = 3}, - [1789] = {.lex_state = 0, .external_lex_state = 3}, + [1783] = {.lex_state = 3, .external_lex_state = 3}, + [1784] = {.lex_state = 0, .external_lex_state = 3}, + [1785] = {.lex_state = 10, .external_lex_state = 3}, + [1786] = {.lex_state = 7, .external_lex_state = 3}, + [1787] = {.lex_state = 7, .external_lex_state = 3}, + [1788] = {.lex_state = 3, .external_lex_state = 3}, + [1789] = {.lex_state = 7, .external_lex_state = 3}, [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 10, .external_lex_state = 3}, - [1792] = {.lex_state = 0, .external_lex_state = 3}, - [1793] = {.lex_state = 7, .external_lex_state = 3}, + [1791] = {.lex_state = 0, .external_lex_state = 3}, + [1792] = {.lex_state = 57, .external_lex_state = 3}, + [1793] = {.lex_state = 0, .external_lex_state = 3}, [1794] = {.lex_state = 0, .external_lex_state = 3}, - [1795] = {.lex_state = 10, .external_lex_state = 3}, - [1796] = {.lex_state = 57, .external_lex_state = 3}, + [1795] = {.lex_state = 0, .external_lex_state = 3}, + [1796] = {.lex_state = 0, .external_lex_state = 3}, [1797] = {.lex_state = 0, .external_lex_state = 3}, - [1798] = {.lex_state = 10, .external_lex_state = 3}, - [1799] = {.lex_state = 10, .external_lex_state = 3}, - [1800] = {.lex_state = 57, .external_lex_state = 3}, - [1801] = {.lex_state = 0, .external_lex_state = 3}, - [1802] = {.lex_state = 57, .external_lex_state = 3}, - [1803] = {.lex_state = 10, .external_lex_state = 3}, + [1798] = {.lex_state = 0, .external_lex_state = 3}, + [1799] = {.lex_state = 57, .external_lex_state = 3}, + [1800] = {.lex_state = 3, .external_lex_state = 3}, + [1801] = {.lex_state = 3, .external_lex_state = 3}, + [1802] = {.lex_state = 10, .external_lex_state = 3}, + [1803] = {.lex_state = 57, .external_lex_state = 3}, [1804] = {.lex_state = 57, .external_lex_state = 3}, - [1805] = {.lex_state = 10, .external_lex_state = 3}, + [1805] = {.lex_state = 7, .external_lex_state = 3}, [1806] = {.lex_state = 57, .external_lex_state = 3}, - [1807] = {.lex_state = 0, .external_lex_state = 3}, - [1808] = {.lex_state = 0, .external_lex_state = 3}, + [1807] = {.lex_state = 57, .external_lex_state = 3}, + [1808] = {.lex_state = 57, .external_lex_state = 3}, [1809] = {.lex_state = 0, .external_lex_state = 3}, - [1810] = {.lex_state = 0, .external_lex_state = 3}, - [1811] = {.lex_state = 0, .external_lex_state = 3}, - [1812] = {.lex_state = 0, .external_lex_state = 3}, - [1813] = {.lex_state = 0, .external_lex_state = 3}, - [1814] = {.lex_state = 57, .external_lex_state = 3}, - [1815] = {.lex_state = 57, .external_lex_state = 3}, - [1816] = {.lex_state = 0, .external_lex_state = 3}, - [1817] = {.lex_state = 57, .external_lex_state = 3}, - [1818] = {.lex_state = 0, .external_lex_state = 3}, + [1810] = {.lex_state = 57, .external_lex_state = 3}, + [1811] = {.lex_state = 57, .external_lex_state = 3}, + [1812] = {.lex_state = 57, .external_lex_state = 3}, + [1813] = {.lex_state = 57, .external_lex_state = 3}, + [1814] = {.lex_state = 4, .external_lex_state = 3}, + [1815] = {.lex_state = 0, .external_lex_state = 3}, + [1816] = {.lex_state = 57, .external_lex_state = 3}, + [1817] = {.lex_state = 0, .external_lex_state = 3}, + [1818] = {.lex_state = 57, .external_lex_state = 3}, [1819] = {.lex_state = 0, .external_lex_state = 3}, [1820] = {.lex_state = 10, .external_lex_state = 3}, [1821] = {.lex_state = 0, .external_lex_state = 3}, [1822] = {.lex_state = 0, .external_lex_state = 3}, [1823] = {.lex_state = 57, .external_lex_state = 3}, - [1824] = {.lex_state = 57, .external_lex_state = 3}, - [1825] = {.lex_state = 57, .external_lex_state = 3}, + [1824] = {.lex_state = 0, .external_lex_state = 3}, + [1825] = {.lex_state = 0, .external_lex_state = 3}, [1826] = {.lex_state = 57, .external_lex_state = 3}, - [1827] = {.lex_state = 57, .external_lex_state = 3}, + [1827] = {.lex_state = 10, .external_lex_state = 3}, [1828] = {.lex_state = 57, .external_lex_state = 3}, [1829] = {.lex_state = 0, .external_lex_state = 3}, - [1830] = {.lex_state = 4, .external_lex_state = 3}, - [1831] = {.lex_state = 4, .external_lex_state = 3}, - [1832] = {.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 = 57, .external_lex_state = 3}, [1833] = {.lex_state = 57, .external_lex_state = 3}, - [1834] = {.lex_state = 57, .external_lex_state = 3}, - [1835] = {.lex_state = 0, .external_lex_state = 3}, - [1836] = {.lex_state = 57, .external_lex_state = 3}, - [1837] = {.lex_state = 0, .external_lex_state = 3}, + [1834] = {.lex_state = 0, .external_lex_state = 3}, + [1835] = {.lex_state = 7, .external_lex_state = 3}, + [1836] = {.lex_state = 0, .external_lex_state = 3}, + [1837] = {.lex_state = 3, .external_lex_state = 3}, [1838] = {.lex_state = 0, .external_lex_state = 3}, - [1839] = {.lex_state = 57, .external_lex_state = 3}, - [1840] = {.lex_state = 7, .external_lex_state = 3}, + [1839] = {.lex_state = 3, .external_lex_state = 3}, + [1840] = {.lex_state = 0, .external_lex_state = 3}, [1841] = {.lex_state = 57, .external_lex_state = 3}, - [1842] = {.lex_state = 57, .external_lex_state = 3}, + [1842] = {.lex_state = 0, .external_lex_state = 3}, [1843] = {.lex_state = 0, .external_lex_state = 3}, [1844] = {.lex_state = 0, .external_lex_state = 3}, - [1845] = {.lex_state = 57, .external_lex_state = 3}, - [1846] = {.lex_state = 57, .external_lex_state = 3}, + [1845] = {.lex_state = 0, .external_lex_state = 3}, + [1846] = {.lex_state = 0, .external_lex_state = 3}, [1847] = {.lex_state = 0, .external_lex_state = 3}, - [1848] = {.lex_state = 57, .external_lex_state = 3}, + [1848] = {.lex_state = 0, .external_lex_state = 3}, [1849] = {.lex_state = 0, .external_lex_state = 3}, - [1850] = {.lex_state = 7, .external_lex_state = 3}, - [1851] = {.lex_state = 0, .external_lex_state = 3}, - [1852] = {.lex_state = 57, .external_lex_state = 3}, + [1850] = {.lex_state = 0, .external_lex_state = 3}, + [1851] = {.lex_state = 3, .external_lex_state = 3}, + [1852] = {.lex_state = 3, .external_lex_state = 3}, [1853] = {.lex_state = 57, .external_lex_state = 3}, [1854] = {.lex_state = 0, .external_lex_state = 3}, - [1855] = {.lex_state = 0, .external_lex_state = 3}, - [1856] = {.lex_state = 10, .external_lex_state = 3}, - [1857] = {.lex_state = 0, .external_lex_state = 3}, - [1858] = {.lex_state = 3, .external_lex_state = 3}, - [1859] = {.lex_state = 0, .external_lex_state = 3}, + [1855] = {.lex_state = 3, .external_lex_state = 3}, + [1856] = {.lex_state = 4, .external_lex_state = 3}, + [1857] = {.lex_state = 3, .external_lex_state = 3}, + [1858] = {.lex_state = 57, .external_lex_state = 3}, + [1859] = {.lex_state = 10, .external_lex_state = 3}, [1860] = {.lex_state = 0, .external_lex_state = 3}, [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 0, .external_lex_state = 3}, + [1862] = {.lex_state = 57, .external_lex_state = 3}, [1863] = {.lex_state = 10, .external_lex_state = 3}, - [1864] = {.lex_state = 57, .external_lex_state = 3}, - [1865] = {.lex_state = 0, .external_lex_state = 3}, - [1866] = {.lex_state = 57, .external_lex_state = 3}, - [1867] = {.lex_state = 57, .external_lex_state = 3}, - [1868] = {.lex_state = 7, .external_lex_state = 3}, - [1869] = {.lex_state = 3, .external_lex_state = 3}, - [1870] = {.lex_state = 3, .external_lex_state = 3}, - [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 7, .external_lex_state = 3}, + [1864] = {.lex_state = 0, .external_lex_state = 3}, + [1865] = {.lex_state = 57, .external_lex_state = 3}, + [1866] = {.lex_state = 0, .external_lex_state = 3}, + [1867] = {.lex_state = 0, .external_lex_state = 3}, + [1868] = {.lex_state = 57, .external_lex_state = 3}, + [1869] = {.lex_state = 0, .external_lex_state = 3}, + [1870] = {.lex_state = 57, .external_lex_state = 3}, + [1871] = {.lex_state = 3, .external_lex_state = 3}, + [1872] = {.lex_state = 3, .external_lex_state = 3}, [1873] = {.lex_state = 3, .external_lex_state = 3}, - [1874] = {.lex_state = 3, .external_lex_state = 3}, - [1875] = {.lex_state = 3, .external_lex_state = 3}, + [1874] = {.lex_state = 57, .external_lex_state = 3}, + [1875] = {.lex_state = 57, .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}, + [1877] = {.lex_state = 0, .external_lex_state = 3}, + [1878] = {.lex_state = 3, .external_lex_state = 3}, [1879] = {.lex_state = 7, .external_lex_state = 3}, [1880] = {.lex_state = 0, .external_lex_state = 3}, - [1881] = {.lex_state = 3, .external_lex_state = 3}, + [1881] = {.lex_state = 7, .external_lex_state = 3}, [1882] = {.lex_state = 0, .external_lex_state = 3}, [1883] = {.lex_state = 0, .external_lex_state = 3}, - [1884] = {.lex_state = 0, .external_lex_state = 3}, - [1885] = {.lex_state = 3, .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}, - [1889] = {.lex_state = 3, .external_lex_state = 3}, + [1884] = {.lex_state = 57, .external_lex_state = 3}, + [1885] = {.lex_state = 0, .external_lex_state = 3}, + [1886] = {.lex_state = 57, .external_lex_state = 3}, + [1887] = {.lex_state = 0, .external_lex_state = 3}, + [1888] = {.lex_state = 3, .external_lex_state = 3}, + [1889] = {.lex_state = 57, .external_lex_state = 3}, [1890] = {.lex_state = 0, .external_lex_state = 3}, - [1891] = {.lex_state = 57, .external_lex_state = 3}, + [1891] = {.lex_state = 0, .external_lex_state = 3}, [1892] = {.lex_state = 3, .external_lex_state = 3}, - [1893] = {.lex_state = 57, .external_lex_state = 3}, - [1894] = {.lex_state = 3, .external_lex_state = 3}, - [1895] = {.lex_state = 7, .external_lex_state = 3}, - [1896] = {.lex_state = 3, .external_lex_state = 3}, - [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 10, .external_lex_state = 3}, - [1899] = {.lex_state = 10, .external_lex_state = 3}, - [1900] = {.lex_state = 3, .external_lex_state = 3}, - [1901] = {.lex_state = 0, .external_lex_state = 3}, - [1902] = {.lex_state = 10, .external_lex_state = 3}, - [1903] = {.lex_state = 57, .external_lex_state = 3}, + [1893] = {.lex_state = 0, .external_lex_state = 3}, + [1894] = {.lex_state = 57, .external_lex_state = 3}, + [1895] = {.lex_state = 10, .external_lex_state = 3}, + [1896] = {.lex_state = 57, .external_lex_state = 3}, + [1897] = {.lex_state = 57, .external_lex_state = 3}, + [1898] = {.lex_state = 0, .external_lex_state = 3}, + [1899] = {.lex_state = 57, .external_lex_state = 3}, + [1900] = {.lex_state = 0, .external_lex_state = 3}, + [1901] = {.lex_state = 57, .external_lex_state = 3}, + [1902] = {.lex_state = 0, .external_lex_state = 3}, + [1903] = {.lex_state = 17, .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}, - [1907] = {.lex_state = 57, .external_lex_state = 3}, - [1908] = {.lex_state = 3, .external_lex_state = 3}, - [1909] = {.lex_state = 57, .external_lex_state = 3}, - [1910] = {.lex_state = 3, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, - [1912] = {.lex_state = 57, .external_lex_state = 3}, + [1905] = {.lex_state = 10, .external_lex_state = 3}, + [1906] = {.lex_state = 57, .external_lex_state = 3}, + [1907] = {.lex_state = 0, .external_lex_state = 3}, + [1908] = {.lex_state = 57, .external_lex_state = 3}, + [1909] = {.lex_state = 7, .external_lex_state = 3}, + [1910] = {.lex_state = 0, .external_lex_state = 3}, + [1911] = {.lex_state = 57, .external_lex_state = 3}, + [1912] = {.lex_state = 0, .external_lex_state = 3}, [1913] = {.lex_state = 0, .external_lex_state = 3}, [1914] = {.lex_state = 0, .external_lex_state = 3}, [1915] = {.lex_state = 0, .external_lex_state = 3}, [1916] = {.lex_state = 0, .external_lex_state = 3}, [1917] = {.lex_state = 0, .external_lex_state = 3}, - [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 57, .external_lex_state = 3}, - [1920] = {.lex_state = 0, .external_lex_state = 3}, + [1918] = {.lex_state = 57, .external_lex_state = 3}, + [1919] = {.lex_state = 0, .external_lex_state = 3}, + [1920] = {.lex_state = 7, .external_lex_state = 3}, [1921] = {.lex_state = 0, .external_lex_state = 3}, - [1922] = {.lex_state = 0, .external_lex_state = 3}, - [1923] = {.lex_state = 57, .external_lex_state = 3}, - [1924] = {.lex_state = 0, .external_lex_state = 3}, + [1922] = {.lex_state = 3, .external_lex_state = 3}, + [1923] = {.lex_state = 0, .external_lex_state = 3}, + [1924] = {.lex_state = 3, .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 = 0, .external_lex_state = 3}, [1929] = {.lex_state = 0, .external_lex_state = 3}, - [1930] = {.lex_state = 10, .external_lex_state = 3}, - [1931] = {.lex_state = 7, .external_lex_state = 3}, - [1932] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, [1934] = {.lex_state = 0, .external_lex_state = 3}, - [1935] = {.lex_state = 57, .external_lex_state = 3}, + [1935] = {.lex_state = 0, .external_lex_state = 3}, [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 57, .external_lex_state = 3}, - [1938] = {.lex_state = 3, .external_lex_state = 3}, + [1937] = {.lex_state = 0, .external_lex_state = 3}, + [1938] = {.lex_state = 57, .external_lex_state = 3}, [1939] = {.lex_state = 0, .external_lex_state = 3}, [1940] = {.lex_state = 0, .external_lex_state = 3}, - [1941] = {.lex_state = 3, .external_lex_state = 3}, - [1942] = {.lex_state = 7, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, - [1944] = {.lex_state = 0, .external_lex_state = 3}, + [1941] = {.lex_state = 0, .external_lex_state = 3}, + [1942] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 7, .external_lex_state = 3}, + [1944] = {.lex_state = 57, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 7, .external_lex_state = 3}, - [1947] = {.lex_state = 7, .external_lex_state = 3}, - [1948] = {.lex_state = 7, .external_lex_state = 3}, + [1946] = {.lex_state = 57, .external_lex_state = 3}, + [1947] = {.lex_state = 0, .external_lex_state = 3}, + [1948] = {.lex_state = 10, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 57, .external_lex_state = 3}, - [1953] = {.lex_state = 17, .external_lex_state = 3}, + [1952] = {.lex_state = 0, .external_lex_state = 3}, + [1953] = {.lex_state = 57, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, [1955] = {.lex_state = 57, .external_lex_state = 3}, - [1956] = {.lex_state = 57, .external_lex_state = 3}, - [1957] = {.lex_state = 57, .external_lex_state = 3}, - [1958] = {.lex_state = 57, .external_lex_state = 3}, - [1959] = {.lex_state = 10, .external_lex_state = 3}, + [1956] = {.lex_state = 0, .external_lex_state = 3}, + [1957] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 0, .external_lex_state = 3}, + [1959] = {.lex_state = 57, .external_lex_state = 3}, [1960] = {.lex_state = 57, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 57, .external_lex_state = 3}, + [1962] = {.lex_state = 7, .external_lex_state = 3}, [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 57, .external_lex_state = 3}, - [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 7, .external_lex_state = 3}, - [1967] = {.lex_state = 10, .external_lex_state = 3}, + [1964] = {.lex_state = 10, .external_lex_state = 3}, + [1965] = {.lex_state = 57, .external_lex_state = 3}, + [1966] = {.lex_state = 57, .external_lex_state = 3}, + [1967] = {.lex_state = 57, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 7, .external_lex_state = 3}, - [1970] = {.lex_state = 7, .external_lex_state = 3}, - [1971] = {.lex_state = 7, .external_lex_state = 3}, + [1969] = {.lex_state = 57, .external_lex_state = 3}, + [1970] = {.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 = 10, .external_lex_state = 3}, - [1974] = {.lex_state = 7, .external_lex_state = 3}, + [1973] = {.lex_state = 57, .external_lex_state = 3}, + [1974] = {.lex_state = 0, .external_lex_state = 3}, [1975] = {.lex_state = 57, .external_lex_state = 3}, - [1976] = {.lex_state = 10, .external_lex_state = 3}, - [1977] = {.lex_state = 0, .external_lex_state = 3}, + [1976] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 57, .external_lex_state = 3}, [1978] = {.lex_state = 57, .external_lex_state = 3}, [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 0, .external_lex_state = 3}, - [1981] = {.lex_state = 57, .external_lex_state = 3}, + [1980] = {.lex_state = 57, .external_lex_state = 3}, + [1981] = {.lex_state = 0, .external_lex_state = 3}, [1982] = {.lex_state = 0, .external_lex_state = 3}, - [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 0, .external_lex_state = 3}, - [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 57, .external_lex_state = 3}, - [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 0, .external_lex_state = 3}, + [1983] = {.lex_state = 57, .external_lex_state = 3}, + [1984] = {.lex_state = 7, .external_lex_state = 3}, + [1985] = {.lex_state = 7, .external_lex_state = 3}, + [1986] = {.lex_state = 0, .external_lex_state = 3}, + [1987] = {.lex_state = 7, .external_lex_state = 3}, + [1988] = {.lex_state = 7, .external_lex_state = 3}, + [1989] = {.lex_state = 57, .external_lex_state = 3}, [1990] = {.lex_state = 0, .external_lex_state = 3}, [1991] = {.lex_state = 0, .external_lex_state = 3}, [1992] = {.lex_state = 0, .external_lex_state = 3}, [1993] = {.lex_state = 0, .external_lex_state = 3}, - [1994] = {.lex_state = 7, .external_lex_state = 3}, + [1994] = {.lex_state = 57, .external_lex_state = 3}, [1995] = {.lex_state = 0, .external_lex_state = 3}, [1996] = {.lex_state = 0, .external_lex_state = 3}, [1997] = {.lex_state = 7, .external_lex_state = 3}, @@ -7620,413 +7638,416 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2003] = {.lex_state = 0, .external_lex_state = 3}, [2004] = {.lex_state = 0, .external_lex_state = 3}, [2005] = {.lex_state = 0, .external_lex_state = 3}, - [2006] = {.lex_state = 7, .external_lex_state = 3}, + [2006] = {.lex_state = 0, .external_lex_state = 3}, [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 4, .external_lex_state = 3}, + [2008] = {.lex_state = 7, .external_lex_state = 3}, [2009] = {.lex_state = 7, .external_lex_state = 3}, - [2010] = {.lex_state = 0, .external_lex_state = 3}, + [2010] = {.lex_state = 57, .external_lex_state = 3}, [2011] = {.lex_state = 0, .external_lex_state = 3}, - [2012] = {.lex_state = 0, .external_lex_state = 3}, + [2012] = {.lex_state = 57, .external_lex_state = 3}, [2013] = {.lex_state = 0, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, + [2014] = {.lex_state = 17, .external_lex_state = 3}, [2015] = {.lex_state = 0, .external_lex_state = 3}, [2016] = {.lex_state = 0, .external_lex_state = 3}, - [2017] = {.lex_state = 0, .external_lex_state = 3}, + [2017] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, [2022] = {.lex_state = 0, .external_lex_state = 3}, [2023] = {.lex_state = 0, .external_lex_state = 3}, - [2024] = {.lex_state = 7, .external_lex_state = 3}, - [2025] = {.lex_state = 7, .external_lex_state = 3}, + [2024] = {.lex_state = 0, .external_lex_state = 3}, + [2025] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2031] = {.lex_state = 57, .external_lex_state = 3}, + [2030] = {.lex_state = 7, .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}, - [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 0, .external_lex_state = 3}, + [2034] = {.lex_state = 57, .external_lex_state = 3}, + [2035] = {.lex_state = 7, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, - [2037] = {.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 = 0, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, [2041] = {.lex_state = 0, .external_lex_state = 3}, - [2042] = {.lex_state = 7, .external_lex_state = 3}, - [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 0, .external_lex_state = 3}, + [2042] = {.lex_state = 0, .external_lex_state = 3}, + [2043] = {.lex_state = 57, .external_lex_state = 3}, + [2044] = {.lex_state = 0, .external_lex_state = 5}, [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 57, .external_lex_state = 3}, - [2047] = {.lex_state = 0, .external_lex_state = 3}, + [2046] = {.lex_state = 0, .external_lex_state = 3}, + [2047] = {.lex_state = 7, .external_lex_state = 3}, [2048] = {.lex_state = 0, .external_lex_state = 3}, [2049] = {.lex_state = 57, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, [2051] = {.lex_state = 0, .external_lex_state = 3}, - [2052] = {.lex_state = 57, .external_lex_state = 3}, - [2053] = {.lex_state = 57, .external_lex_state = 3}, - [2054] = {.lex_state = 7, .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}, [2057] = {.lex_state = 57, .external_lex_state = 3}, - [2058] = {.lex_state = 0, .external_lex_state = 3}, + [2058] = {.lex_state = 7, .external_lex_state = 3}, [2059] = {.lex_state = 0, .external_lex_state = 3}, - [2060] = {.lex_state = 57, .external_lex_state = 3}, + [2060] = {.lex_state = 0, .external_lex_state = 3}, [2061] = {.lex_state = 0, .external_lex_state = 3}, - [2062] = {.lex_state = 57, .external_lex_state = 3}, + [2062] = {.lex_state = 7, .external_lex_state = 3}, [2063] = {.lex_state = 0, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 0, .external_lex_state = 3}, + [2065] = {.lex_state = 57, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, - [2067] = {.lex_state = 7, .external_lex_state = 3}, + [2067] = {.lex_state = 0, .external_lex_state = 3}, [2068] = {.lex_state = 0, .external_lex_state = 3}, [2069] = {.lex_state = 17, .external_lex_state = 3}, [2070] = {.lex_state = 0, .external_lex_state = 3}, [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 4, .external_lex_state = 3}, + [2072] = {.lex_state = 0, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, [2074] = {.lex_state = 0, .external_lex_state = 3}, [2075] = {.lex_state = 0, .external_lex_state = 3}, - [2076] = {.lex_state = 0, .external_lex_state = 3}, + [2076] = {.lex_state = 17, .external_lex_state = 3}, [2077] = {.lex_state = 0, .external_lex_state = 3}, - [2078] = {.lex_state = 57, .external_lex_state = 3}, - [2079] = {.lex_state = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 0, .external_lex_state = 3}, + [2078] = {.lex_state = 0, .external_lex_state = 3}, + [2079] = {.lex_state = 17, .external_lex_state = 3}, + [2080] = {.lex_state = 7, .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}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 57, .external_lex_state = 3}, + [2085] = {.lex_state = 7, .external_lex_state = 3}, [2086] = {.lex_state = 0, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 0, .external_lex_state = 5}, + [2088] = {.lex_state = 0, .external_lex_state = 3}, [2089] = {.lex_state = 0, .external_lex_state = 3}, [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 7, .external_lex_state = 3}, + [2091] = {.lex_state = 57, .external_lex_state = 3}, [2092] = {.lex_state = 0, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, [2094] = {.lex_state = 57, .external_lex_state = 3}, [2095] = {.lex_state = 0, .external_lex_state = 3}, [2096] = {.lex_state = 0, .external_lex_state = 3}, - [2097] = {.lex_state = 0, .external_lex_state = 3}, + [2097] = {.lex_state = 57, .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 = 7, .external_lex_state = 3}, - [2102] = {.lex_state = 57, .external_lex_state = 3}, - [2103] = {.lex_state = 17, .external_lex_state = 3}, - [2104] = {.lex_state = 57, .external_lex_state = 3}, + [2100] = {.lex_state = 4, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .external_lex_state = 3}, + [2102] = {.lex_state = 0, .external_lex_state = 3}, + [2103] = {.lex_state = 0, .external_lex_state = 3}, + [2104] = {.lex_state = 0, .external_lex_state = 3}, [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 0, .external_lex_state = 3}, - [2107] = {.lex_state = 0, .external_lex_state = 3}, + [2106] = {.lex_state = 10, .external_lex_state = 3}, + [2107] = {.lex_state = 17, .external_lex_state = 3}, [2108] = {.lex_state = 0, .external_lex_state = 3}, - [2109] = {.lex_state = 0, .external_lex_state = 3}, - [2110] = {.lex_state = 7, .external_lex_state = 3}, - [2111] = {.lex_state = 17, .external_lex_state = 3}, - [2112] = {.lex_state = 57, .external_lex_state = 3}, - [2113] = {.lex_state = 17, .external_lex_state = 3}, + [2109] = {.lex_state = 57, .external_lex_state = 3}, + [2110] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, [2115] = {.lex_state = 0, .external_lex_state = 3}, [2116] = {.lex_state = 0, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, - [2118] = {.lex_state = 7, .external_lex_state = 3}, - [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 17, .external_lex_state = 3}, + [2118] = {.lex_state = 0, .external_lex_state = 3}, + [2119] = {.lex_state = 4, .external_lex_state = 3}, + [2120] = {.lex_state = 0, .external_lex_state = 3}, [2121] = {.lex_state = 0, .external_lex_state = 3}, - [2122] = {.lex_state = 57, .external_lex_state = 3}, + [2122] = {.lex_state = 0, .external_lex_state = 3}, [2123] = {.lex_state = 0, .external_lex_state = 3}, [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 0, .external_lex_state = 3}, + [2125] = {.lex_state = 57, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, - [2127] = {.lex_state = 7, .external_lex_state = 3}, + [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 57, .external_lex_state = 3}, - [2132] = {.lex_state = 7, .external_lex_state = 3}, + [2130] = {.lex_state = 57, .external_lex_state = 3}, + [2131] = {.lex_state = 0, .external_lex_state = 3}, + [2132] = {.lex_state = 0, .external_lex_state = 3}, [2133] = {.lex_state = 0, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, - [2135] = {.lex_state = 57, .external_lex_state = 3}, - [2136] = {.lex_state = 10, .external_lex_state = 3}, + [2134] = {.lex_state = 7, .external_lex_state = 3}, + [2135] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 0, .external_lex_state = 3}, [2137] = {.lex_state = 0, .external_lex_state = 3}, [2138] = {.lex_state = 0, .external_lex_state = 3}, - [2139] = {.lex_state = 57, .external_lex_state = 3}, - [2140] = {.lex_state = 7, .external_lex_state = 3}, - [2141] = {.lex_state = 57, .external_lex_state = 3}, - [2142] = {.lex_state = 57, .external_lex_state = 3}, - [2143] = {.lex_state = 0, .external_lex_state = 3}, + [2139] = {.lex_state = 0, .external_lex_state = 3}, + [2140] = {.lex_state = 0, .external_lex_state = 3}, + [2141] = {.lex_state = 0, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 57, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, [2145] = {.lex_state = 0, .external_lex_state = 3}, - [2146] = {.lex_state = 0, .external_lex_state = 3}, + [2146] = {.lex_state = 7, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 0, .external_lex_state = 3}, - [2149] = {.lex_state = 57, .external_lex_state = 3}, - [2150] = {.lex_state = 7, .external_lex_state = 3}, + [2148] = {.lex_state = 57, .external_lex_state = 3}, + [2149] = {.lex_state = 0, .external_lex_state = 3}, + [2150] = {.lex_state = 0, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 0, .external_lex_state = 3}, + [2153] = {.lex_state = 7, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, - [2155] = {.lex_state = 7, .external_lex_state = 3}, - [2156] = {.lex_state = 57, .external_lex_state = 3}, - [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 0, .external_lex_state = 3}, + [2155] = {.lex_state = 57, .external_lex_state = 3}, + [2156] = {.lex_state = 0, .external_lex_state = 3}, + [2157] = {.lex_state = 57, .external_lex_state = 3}, + [2158] = {.lex_state = 57, .external_lex_state = 3}, [2159] = {.lex_state = 0, .external_lex_state = 3}, - [2160] = {.lex_state = 0, .external_lex_state = 3}, + [2160] = {.lex_state = 7, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, - [2162] = {.lex_state = 0, .external_lex_state = 3}, + [2162] = {.lex_state = 57, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, [2164] = {.lex_state = 0, .external_lex_state = 3}, - [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 7, .external_lex_state = 3}, - [2167] = {.lex_state = 7, .external_lex_state = 3}, + [2165] = {.lex_state = 7, .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}, [2170] = {.lex_state = 7, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 7, .external_lex_state = 3}, + [2172] = {.lex_state = 57, .external_lex_state = 3}, [2173] = {.lex_state = 7, .external_lex_state = 3}, - [2174] = {.lex_state = 10, .external_lex_state = 3}, - [2175] = {.lex_state = 0, .external_lex_state = 3}, + [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2175] = {.lex_state = 7, .external_lex_state = 3}, [2176] = {.lex_state = 7, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 7, .external_lex_state = 3}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, [2179] = {.lex_state = 0, .external_lex_state = 3}, [2180] = {.lex_state = 10, .external_lex_state = 3}, - [2181] = {.lex_state = 7, .external_lex_state = 3}, + [2181] = {.lex_state = 0, .external_lex_state = 3}, [2182] = {.lex_state = 7, .external_lex_state = 3}, - [2183] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, + [2185] = {.lex_state = 0, .external_lex_state = 3}, [2186] = {.lex_state = 7, .external_lex_state = 3}, - [2187] = {.lex_state = 7, .external_lex_state = 3}, - [2188] = {.lex_state = 0, .external_lex_state = 3}, + [2187] = {.lex_state = 0, .external_lex_state = 3}, + [2188] = {.lex_state = 7, .external_lex_state = 3}, [2189] = {.lex_state = 7, .external_lex_state = 3}, [2190] = {.lex_state = 7, .external_lex_state = 3}, - [2191] = {.lex_state = 10, .external_lex_state = 3}, - [2192] = {.lex_state = 0, .external_lex_state = 3}, + [2191] = {.lex_state = 7, .external_lex_state = 3}, + [2192] = {.lex_state = 7, .external_lex_state = 3}, [2193] = {.lex_state = 7, .external_lex_state = 3}, [2194] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [2200] = {.lex_state = 7, .external_lex_state = 3}, + [2197] = {.lex_state = 7, .external_lex_state = 3}, + [2198] = {.lex_state = 7, .external_lex_state = 3}, + [2199] = {.lex_state = 10, .external_lex_state = 3}, + [2200] = {.lex_state = 0, .external_lex_state = 3}, [2201] = {.lex_state = 0, .external_lex_state = 3}, [2202] = {.lex_state = 7, .external_lex_state = 3}, [2203] = {.lex_state = 7, .external_lex_state = 3}, - [2204] = {.lex_state = 0, .external_lex_state = 3}, - [2205] = {.lex_state = 0, .external_lex_state = 3}, + [2204] = {.lex_state = 7, .external_lex_state = 3}, + [2205] = {.lex_state = 7, .external_lex_state = 3}, [2206] = {.lex_state = 7, .external_lex_state = 3}, - [2207] = {.lex_state = 7, .external_lex_state = 3}, - [2208] = {.lex_state = 0, .external_lex_state = 3}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 10, .external_lex_state = 3}, - [2211] = {.lex_state = 7, .external_lex_state = 3}, - [2212] = {.lex_state = 7, .external_lex_state = 3}, + [2207] = {.lex_state = 0, .external_lex_state = 3}, + [2208] = {.lex_state = 7, .external_lex_state = 3}, + [2209] = {.lex_state = 7, .external_lex_state = 3}, + [2210] = {.lex_state = 0, .external_lex_state = 3}, + [2211] = {.lex_state = 0, .external_lex_state = 3}, + [2212] = {.lex_state = 0, .external_lex_state = 3}, [2213] = {.lex_state = 7, .external_lex_state = 3}, [2214] = {.lex_state = 7, .external_lex_state = 3}, - [2215] = {.lex_state = 10, .external_lex_state = 3}, - [2216] = {.lex_state = 57, .external_lex_state = 3}, + [2215] = {.lex_state = 7, .external_lex_state = 3}, + [2216] = {.lex_state = 7, .external_lex_state = 3}, [2217] = {.lex_state = 7, .external_lex_state = 3}, - [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 0, .external_lex_state = 3}, + [2218] = {.lex_state = 7, .external_lex_state = 3}, + [2219] = {.lex_state = 7, .external_lex_state = 3}, [2220] = {.lex_state = 7, .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 = 10, .external_lex_state = 3}, + [2222] = {.lex_state = 0, .external_lex_state = 3}, + [2223] = {.lex_state = 7, .external_lex_state = 3}, [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 0, .external_lex_state = 3}, + [2225] = {.lex_state = 7, .external_lex_state = 3}, [2226] = {.lex_state = 0, .external_lex_state = 3}, [2227] = {.lex_state = 0, .external_lex_state = 3}, [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 0, .external_lex_state = 3}, - [2230] = {.lex_state = 7, .external_lex_state = 3}, - [2231] = {.lex_state = 7, .external_lex_state = 3}, - [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 0, .external_lex_state = 3}, + [2229] = {.lex_state = 7, .external_lex_state = 3}, + [2230] = {.lex_state = 0, .external_lex_state = 3}, + [2231] = {.lex_state = 0, .external_lex_state = 3}, + [2232] = {.lex_state = 7, .external_lex_state = 3}, + [2233] = {.lex_state = 7, .external_lex_state = 3}, [2234] = {.lex_state = 7, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, [2236] = {.lex_state = 7, .external_lex_state = 3}, [2237] = {.lex_state = 7, .external_lex_state = 3}, - [2238] = {.lex_state = 7, .external_lex_state = 3}, + [2238] = {.lex_state = 0, .external_lex_state = 3}, [2239] = {.lex_state = 7, .external_lex_state = 3}, [2240] = {.lex_state = 7, .external_lex_state = 3}, [2241] = {.lex_state = 7, .external_lex_state = 3}, [2242] = {.lex_state = 7, .external_lex_state = 3}, [2243] = {.lex_state = 7, .external_lex_state = 3}, [2244] = {.lex_state = 7, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 3}, + [2245] = {.lex_state = 7, .external_lex_state = 3}, + [2246] = {.lex_state = 7, .external_lex_state = 3}, [2247] = {.lex_state = 7, .external_lex_state = 3}, [2248] = {.lex_state = 7, .external_lex_state = 3}, - [2249] = {.lex_state = 7, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 7, .external_lex_state = 3}, + [2249] = {.lex_state = 0, .external_lex_state = 3}, + [2250] = {.lex_state = 0, .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}, + [2253] = {.lex_state = 7, .external_lex_state = 3}, [2254] = {.lex_state = 0, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 7, .external_lex_state = 3}, - [2258] = {.lex_state = 7, .external_lex_state = 3}, - [2259] = {.lex_state = 10, .external_lex_state = 3}, - [2260] = {.lex_state = 7, .external_lex_state = 3}, + [2256] = {.lex_state = 0, .external_lex_state = 3}, + [2257] = {.lex_state = 0, .external_lex_state = 3}, + [2258] = {.lex_state = 0, .external_lex_state = 3}, + [2259] = {.lex_state = 7, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, [2261] = {.lex_state = 7, .external_lex_state = 3}, - [2262] = {.lex_state = 0, .external_lex_state = 3}, + [2262] = {.lex_state = 7, .external_lex_state = 3}, [2263] = {.lex_state = 7, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 0, .external_lex_state = 3}, + [2265] = {.lex_state = 7, .external_lex_state = 3}, [2266] = {.lex_state = 7, .external_lex_state = 3}, - [2267] = {.lex_state = 7, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, + [2267] = {.lex_state = 0, .external_lex_state = 3}, + [2268] = {.lex_state = 10, .external_lex_state = 3}, [2269] = {.lex_state = 7, .external_lex_state = 3}, [2270] = {.lex_state = 7, .external_lex_state = 3}, [2271] = {.lex_state = 0, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, [2273] = {.lex_state = 0, .external_lex_state = 3}, [2274] = {.lex_state = 7, .external_lex_state = 3}, - [2275] = {.lex_state = 10, .external_lex_state = 3}, - [2276] = {.lex_state = 0, .external_lex_state = 3}, - [2277] = {.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 = 7, .external_lex_state = 3}, - [2279] = {.lex_state = 7, .external_lex_state = 3}, + [2279] = {.lex_state = 0, .external_lex_state = 3}, [2280] = {.lex_state = 7, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 10, .external_lex_state = 3}, - [2283] = {.lex_state = 57, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, + [2285] = {.lex_state = 7, .external_lex_state = 3}, [2286] = {.lex_state = 7, .external_lex_state = 3}, [2287] = {.lex_state = 7, .external_lex_state = 3}, [2288] = {.lex_state = 0, .external_lex_state = 3}, - [2289] = {.lex_state = 7, .external_lex_state = 3}, + [2289] = {.lex_state = 0, .external_lex_state = 3}, [2290] = {.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 = 0, .external_lex_state = 3}, + [2293] = {.lex_state = 7, .external_lex_state = 3}, + [2294] = {.lex_state = 7, .external_lex_state = 3}, + [2295] = {.lex_state = 7, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, [2297] = {.lex_state = 0, .external_lex_state = 3}, - [2298] = {.lex_state = 0, .external_lex_state = 3}, - [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 10, .external_lex_state = 3}, + [2298] = {.lex_state = 10, .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 = 7, .external_lex_state = 3}, - [2304] = {.lex_state = 0, .external_lex_state = 3}, - [2305] = {.lex_state = 0, .external_lex_state = 3}, - [2306] = {.lex_state = 7, .external_lex_state = 3}, - [2307] = {.lex_state = 0, .external_lex_state = 3}, - [2308] = {.lex_state = 7, .external_lex_state = 3}, - [2309] = {.lex_state = 0, .external_lex_state = 3}, - [2310] = {.lex_state = 10, .external_lex_state = 3}, - [2311] = {.lex_state = 7, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 3}, + [2303] = {.lex_state = 0, .external_lex_state = 3}, + [2304] = {.lex_state = 10, .external_lex_state = 3}, + [2305] = {.lex_state = 57, .external_lex_state = 3}, + [2306] = {.lex_state = 0, .external_lex_state = 3}, + [2307] = {.lex_state = 7, .external_lex_state = 3}, + [2308] = {.lex_state = 0, .external_lex_state = 3}, + [2309] = {.lex_state = 7, .external_lex_state = 3}, + [2310] = {.lex_state = 0, .external_lex_state = 3}, + [2311] = {.lex_state = 0, .external_lex_state = 3}, + [2312] = {.lex_state = 0, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, [2314] = {.lex_state = 0, .external_lex_state = 3}, [2315] = {.lex_state = 7, .external_lex_state = 3}, - [2316] = {.lex_state = 7, .external_lex_state = 3}, + [2316] = {.lex_state = 10, .external_lex_state = 3}, [2317] = {.lex_state = 7, .external_lex_state = 3}, [2318] = {.lex_state = 0, .external_lex_state = 3}, [2319] = {.lex_state = 10, .external_lex_state = 3}, - [2320] = {.lex_state = 7, .external_lex_state = 3}, + [2320] = {.lex_state = 0, .external_lex_state = 3}, [2321] = {.lex_state = 0, .external_lex_state = 3}, - [2322] = {.lex_state = 0, .external_lex_state = 3}, - [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 0, .external_lex_state = 3}, + [2322] = {.lex_state = 7, .external_lex_state = 3}, + [2323] = {.lex_state = 57, .external_lex_state = 3}, + [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2325] = {.lex_state = 57, .external_lex_state = 3}, [2326] = {.lex_state = 0, .external_lex_state = 3}, - [2327] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [2332] = {.lex_state = 0, .external_lex_state = 3}, - [2333] = {.lex_state = 0, .external_lex_state = 3}, - [2334] = {.lex_state = 7, .external_lex_state = 3}, - [2335] = {.lex_state = 7, .external_lex_state = 3}, - [2336] = {.lex_state = 7, .external_lex_state = 3}, + [2330] = {.lex_state = 7, .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 = 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 = 57, .external_lex_state = 3}, - [2339] = {.lex_state = 0, .external_lex_state = 3}, - [2340] = {.lex_state = 0, .external_lex_state = 3}, + [2338] = {.lex_state = 7, .external_lex_state = 3}, + [2339] = {.lex_state = 7, .external_lex_state = 3}, + [2340] = {.lex_state = 7, .external_lex_state = 3}, [2341] = {.lex_state = 0, .external_lex_state = 3}, [2342] = {.lex_state = 0, .external_lex_state = 3}, [2343] = {.lex_state = 0, .external_lex_state = 3}, - [2344] = {.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 = 0, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, + [2347] = {.lex_state = 10, .external_lex_state = 3}, [2348] = {.lex_state = 0, .external_lex_state = 3}, [2349] = {.lex_state = 0, .external_lex_state = 3}, [2350] = {.lex_state = 7, .external_lex_state = 3}, - [2351] = {.lex_state = 10, .external_lex_state = 3}, + [2351] = {.lex_state = 0, .external_lex_state = 3}, [2352] = {.lex_state = 0, .external_lex_state = 3}, - [2353] = {.lex_state = 10, .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 = 0, .external_lex_state = 3}, - [2358] = {.lex_state = 10, .external_lex_state = 3}, + [2353] = {.lex_state = 0, .external_lex_state = 3}, + [2354] = {.lex_state = 10, .external_lex_state = 3}, + [2355] = {.lex_state = 0, .external_lex_state = 3}, + [2356] = {.lex_state = 10, .external_lex_state = 3}, + [2357] = {.lex_state = 7, .external_lex_state = 3}, + [2358] = {.lex_state = 7, .external_lex_state = 3}, [2359] = {.lex_state = 0, .external_lex_state = 3}, - [2360] = {.lex_state = 7, .external_lex_state = 3}, - [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 3}, + [2360] = {.lex_state = 0, .external_lex_state = 3}, + [2361] = {.lex_state = 10, .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 = 0, .external_lex_state = 3}, [2366] = {.lex_state = 0, .external_lex_state = 3}, [2367] = {.lex_state = 10, .external_lex_state = 3}, - [2368] = {.lex_state = 0, .external_lex_state = 3}, - [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 0, .external_lex_state = 3}, + [2368] = {.lex_state = 10, .external_lex_state = 3}, + [2369] = {.lex_state = 10, .external_lex_state = 3}, + [2370] = {.lex_state = 10, .external_lex_state = 3}, [2371] = {.lex_state = 0, .external_lex_state = 3}, [2372] = {.lex_state = 0, .external_lex_state = 3}, - [2373] = {.lex_state = 10, .external_lex_state = 3}, - [2374] = {.lex_state = 10, .external_lex_state = 3}, + [2373] = {.lex_state = 0, .external_lex_state = 3}, + [2374] = {.lex_state = 7, .external_lex_state = 3}, [2375] = {.lex_state = 0, .external_lex_state = 3}, [2376] = {.lex_state = 10, .external_lex_state = 3}, [2377] = {.lex_state = 0, .external_lex_state = 3}, [2378] = {.lex_state = 0, .external_lex_state = 3}, - [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2379] = {.lex_state = 10, .external_lex_state = 3}, [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 10, .external_lex_state = 3}, + [2381] = {.lex_state = 0, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 10, .external_lex_state = 3}, - [2385] = {.lex_state = 0, .external_lex_state = 3}, - [2386] = {.lex_state = 7, .external_lex_state = 3}, - [2387] = {.lex_state = 0, .external_lex_state = 3}, + [2384] = {.lex_state = 7, .external_lex_state = 3}, + [2385] = {.lex_state = 10, .external_lex_state = 3}, + [2386] = {.lex_state = 0, .external_lex_state = 3}, + [2387] = {.lex_state = 10, .external_lex_state = 3}, [2388] = {.lex_state = 0, .external_lex_state = 3}, [2389] = {.lex_state = 7, .external_lex_state = 3}, [2390] = {.lex_state = 0, .external_lex_state = 3}, [2391] = {.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}, + [2394] = {.lex_state = 0, .external_lex_state = 3}, [2395] = {.lex_state = 7, .external_lex_state = 3}, [2396] = {.lex_state = 0, .external_lex_state = 3}, [2397] = {.lex_state = 7, .external_lex_state = 3}, [2398] = {.lex_state = 0, .external_lex_state = 3}, [2399] = {.lex_state = 0, .external_lex_state = 3}, - [2400] = {.lex_state = 0, .external_lex_state = 3}, + [2400] = {.lex_state = 7, .external_lex_state = 3}, [2401] = {.lex_state = 7, .external_lex_state = 3}, [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 3}, - [2404] = {.lex_state = 10, .external_lex_state = 3}, + [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2404] = {.lex_state = 7, .external_lex_state = 3}, [2405] = {.lex_state = 7, .external_lex_state = 3}, [2406] = {.lex_state = 7, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, [2408] = {.lex_state = 7, .external_lex_state = 3}, [2409] = {.lex_state = 7, .external_lex_state = 3}, - [2410] = {.lex_state = 7, .external_lex_state = 3}, - [2411] = {.lex_state = 0, .external_lex_state = 3}, - [2412] = {.lex_state = 7, .external_lex_state = 3}, + [2410] = {.lex_state = 10, .external_lex_state = 3}, + [2411] = {.lex_state = 7, .external_lex_state = 3}, + [2412] = {.lex_state = 0, .external_lex_state = 3}, + [2413] = {.lex_state = 0, .external_lex_state = 3}, + [2414] = {.lex_state = 7, .external_lex_state = 3}, + [2415] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -8190,6 +8211,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_move] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), + [anon_sym_box] = ACTIONS(1), [sym_integer_literal] = ACTIONS(1), [aux_sym_string_literal_token1] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), @@ -8208,77 +8230,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2329), - [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1176), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1176), - [sym_unary_expression] = STATE(1176), - [sym_try_expression] = STATE(1176), - [sym_reference_expression] = STATE(1176), - [sym_binary_expression] = STATE(1176), - [sym_assignment_expression] = STATE(1176), - [sym_compound_assignment_expr] = STATE(1176), - [sym_type_cast_expression] = STATE(1176), - [sym_return_expression] = STATE(1176), - [sym_call_expression] = STATE(1176), - [sym_array_expression] = STATE(1176), - [sym_parenthesized_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1176), - [sym_unit_expression] = STATE(1176), - [sym_struct_expression] = STATE(1176), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1176), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1176), - [sym_continue_expression] = STATE(1176), - [sym_index_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1176), - [sym_string_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [sym_source_file] = STATE(2380), + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1194), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1194), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1194), + [sym_unary_expression] = STATE(1194), + [sym_try_expression] = STATE(1194), + [sym_reference_expression] = STATE(1194), + [sym_binary_expression] = STATE(1194), + [sym_assignment_expression] = STATE(1194), + [sym_compound_assignment_expr] = STATE(1194), + [sym_type_cast_expression] = STATE(1194), + [sym_return_expression] = STATE(1194), + [sym_call_expression] = STATE(1194), + [sym_array_expression] = STATE(1194), + [sym_parenthesized_expression] = STATE(1194), + [sym_tuple_expression] = STATE(1194), + [sym_unit_expression] = STATE(1194), + [sym_struct_expression] = STATE(1194), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1194), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1194), + [sym_continue_expression] = STATE(1194), + [sym_index_expression] = STATE(1194), + [sym_await_expression] = STATE(1194), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1194), + [sym_string_literal] = STATE(1194), + [sym_boolean_literal] = STATE(1194), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -8354,227 +8376,82 @@ static 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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1176), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(60), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1176), - [sym_unary_expression] = STATE(1176), - [sym_try_expression] = STATE(1176), - [sym_reference_expression] = STATE(1176), - [sym_binary_expression] = STATE(1176), - [sym_assignment_expression] = STATE(1176), - [sym_compound_assignment_expr] = STATE(1176), - [sym_type_cast_expression] = STATE(1176), - [sym_return_expression] = STATE(1176), - [sym_call_expression] = STATE(1176), - [sym_array_expression] = STATE(1176), - [sym_parenthesized_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1176), - [sym_unit_expression] = STATE(1176), - [sym_struct_expression] = STATE(1176), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1176), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1176), - [sym_continue_expression] = STATE(1176), - [sym_index_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1176), - [sym_string_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(103), - [anon_sym_SEMI] = ACTIONS(106), - [anon_sym_macro_rules_BANG] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(112), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_u8] = ACTIONS(126), - [anon_sym_i8] = ACTIONS(126), - [anon_sym_u16] = ACTIONS(126), - [anon_sym_i16] = ACTIONS(126), - [anon_sym_u32] = ACTIONS(126), - [anon_sym_i32] = ACTIONS(126), - [anon_sym_u64] = ACTIONS(126), - [anon_sym_i64] = ACTIONS(126), - [anon_sym_u128] = ACTIONS(126), - [anon_sym_i128] = ACTIONS(126), - [anon_sym_isize] = ACTIONS(126), - [anon_sym_usize] = ACTIONS(126), - [anon_sym_f32] = ACTIONS(126), - [anon_sym_f64] = ACTIONS(126), - [anon_sym_bool] = ACTIONS(126), - [anon_sym_str] = ACTIONS(126), - [anon_sym_char] = ACTIONS(126), - [anon_sym_SQUOTE] = ACTIONS(129), - [anon_sym_async] = ACTIONS(132), - [anon_sym_break] = ACTIONS(135), - [anon_sym_const] = ACTIONS(138), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_default] = ACTIONS(144), - [anon_sym_enum] = ACTIONS(147), - [anon_sym_fn] = ACTIONS(150), - [anon_sym_for] = ACTIONS(153), - [anon_sym_if] = ACTIONS(156), - [anon_sym_impl] = ACTIONS(159), - [anon_sym_let] = ACTIONS(162), - [anon_sym_loop] = ACTIONS(165), - [anon_sym_match] = ACTIONS(168), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_pub] = ACTIONS(174), - [anon_sym_return] = ACTIONS(177), - [anon_sym_static] = ACTIONS(180), - [anon_sym_struct] = ACTIONS(183), - [anon_sym_trait] = ACTIONS(186), - [anon_sym_type] = ACTIONS(189), - [anon_sym_union] = ACTIONS(192), - [anon_sym_unsafe] = ACTIONS(195), - [anon_sym_use] = ACTIONS(198), - [anon_sym_while] = ACTIONS(201), - [anon_sym_POUND] = ACTIONS(204), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(210), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(216), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(222), - [anon_sym_move] = ACTIONS(225), - [sym_integer_literal] = ACTIONS(228), - [aux_sym_string_literal_token1] = ACTIONS(231), - [sym_char_literal] = ACTIONS(228), - [anon_sym_true] = ACTIONS(234), - [anon_sym_false] = ACTIONS(234), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(237), - [sym_super] = ACTIONS(240), - [sym_crate] = ACTIONS(243), - [sym_metavariable] = ACTIONS(246), - [sym_raw_string_literal] = ACTIONS(228), - [sym_float_literal] = ACTIONS(228), - [sym_block_comment] = ACTIONS(3), - }, - [3] = { - [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1115), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1115), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1115), - [sym_unary_expression] = STATE(1115), - [sym_try_expression] = STATE(1115), - [sym_reference_expression] = STATE(1115), - [sym_binary_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1115), - [sym_compound_assignment_expr] = STATE(1115), - [sym_type_cast_expression] = STATE(1115), - [sym_return_expression] = STATE(1115), - [sym_call_expression] = STATE(1115), - [sym_array_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(1115), - [sym_tuple_expression] = STATE(1115), - [sym_unit_expression] = STATE(1115), - [sym_struct_expression] = STATE(1115), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1115), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1115), - [sym_continue_expression] = STATE(1115), - [sym_index_expression] = STATE(1115), - [sym_await_expression] = STATE(1115), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1115), - [sym_string_literal] = STATE(1115), - [sym_boolean_literal] = STATE(1115), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1138), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1138), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1138), + [sym_unary_expression] = STATE(1138), + [sym_try_expression] = STATE(1138), + [sym_reference_expression] = STATE(1138), + [sym_binary_expression] = STATE(1138), + [sym_assignment_expression] = STATE(1138), + [sym_compound_assignment_expr] = STATE(1138), + [sym_type_cast_expression] = STATE(1138), + [sym_return_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_array_expression] = STATE(1138), + [sym_parenthesized_expression] = STATE(1138), + [sym_tuple_expression] = STATE(1138), + [sym_unit_expression] = STATE(1138), + [sym_struct_expression] = STATE(1138), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1138), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1138), + [sym_continue_expression] = STATE(1138), + [sym_index_expression] = STATE(1138), + [sym_await_expression] = STATE(1138), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1138), + [sym_string_literal] = STATE(1138), + [sym_boolean_literal] = STATE(1138), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [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(249), + [anon_sym_RBRACE] = ACTIONS(103), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -8629,9 +8506,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(251), + [sym_integer_literal] = ACTIONS(105), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(251), + [sym_char_literal] = ACTIONS(105), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -8639,87 +8516,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(99), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(251), - [sym_float_literal] = ACTIONS(251), + [sym_raw_string_literal] = ACTIONS(105), + [sym_float_literal] = ACTIONS(105), [sym_block_comment] = ACTIONS(3), }, - [4] = { - [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1110), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1110), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1110), - [sym_unary_expression] = STATE(1110), - [sym_try_expression] = STATE(1110), - [sym_reference_expression] = STATE(1110), - [sym_binary_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1110), - [sym_compound_assignment_expr] = STATE(1110), - [sym_type_cast_expression] = STATE(1110), - [sym_return_expression] = STATE(1110), - [sym_call_expression] = STATE(1110), - [sym_array_expression] = STATE(1110), - [sym_parenthesized_expression] = STATE(1110), - [sym_tuple_expression] = STATE(1110), - [sym_unit_expression] = STATE(1110), - [sym_struct_expression] = STATE(1110), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1110), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1110), - [sym_continue_expression] = STATE(1110), - [sym_index_expression] = STATE(1110), - [sym_await_expression] = STATE(1110), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1110), - [sym_string_literal] = STATE(1110), - [sym_boolean_literal] = STATE(1110), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [3] = { + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1107), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1107), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1107), + [sym_boolean_literal] = STATE(1107), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [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(253), + [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -8774,9 +8651,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(255), + [sym_integer_literal] = ACTIONS(109), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(255), + [sym_char_literal] = ACTIONS(109), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -8784,87 +8661,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(99), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(255), - [sym_float_literal] = ACTIONS(255), + [sym_raw_string_literal] = ACTIONS(109), + [sym_float_literal] = ACTIONS(109), [sym_block_comment] = ACTIONS(3), }, - [5] = { - [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1117), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1117), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1117), - [sym_unary_expression] = STATE(1117), - [sym_try_expression] = STATE(1117), - [sym_reference_expression] = STATE(1117), - [sym_binary_expression] = STATE(1117), - [sym_assignment_expression] = STATE(1117), - [sym_compound_assignment_expr] = STATE(1117), - [sym_type_cast_expression] = STATE(1117), - [sym_return_expression] = STATE(1117), - [sym_call_expression] = STATE(1117), - [sym_array_expression] = STATE(1117), - [sym_parenthesized_expression] = STATE(1117), - [sym_tuple_expression] = STATE(1117), - [sym_unit_expression] = STATE(1117), - [sym_struct_expression] = STATE(1117), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1117), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1117), - [sym_continue_expression] = STATE(1117), - [sym_index_expression] = STATE(1117), - [sym_await_expression] = STATE(1117), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1117), - [sym_string_literal] = STATE(1117), - [sym_boolean_literal] = STATE(1117), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [4] = { + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1194), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1194), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1194), + [sym_unary_expression] = STATE(1194), + [sym_try_expression] = STATE(1194), + [sym_reference_expression] = STATE(1194), + [sym_binary_expression] = STATE(1194), + [sym_assignment_expression] = STATE(1194), + [sym_compound_assignment_expr] = STATE(1194), + [sym_type_cast_expression] = STATE(1194), + [sym_return_expression] = STATE(1194), + [sym_call_expression] = STATE(1194), + [sym_array_expression] = STATE(1194), + [sym_parenthesized_expression] = STATE(1194), + [sym_tuple_expression] = STATE(1194), + [sym_unit_expression] = STATE(1194), + [sym_struct_expression] = STATE(1194), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1194), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1194), + [sym_continue_expression] = STATE(1194), + [sym_index_expression] = STATE(1194), + [sym_await_expression] = STATE(1194), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1194), + [sym_string_literal] = STATE(1194), + [sym_boolean_literal] = STATE(1194), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [ts_builtin_sym_end] = ACTIONS(111), [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(257), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -8919,9 +8796,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(259), + [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(259), + [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -8929,87 +8806,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(99), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(259), - [sym_float_literal] = ACTIONS(259), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1141), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1141), - [sym_unary_expression] = STATE(1141), - [sym_try_expression] = STATE(1141), - [sym_reference_expression] = STATE(1141), - [sym_binary_expression] = STATE(1141), - [sym_assignment_expression] = STATE(1141), - [sym_compound_assignment_expr] = STATE(1141), - [sym_type_cast_expression] = STATE(1141), - [sym_return_expression] = STATE(1141), - [sym_call_expression] = STATE(1141), - [sym_array_expression] = STATE(1141), - [sym_parenthesized_expression] = STATE(1141), - [sym_tuple_expression] = STATE(1141), - [sym_unit_expression] = STATE(1141), - [sym_struct_expression] = STATE(1141), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1141), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1141), - [sym_continue_expression] = STATE(1141), - [sym_index_expression] = STATE(1141), - [sym_await_expression] = STATE(1141), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1141), - [sym_string_literal] = STATE(1141), - [sym_boolean_literal] = STATE(1141), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [5] = { + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1116), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1116), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1116), + [sym_unary_expression] = STATE(1116), + [sym_try_expression] = STATE(1116), + [sym_reference_expression] = STATE(1116), + [sym_binary_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1116), + [sym_compound_assignment_expr] = STATE(1116), + [sym_type_cast_expression] = STATE(1116), + [sym_return_expression] = STATE(1116), + [sym_call_expression] = STATE(1116), + [sym_array_expression] = STATE(1116), + [sym_parenthesized_expression] = STATE(1116), + [sym_tuple_expression] = STATE(1116), + [sym_unit_expression] = STATE(1116), + [sym_struct_expression] = STATE(1116), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1116), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1116), + [sym_continue_expression] = STATE(1116), + [sym_index_expression] = STATE(1116), + [sym_await_expression] = STATE(1116), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1116), + [sym_string_literal] = STATE(1116), + [sym_boolean_literal] = STATE(1116), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [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(261), + [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -9064,9 +8941,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(263), + [sym_integer_literal] = ACTIONS(115), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(263), + [sym_char_literal] = ACTIONS(115), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -9074,87 +8951,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(99), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(263), - [sym_float_literal] = ACTIONS(263), + [sym_raw_string_literal] = ACTIONS(115), + [sym_float_literal] = ACTIONS(115), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1176), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1176), - [sym_unary_expression] = STATE(1176), - [sym_try_expression] = STATE(1176), - [sym_reference_expression] = STATE(1176), - [sym_binary_expression] = STATE(1176), - [sym_assignment_expression] = STATE(1176), - [sym_compound_assignment_expr] = STATE(1176), - [sym_type_cast_expression] = STATE(1176), - [sym_return_expression] = STATE(1176), - [sym_call_expression] = STATE(1176), - [sym_array_expression] = STATE(1176), - [sym_parenthesized_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1176), - [sym_unit_expression] = STATE(1176), - [sym_struct_expression] = STATE(1176), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1176), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1176), - [sym_continue_expression] = STATE(1176), - [sym_index_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1176), - [sym_string_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(265), + [6] = { + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym__expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2374), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1126), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1126), + [sym_unary_expression] = STATE(1126), + [sym_try_expression] = STATE(1126), + [sym_reference_expression] = STATE(1126), + [sym_binary_expression] = STATE(1126), + [sym_assignment_expression] = STATE(1126), + [sym_compound_assignment_expr] = STATE(1126), + [sym_type_cast_expression] = STATE(1126), + [sym_return_expression] = STATE(1126), + [sym_call_expression] = STATE(1126), + [sym_array_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_tuple_expression] = STATE(1126), + [sym_unit_expression] = STATE(1126), + [sym_struct_expression] = STATE(1126), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1126), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1126), + [sym_continue_expression] = STATE(1126), + [sym_index_expression] = STATE(1126), + [sym_await_expression] = STATE(1126), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1126), + [sym_string_literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [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(117), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -9209,9 +9086,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(119), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), + [sym_char_literal] = ACTIONS(119), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -9219,11 +9096,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(99), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym_raw_string_literal] = ACTIONS(119), + [sym_float_literal] = ACTIONS(119), [sym_block_comment] = ACTIONS(3), }, - [8] = { + [7] = { [sym__statement] = STATE(2), [sym_empty_statement] = STATE(2), [sym__expression_statement] = STATE(2), @@ -9241,65 +9118,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(2), [sym_function_item] = STATE(2), [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2327), + [sym_function_modifiers] = STATE(2374), [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1103), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1103), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1103), - [sym_unary_expression] = STATE(1103), - [sym_try_expression] = STATE(1103), - [sym_reference_expression] = STATE(1103), - [sym_binary_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1103), - [sym_compound_assignment_expr] = STATE(1103), - [sym_type_cast_expression] = STATE(1103), - [sym_return_expression] = STATE(1103), - [sym_call_expression] = STATE(1103), - [sym_array_expression] = STATE(1103), - [sym_parenthesized_expression] = STATE(1103), - [sym_tuple_expression] = STATE(1103), - [sym_unit_expression] = STATE(1103), - [sym_struct_expression] = STATE(1103), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1103), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1103), - [sym_continue_expression] = STATE(1103), - [sym_index_expression] = STATE(1103), - [sym_await_expression] = STATE(1103), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1103), - [sym_string_literal] = STATE(1103), - [sym_boolean_literal] = STATE(1103), + [sym_extern_modifier] = STATE(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1133), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1133), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1133), + [sym_unary_expression] = STATE(1133), + [sym_try_expression] = STATE(1133), + [sym_reference_expression] = STATE(1133), + [sym_binary_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1133), + [sym_compound_assignment_expr] = STATE(1133), + [sym_type_cast_expression] = STATE(1133), + [sym_return_expression] = STATE(1133), + [sym_call_expression] = STATE(1133), + [sym_array_expression] = STATE(1133), + [sym_parenthesized_expression] = STATE(1133), + [sym_tuple_expression] = STATE(1133), + [sym_unit_expression] = STATE(1133), + [sym_struct_expression] = STATE(1133), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1133), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1133), + [sym_continue_expression] = STATE(1133), + [sym_index_expression] = STATE(1133), + [sym_await_expression] = STATE(1133), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1133), + [sym_string_literal] = STATE(1133), + [sym_boolean_literal] = STATE(1133), [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [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(267), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -9354,9 +9231,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(269), + [sym_integer_literal] = ACTIONS(123), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(269), + [sym_char_literal] = ACTIONS(123), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -9364,87 +9241,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(99), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(269), - [sym_float_literal] = ACTIONS(269), + [sym_raw_string_literal] = ACTIONS(123), + [sym_float_literal] = ACTIONS(123), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1140), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1140), - [sym_unary_expression] = STATE(1140), - [sym_try_expression] = STATE(1140), - [sym_reference_expression] = STATE(1140), - [sym_binary_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1140), - [sym_compound_assignment_expr] = STATE(1140), - [sym_type_cast_expression] = STATE(1140), - [sym_return_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_array_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1140), - [sym_unit_expression] = STATE(1140), - [sym_struct_expression] = STATE(1140), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1140), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1140), - [sym_continue_expression] = STATE(1140), - [sym_index_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1140), - [sym_string_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [8] = { + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1113), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1113), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1113), + [sym_unary_expression] = STATE(1113), + [sym_try_expression] = STATE(1113), + [sym_reference_expression] = STATE(1113), + [sym_binary_expression] = STATE(1113), + [sym_assignment_expression] = STATE(1113), + [sym_compound_assignment_expr] = STATE(1113), + [sym_type_cast_expression] = STATE(1113), + [sym_return_expression] = STATE(1113), + [sym_call_expression] = STATE(1113), + [sym_array_expression] = STATE(1113), + [sym_parenthesized_expression] = STATE(1113), + [sym_tuple_expression] = STATE(1113), + [sym_unit_expression] = STATE(1113), + [sym_struct_expression] = STATE(1113), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1113), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1113), + [sym_continue_expression] = STATE(1113), + [sym_index_expression] = STATE(1113), + [sym_await_expression] = STATE(1113), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1113), + [sym_string_literal] = STATE(1113), + [sym_boolean_literal] = STATE(1113), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [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(271), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -9499,9 +9376,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(127), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(273), + [sym_char_literal] = ACTIONS(127), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -9509,232 +9386,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(99), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(273), - [sym_float_literal] = ACTIONS(273), - [sym_block_comment] = ACTIONS(3), - }, - [10] = { - [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1176), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1176), - [sym_unary_expression] = STATE(1176), - [sym_try_expression] = STATE(1176), - [sym_reference_expression] = STATE(1176), - [sym_binary_expression] = STATE(1176), - [sym_assignment_expression] = STATE(1176), - [sym_compound_assignment_expr] = STATE(1176), - [sym_type_cast_expression] = STATE(1176), - [sym_return_expression] = STATE(1176), - [sym_call_expression] = STATE(1176), - [sym_array_expression] = STATE(1176), - [sym_parenthesized_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1176), - [sym_unit_expression] = STATE(1176), - [sym_struct_expression] = STATE(1176), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1176), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1176), - [sym_continue_expression] = STATE(1176), - [sym_index_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1176), - [sym_string_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(118), - [sym_identifier] = ACTIONS(103), - [anon_sym_SEMI] = ACTIONS(106), - [anon_sym_macro_rules_BANG] = ACTIONS(109), - [anon_sym_LPAREN] = ACTIONS(112), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_u8] = ACTIONS(126), - [anon_sym_i8] = ACTIONS(126), - [anon_sym_u16] = ACTIONS(126), - [anon_sym_i16] = ACTIONS(126), - [anon_sym_u32] = ACTIONS(126), - [anon_sym_i32] = ACTIONS(126), - [anon_sym_u64] = ACTIONS(126), - [anon_sym_i64] = ACTIONS(126), - [anon_sym_u128] = ACTIONS(126), - [anon_sym_i128] = ACTIONS(126), - [anon_sym_isize] = ACTIONS(126), - [anon_sym_usize] = ACTIONS(126), - [anon_sym_f32] = ACTIONS(126), - [anon_sym_f64] = ACTIONS(126), - [anon_sym_bool] = ACTIONS(126), - [anon_sym_str] = ACTIONS(126), - [anon_sym_char] = ACTIONS(126), - [anon_sym_SQUOTE] = ACTIONS(129), - [anon_sym_async] = ACTIONS(132), - [anon_sym_break] = ACTIONS(135), - [anon_sym_const] = ACTIONS(138), - [anon_sym_continue] = ACTIONS(141), - [anon_sym_default] = ACTIONS(144), - [anon_sym_enum] = ACTIONS(147), - [anon_sym_fn] = ACTIONS(150), - [anon_sym_for] = ACTIONS(153), - [anon_sym_if] = ACTIONS(156), - [anon_sym_impl] = ACTIONS(159), - [anon_sym_let] = ACTIONS(162), - [anon_sym_loop] = ACTIONS(165), - [anon_sym_match] = ACTIONS(168), - [anon_sym_mod] = ACTIONS(171), - [anon_sym_pub] = ACTIONS(174), - [anon_sym_return] = ACTIONS(177), - [anon_sym_static] = ACTIONS(180), - [anon_sym_struct] = ACTIONS(183), - [anon_sym_trait] = ACTIONS(186), - [anon_sym_type] = ACTIONS(189), - [anon_sym_union] = ACTIONS(192), - [anon_sym_unsafe] = ACTIONS(195), - [anon_sym_use] = ACTIONS(198), - [anon_sym_while] = ACTIONS(201), - [anon_sym_POUND] = ACTIONS(204), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_extern] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(210), - [anon_sym_COLON_COLON] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(216), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(222), - [anon_sym_move] = ACTIONS(225), - [sym_integer_literal] = ACTIONS(228), - [aux_sym_string_literal_token1] = ACTIONS(231), - [sym_char_literal] = ACTIONS(228), - [anon_sym_true] = ACTIONS(234), - [anon_sym_false] = ACTIONS(234), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(237), - [sym_super] = ACTIONS(240), - [sym_crate] = ACTIONS(243), - [sym_metavariable] = ACTIONS(246), - [sym_raw_string_literal] = ACTIONS(228), - [sym_float_literal] = ACTIONS(228), + [sym_raw_string_literal] = ACTIONS(127), + [sym_float_literal] = ACTIONS(127), [sym_block_comment] = ACTIONS(3), }, - [11] = { - [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1130), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1130), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1130), - [sym_unary_expression] = STATE(1130), - [sym_try_expression] = STATE(1130), - [sym_reference_expression] = STATE(1130), - [sym_binary_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1130), - [sym_compound_assignment_expr] = STATE(1130), - [sym_type_cast_expression] = STATE(1130), - [sym_return_expression] = STATE(1130), - [sym_call_expression] = STATE(1130), - [sym_array_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_tuple_expression] = STATE(1130), - [sym_unit_expression] = STATE(1130), - [sym_struct_expression] = STATE(1130), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1130), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1130), - [sym_continue_expression] = STATE(1130), - [sym_index_expression] = STATE(1130), - [sym_await_expression] = STATE(1130), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1130), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [9] = { + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1127), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1127), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1127), + [sym_unary_expression] = STATE(1127), + [sym_try_expression] = STATE(1127), + [sym_reference_expression] = STATE(1127), + [sym_binary_expression] = STATE(1127), + [sym_assignment_expression] = STATE(1127), + [sym_compound_assignment_expr] = STATE(1127), + [sym_type_cast_expression] = STATE(1127), + [sym_return_expression] = STATE(1127), + [sym_call_expression] = STATE(1127), + [sym_array_expression] = STATE(1127), + [sym_parenthesized_expression] = STATE(1127), + [sym_tuple_expression] = STATE(1127), + [sym_unit_expression] = STATE(1127), + [sym_struct_expression] = STATE(1127), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1127), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1127), + [sym_continue_expression] = STATE(1127), + [sym_index_expression] = STATE(1127), + [sym_await_expression] = STATE(1127), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1127), + [sym_string_literal] = STATE(1127), + [sym_boolean_literal] = STATE(1127), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [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(275), + [anon_sym_RBRACE] = ACTIONS(129), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -9789,9 +9521,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(277), + [sym_integer_literal] = ACTIONS(131), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(277), + [sym_char_literal] = ACTIONS(131), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -9799,87 +9531,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(99), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(277), - [sym_float_literal] = ACTIONS(277), + [sym_raw_string_literal] = ACTIONS(131), + [sym_float_literal] = ACTIONS(131), [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1136), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1136), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1136), - [sym_unary_expression] = STATE(1136), - [sym_try_expression] = STATE(1136), - [sym_reference_expression] = STATE(1136), - [sym_binary_expression] = STATE(1136), - [sym_assignment_expression] = STATE(1136), - [sym_compound_assignment_expr] = STATE(1136), - [sym_type_cast_expression] = STATE(1136), - [sym_return_expression] = STATE(1136), - [sym_call_expression] = STATE(1136), - [sym_array_expression] = STATE(1136), - [sym_parenthesized_expression] = STATE(1136), - [sym_tuple_expression] = STATE(1136), - [sym_unit_expression] = STATE(1136), - [sym_struct_expression] = STATE(1136), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1136), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1136), - [sym_continue_expression] = STATE(1136), - [sym_index_expression] = STATE(1136), - [sym_await_expression] = STATE(1136), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1136), - [sym_string_literal] = STATE(1136), - [sym_boolean_literal] = STATE(1136), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [10] = { + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1110), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1110), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1110), + [sym_unary_expression] = STATE(1110), + [sym_try_expression] = STATE(1110), + [sym_reference_expression] = STATE(1110), + [sym_binary_expression] = STATE(1110), + [sym_assignment_expression] = STATE(1110), + [sym_compound_assignment_expr] = STATE(1110), + [sym_type_cast_expression] = STATE(1110), + [sym_return_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_array_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_tuple_expression] = STATE(1110), + [sym_unit_expression] = STATE(1110), + [sym_struct_expression] = STATE(1110), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1110), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1110), + [sym_continue_expression] = STATE(1110), + [sym_index_expression] = STATE(1110), + [sym_await_expression] = STATE(1110), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1110), + [sym_string_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [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(279), + [anon_sym_RBRACE] = ACTIONS(133), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -9934,9 +9666,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(135), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(281), + [sym_char_literal] = ACTIONS(135), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -9944,81 +9676,226 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(99), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(281), - [sym_float_literal] = ACTIONS(281), + [sym_raw_string_literal] = ACTIONS(135), + [sym_float_literal] = ACTIONS(135), [sym_block_comment] = ACTIONS(3), }, - [13] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym__expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2327), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1139), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1139), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1139), - [sym_unary_expression] = STATE(1139), - [sym_try_expression] = STATE(1139), - [sym_reference_expression] = STATE(1139), - [sym_binary_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1139), - [sym_compound_assignment_expr] = STATE(1139), - [sym_type_cast_expression] = STATE(1139), - [sym_return_expression] = STATE(1139), - [sym_call_expression] = STATE(1139), - [sym_array_expression] = STATE(1139), - [sym_parenthesized_expression] = STATE(1139), - [sym_tuple_expression] = STATE(1139), - [sym_unit_expression] = STATE(1139), - [sym_struct_expression] = STATE(1139), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1139), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1139), - [sym_continue_expression] = STATE(1139), - [sym_index_expression] = STATE(1139), - [sym_await_expression] = STATE(1139), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1139), - [sym_string_literal] = STATE(1139), - [sym_boolean_literal] = STATE(1139), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [11] = { + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1194), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1194), + [sym_macro_invocation] = STATE(62), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1194), + [sym_unary_expression] = STATE(1194), + [sym_try_expression] = STATE(1194), + [sym_reference_expression] = STATE(1194), + [sym_binary_expression] = STATE(1194), + [sym_assignment_expression] = STATE(1194), + [sym_compound_assignment_expr] = STATE(1194), + [sym_type_cast_expression] = STATE(1194), + [sym_return_expression] = STATE(1194), + [sym_call_expression] = STATE(1194), + [sym_array_expression] = STATE(1194), + [sym_parenthesized_expression] = STATE(1194), + [sym_tuple_expression] = STATE(1194), + [sym_unit_expression] = STATE(1194), + [sym_struct_expression] = STATE(1194), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1194), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1194), + [sym_continue_expression] = STATE(1194), + [sym_index_expression] = STATE(1194), + [sym_await_expression] = STATE(1194), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1194), + [sym_string_literal] = STATE(1194), + [sym_boolean_literal] = STATE(1194), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(140), + [anon_sym_macro_rules_BANG] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(152), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_u8] = ACTIONS(160), + [anon_sym_i8] = ACTIONS(160), + [anon_sym_u16] = ACTIONS(160), + [anon_sym_i16] = ACTIONS(160), + [anon_sym_u32] = ACTIONS(160), + [anon_sym_i32] = ACTIONS(160), + [anon_sym_u64] = ACTIONS(160), + [anon_sym_i64] = ACTIONS(160), + [anon_sym_u128] = ACTIONS(160), + [anon_sym_i128] = ACTIONS(160), + [anon_sym_isize] = ACTIONS(160), + [anon_sym_usize] = ACTIONS(160), + [anon_sym_f32] = ACTIONS(160), + [anon_sym_f64] = ACTIONS(160), + [anon_sym_bool] = ACTIONS(160), + [anon_sym_str] = ACTIONS(160), + [anon_sym_char] = ACTIONS(160), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_async] = ACTIONS(166), + [anon_sym_break] = ACTIONS(169), + [anon_sym_const] = ACTIONS(172), + [anon_sym_continue] = ACTIONS(175), + [anon_sym_default] = ACTIONS(178), + [anon_sym_enum] = ACTIONS(181), + [anon_sym_fn] = ACTIONS(184), + [anon_sym_for] = ACTIONS(187), + [anon_sym_if] = ACTIONS(190), + [anon_sym_impl] = ACTIONS(193), + [anon_sym_let] = ACTIONS(196), + [anon_sym_loop] = ACTIONS(199), + [anon_sym_match] = ACTIONS(202), + [anon_sym_mod] = ACTIONS(205), + [anon_sym_pub] = ACTIONS(208), + [anon_sym_return] = ACTIONS(211), + [anon_sym_static] = ACTIONS(214), + [anon_sym_struct] = ACTIONS(217), + [anon_sym_trait] = ACTIONS(220), + [anon_sym_type] = ACTIONS(223), + [anon_sym_union] = ACTIONS(226), + [anon_sym_unsafe] = ACTIONS(229), + [anon_sym_use] = ACTIONS(232), + [anon_sym_while] = ACTIONS(235), + [anon_sym_POUND] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_extern] = ACTIONS(241), + [anon_sym_LT] = ACTIONS(244), + [anon_sym_COLON_COLON] = ACTIONS(247), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_DOT_DOT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(256), + [anon_sym_move] = ACTIONS(259), + [sym_integer_literal] = ACTIONS(262), + [aux_sym_string_literal_token1] = ACTIONS(265), + [sym_char_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(268), + [anon_sym_false] = ACTIONS(268), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(271), + [sym_super] = ACTIONS(274), + [sym_crate] = ACTIONS(277), + [sym_metavariable] = ACTIONS(280), + [sym_raw_string_literal] = ACTIONS(262), + [sym_float_literal] = ACTIONS(262), + [sym_block_comment] = ACTIONS(3), + }, + [12] = { + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1109), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1109), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1109), + [sym_unary_expression] = STATE(1109), + [sym_try_expression] = STATE(1109), + [sym_reference_expression] = STATE(1109), + [sym_binary_expression] = STATE(1109), + [sym_assignment_expression] = STATE(1109), + [sym_compound_assignment_expr] = STATE(1109), + [sym_type_cast_expression] = STATE(1109), + [sym_return_expression] = STATE(1109), + [sym_call_expression] = STATE(1109), + [sym_array_expression] = STATE(1109), + [sym_parenthesized_expression] = STATE(1109), + [sym_tuple_expression] = STATE(1109), + [sym_unit_expression] = STATE(1109), + [sym_struct_expression] = STATE(1109), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1109), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1109), + [sym_continue_expression] = STATE(1109), + [sym_index_expression] = STATE(1109), + [sym_await_expression] = STATE(1109), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1109), + [sym_string_literal] = STATE(1109), + [sym_boolean_literal] = STATE(1109), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -10093,77 +9970,222 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(285), [sym_block_comment] = ACTIONS(3), }, + [13] = { + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1194), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1194), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1194), + [sym_unary_expression] = STATE(1194), + [sym_try_expression] = STATE(1194), + [sym_reference_expression] = STATE(1194), + [sym_binary_expression] = STATE(1194), + [sym_assignment_expression] = STATE(1194), + [sym_compound_assignment_expr] = STATE(1194), + [sym_type_cast_expression] = STATE(1194), + [sym_return_expression] = STATE(1194), + [sym_call_expression] = STATE(1194), + [sym_array_expression] = STATE(1194), + [sym_parenthesized_expression] = STATE(1194), + [sym_tuple_expression] = STATE(1194), + [sym_unit_expression] = STATE(1194), + [sym_struct_expression] = STATE(1194), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1194), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1194), + [sym_continue_expression] = STATE(1194), + [sym_index_expression] = STATE(1194), + [sym_await_expression] = STATE(1194), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1194), + [sym_string_literal] = STATE(1194), + [sym_boolean_literal] = STATE(1194), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [ts_builtin_sym_end] = ACTIONS(152), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(140), + [anon_sym_macro_rules_BANG] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(146), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_STAR] = ACTIONS(157), + [anon_sym_u8] = ACTIONS(160), + [anon_sym_i8] = ACTIONS(160), + [anon_sym_u16] = ACTIONS(160), + [anon_sym_i16] = ACTIONS(160), + [anon_sym_u32] = ACTIONS(160), + [anon_sym_i32] = ACTIONS(160), + [anon_sym_u64] = ACTIONS(160), + [anon_sym_i64] = ACTIONS(160), + [anon_sym_u128] = ACTIONS(160), + [anon_sym_i128] = ACTIONS(160), + [anon_sym_isize] = ACTIONS(160), + [anon_sym_usize] = ACTIONS(160), + [anon_sym_f32] = ACTIONS(160), + [anon_sym_f64] = ACTIONS(160), + [anon_sym_bool] = ACTIONS(160), + [anon_sym_str] = ACTIONS(160), + [anon_sym_char] = ACTIONS(160), + [anon_sym_SQUOTE] = ACTIONS(163), + [anon_sym_async] = ACTIONS(166), + [anon_sym_break] = ACTIONS(169), + [anon_sym_const] = ACTIONS(172), + [anon_sym_continue] = ACTIONS(175), + [anon_sym_default] = ACTIONS(178), + [anon_sym_enum] = ACTIONS(181), + [anon_sym_fn] = ACTIONS(184), + [anon_sym_for] = ACTIONS(187), + [anon_sym_if] = ACTIONS(190), + [anon_sym_impl] = ACTIONS(193), + [anon_sym_let] = ACTIONS(196), + [anon_sym_loop] = ACTIONS(199), + [anon_sym_match] = ACTIONS(202), + [anon_sym_mod] = ACTIONS(205), + [anon_sym_pub] = ACTIONS(208), + [anon_sym_return] = ACTIONS(211), + [anon_sym_static] = ACTIONS(214), + [anon_sym_struct] = ACTIONS(217), + [anon_sym_trait] = ACTIONS(220), + [anon_sym_type] = ACTIONS(223), + [anon_sym_union] = ACTIONS(226), + [anon_sym_unsafe] = ACTIONS(229), + [anon_sym_use] = ACTIONS(232), + [anon_sym_while] = ACTIONS(235), + [anon_sym_POUND] = ACTIONS(238), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_extern] = ACTIONS(241), + [anon_sym_LT] = ACTIONS(244), + [anon_sym_COLON_COLON] = ACTIONS(247), + [anon_sym_AMP] = ACTIONS(250), + [anon_sym_DOT_DOT] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(256), + [anon_sym_move] = ACTIONS(259), + [sym_integer_literal] = ACTIONS(262), + [aux_sym_string_literal_token1] = ACTIONS(265), + [sym_char_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(268), + [anon_sym_false] = ACTIONS(268), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(271), + [sym_super] = ACTIONS(274), + [sym_crate] = ACTIONS(277), + [sym_metavariable] = ACTIONS(280), + [sym_raw_string_literal] = ACTIONS(262), + [sym_float_literal] = ACTIONS(262), + [sym_block_comment] = ACTIONS(3), + }, [14] = { - [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(2327), - [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(1398), - [sym_visibility_modifier] = STATE(1250), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1091), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1091), - [sym_macro_invocation] = STATE(55), - [sym_scoped_identifier] = STATE(1075), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1091), - [sym_unary_expression] = STATE(1091), - [sym_try_expression] = STATE(1091), - [sym_reference_expression] = STATE(1091), - [sym_binary_expression] = STATE(1091), - [sym_assignment_expression] = STATE(1091), - [sym_compound_assignment_expr] = STATE(1091), - [sym_type_cast_expression] = STATE(1091), - [sym_return_expression] = STATE(1091), - [sym_call_expression] = STATE(1091), - [sym_array_expression] = STATE(1091), - [sym_parenthesized_expression] = STATE(1091), - [sym_tuple_expression] = STATE(1091), - [sym_unit_expression] = STATE(1091), - [sym_struct_expression] = STATE(1091), - [sym_if_expression] = STATE(58), - [sym_if_let_expression] = STATE(58), - [sym_match_expression] = STATE(58), - [sym_while_expression] = STATE(58), - [sym_while_let_expression] = STATE(58), - [sym_loop_expression] = STATE(58), - [sym_for_expression] = STATE(58), - [sym_closure_expression] = STATE(1091), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2319), - [sym_break_expression] = STATE(1091), - [sym_continue_expression] = STATE(1091), - [sym_index_expression] = STATE(1091), - [sym_await_expression] = STATE(1091), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(58), - [sym_async_block] = STATE(58), - [sym_block] = STATE(58), - [sym__literal] = STATE(1091), - [sym_string_literal] = STATE(1091), - [sym_boolean_literal] = STATE(1091), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1447), + [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(2374), + [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(1424), + [sym_visibility_modifier] = STATE(1249), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1090), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1090), + [sym_macro_invocation] = STATE(53), + [sym_scoped_identifier] = STATE(1076), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(1090), + [sym_try_expression] = STATE(1090), + [sym_reference_expression] = STATE(1090), + [sym_binary_expression] = STATE(1090), + [sym_assignment_expression] = STATE(1090), + [sym_compound_assignment_expr] = STATE(1090), + [sym_type_cast_expression] = STATE(1090), + [sym_return_expression] = STATE(1090), + [sym_call_expression] = STATE(1090), + [sym_array_expression] = STATE(1090), + [sym_parenthesized_expression] = STATE(1090), + [sym_tuple_expression] = STATE(1090), + [sym_unit_expression] = STATE(1090), + [sym_struct_expression] = STATE(1090), + [sym_if_expression] = STATE(55), + [sym_if_let_expression] = STATE(55), + [sym_match_expression] = STATE(55), + [sym_while_expression] = STATE(55), + [sym_while_let_expression] = STATE(55), + [sym_loop_expression] = STATE(55), + [sym_for_expression] = STATE(55), + [sym_closure_expression] = STATE(1090), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2368), + [sym_break_expression] = STATE(1090), + [sym_continue_expression] = STATE(1090), + [sym_index_expression] = STATE(1090), + [sym_await_expression] = STATE(1090), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(55), + [sym_async_block] = STATE(55), + [sym_block] = STATE(55), + [sym__literal] = STATE(1090), + [sym_string_literal] = STATE(1090), + [sym_boolean_literal] = STATE(1090), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1459), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -10239,49 +10261,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1053), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1053), - [sym_macro_invocation] = STATE(1053), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(1053), - [sym_try_expression] = STATE(1053), - [sym_reference_expression] = STATE(1053), - [sym_binary_expression] = STATE(1053), - [sym_assignment_expression] = STATE(1053), - [sym_compound_assignment_expr] = STATE(1053), - [sym_type_cast_expression] = STATE(1053), - [sym_return_expression] = STATE(1053), - [sym_call_expression] = STATE(1053), - [sym_array_expression] = STATE(1053), - [sym_parenthesized_expression] = STATE(1053), - [sym_tuple_expression] = STATE(1053), - [sym_unit_expression] = STATE(1053), - [sym_struct_expression] = STATE(1053), - [sym_if_expression] = STATE(1053), - [sym_if_let_expression] = STATE(1053), - [sym_match_expression] = STATE(1053), - [sym_while_expression] = STATE(1053), - [sym_while_let_expression] = STATE(1053), - [sym_loop_expression] = STATE(1053), - [sym_for_expression] = STATE(1053), - [sym_closure_expression] = STATE(1053), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1053), - [sym_continue_expression] = STATE(1053), - [sym_index_expression] = STATE(1053), - [sym_await_expression] = STATE(1053), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1053), - [sym_async_block] = STATE(1053), - [sym_block] = STATE(1053), - [sym__literal] = STATE(1053), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1054), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1054), + [sym_macro_invocation] = STATE(1054), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(1054), + [sym_try_expression] = STATE(1054), + [sym_reference_expression] = STATE(1054), + [sym_binary_expression] = STATE(1054), + [sym_assignment_expression] = STATE(1054), + [sym_compound_assignment_expr] = STATE(1054), + [sym_type_cast_expression] = STATE(1054), + [sym_return_expression] = STATE(1054), + [sym_call_expression] = STATE(1054), + [sym_array_expression] = STATE(1054), + [sym_parenthesized_expression] = STATE(1054), + [sym_tuple_expression] = STATE(1054), + [sym_unit_expression] = STATE(1054), + [sym_struct_expression] = STATE(1054), + [sym_if_expression] = STATE(1054), + [sym_if_let_expression] = STATE(1054), + [sym_match_expression] = STATE(1054), + [sym_while_expression] = STATE(1054), + [sym_while_let_expression] = STATE(1054), + [sym_loop_expression] = STATE(1054), + [sym_for_expression] = STATE(1054), + [sym_closure_expression] = STATE(1054), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1054), + [sym_continue_expression] = STATE(1054), + [sym_index_expression] = STATE(1054), + [sym_await_expression] = STATE(1054), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1054), + [sym_async_block] = STATE(1054), + [sym_block] = STATE(1054), + [sym__literal] = STATE(1054), + [sym_string_literal] = STATE(1054), + [sym_boolean_literal] = STATE(1054), [sym_identifier] = ACTIONS(291), [anon_sym_SEMI] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(293), @@ -10376,49 +10398,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(993), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(993), - [sym_macro_invocation] = STATE(993), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(993), - [sym_unary_expression] = STATE(993), - [sym_try_expression] = STATE(993), - [sym_reference_expression] = STATE(993), - [sym_binary_expression] = STATE(993), - [sym_assignment_expression] = STATE(993), - [sym_compound_assignment_expr] = STATE(993), - [sym_type_cast_expression] = STATE(993), - [sym_return_expression] = STATE(993), - [sym_call_expression] = STATE(993), - [sym_array_expression] = STATE(993), - [sym_parenthesized_expression] = STATE(993), - [sym_tuple_expression] = STATE(993), - [sym_unit_expression] = STATE(993), - [sym_struct_expression] = STATE(993), - [sym_if_expression] = STATE(993), - [sym_if_let_expression] = STATE(993), - [sym_match_expression] = STATE(993), - [sym_while_expression] = STATE(993), - [sym_while_let_expression] = STATE(993), - [sym_loop_expression] = STATE(993), - [sym_for_expression] = STATE(993), - [sym_closure_expression] = STATE(993), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(15), - [sym_break_expression] = STATE(993), - [sym_continue_expression] = STATE(993), - [sym_index_expression] = STATE(993), - [sym_await_expression] = STATE(993), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(993), - [sym_async_block] = STATE(993), - [sym_block] = STATE(993), - [sym__literal] = STATE(993), - [sym_string_literal] = STATE(993), - [sym_boolean_literal] = STATE(993), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1009), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1009), + [sym_macro_invocation] = STATE(1009), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1009), + [sym_unary_expression] = STATE(1009), + [sym_try_expression] = STATE(1009), + [sym_reference_expression] = STATE(1009), + [sym_binary_expression] = STATE(1009), + [sym_assignment_expression] = STATE(1009), + [sym_compound_assignment_expr] = STATE(1009), + [sym_type_cast_expression] = STATE(1009), + [sym_return_expression] = STATE(1009), + [sym_call_expression] = STATE(1009), + [sym_array_expression] = STATE(1009), + [sym_parenthesized_expression] = STATE(1009), + [sym_tuple_expression] = STATE(1009), + [sym_unit_expression] = STATE(1009), + [sym_struct_expression] = STATE(1009), + [sym_if_expression] = STATE(1009), + [sym_if_let_expression] = STATE(1009), + [sym_match_expression] = STATE(1009), + [sym_while_expression] = STATE(1009), + [sym_while_let_expression] = STATE(1009), + [sym_loop_expression] = STATE(1009), + [sym_for_expression] = STATE(1009), + [sym_closure_expression] = STATE(1009), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1009), + [sym_continue_expression] = STATE(1009), + [sym_index_expression] = STATE(1009), + [sym_await_expression] = STATE(1009), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1009), + [sym_async_block] = STATE(1009), + [sym_block] = STATE(1009), + [sym__literal] = STATE(1009), + [sym_string_literal] = STATE(1009), + [sym_boolean_literal] = STATE(1009), [sym_identifier] = ACTIONS(291), [anon_sym_SEMI] = ACTIONS(321), [anon_sym_LPAREN] = ACTIONS(321), @@ -10448,7 +10470,7 @@ static 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(325), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_as] = ACTIONS(323), [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(27), @@ -10497,9 +10519,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(321), [anon_sym_move] = ACTIONS(87), [anon_sym_DOT] = ACTIONS(323), - [sym_integer_literal] = ACTIONS(327), + [sym_integer_literal] = ACTIONS(325), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(327), + [sym_char_literal] = ACTIONS(325), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -10507,66 +10529,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(327), - [sym_float_literal] = ACTIONS(327), + [sym_raw_string_literal] = ACTIONS(325), + [sym_float_literal] = ACTIONS(325), [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1026), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1026), - [sym_macro_invocation] = STATE(1026), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1026), - [sym_unary_expression] = STATE(1026), - [sym_try_expression] = STATE(1026), - [sym_reference_expression] = STATE(1026), - [sym_binary_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1026), - [sym_compound_assignment_expr] = STATE(1026), - [sym_type_cast_expression] = STATE(1026), - [sym_return_expression] = STATE(1026), - [sym_call_expression] = STATE(1026), - [sym_array_expression] = STATE(1026), - [sym_parenthesized_expression] = STATE(1026), - [sym_tuple_expression] = STATE(1026), - [sym_unit_expression] = STATE(1026), - [sym_struct_expression] = STATE(1026), - [sym_if_expression] = STATE(1026), - [sym_if_let_expression] = STATE(1026), - [sym_match_expression] = STATE(1026), - [sym_while_expression] = STATE(1026), - [sym_while_let_expression] = STATE(1026), - [sym_loop_expression] = STATE(1026), - [sym_for_expression] = STATE(1026), - [sym_closure_expression] = STATE(1026), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1026), - [sym_continue_expression] = STATE(1026), - [sym_index_expression] = STATE(1026), - [sym_await_expression] = STATE(1026), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1026), - [sym_async_block] = STATE(1026), - [sym_block] = STATE(1026), - [sym__literal] = STATE(1026), - [sym_string_literal] = STATE(1026), - [sym_boolean_literal] = STATE(1026), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1023), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1023), + [sym_macro_invocation] = STATE(1023), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1023), + [sym_unary_expression] = STATE(1023), + [sym_try_expression] = STATE(1023), + [sym_reference_expression] = STATE(1023), + [sym_binary_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1023), + [sym_compound_assignment_expr] = STATE(1023), + [sym_type_cast_expression] = STATE(1023), + [sym_return_expression] = STATE(1023), + [sym_call_expression] = STATE(1023), + [sym_array_expression] = STATE(1023), + [sym_parenthesized_expression] = STATE(1023), + [sym_tuple_expression] = STATE(1023), + [sym_unit_expression] = STATE(1023), + [sym_struct_expression] = STATE(1023), + [sym_if_expression] = STATE(1023), + [sym_if_let_expression] = STATE(1023), + [sym_match_expression] = STATE(1023), + [sym_while_expression] = STATE(1023), + [sym_while_let_expression] = STATE(1023), + [sym_loop_expression] = STATE(1023), + [sym_for_expression] = STATE(1023), + [sym_closure_expression] = STATE(1023), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1023), + [sym_continue_expression] = STATE(1023), + [sym_index_expression] = STATE(1023), + [sym_await_expression] = STATE(1023), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1023), + [sym_async_block] = STATE(1023), + [sym_block] = STATE(1023), + [sym__literal] = STATE(1023), + [sym_string_literal] = STATE(1023), + [sym_boolean_literal] = STATE(1023), [sym_identifier] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_RPAREN] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_EQ_GT] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_EQ_GT] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_RBRACK] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(327), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -10585,7 +10607,7 @@ static 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(331), + [anon_sym_as] = ACTIONS(329), [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), @@ -10599,43 +10621,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(317), - [anon_sym_EQ] = ACTIONS(331), - [anon_sym_COMMA] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), + [anon_sym_EQ] = ACTIONS(329), + [anon_sym_COMMA] = ACTIONS(327), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(329), - [anon_sym_DOT_DOT] = ACTIONS(337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_SLASH] = ACTIONS(331), - [anon_sym_PERCENT] = ACTIONS(331), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_SLASH_EQ] = ACTIONS(329), - [anon_sym_PERCENT_EQ] = ACTIONS(329), - [anon_sym_AMP_EQ] = ACTIONS(329), - [anon_sym_PIPE_EQ] = ACTIONS(329), - [anon_sym_CARET_EQ] = ACTIONS(329), - [anon_sym_LT_LT_EQ] = ACTIONS(329), - [anon_sym_GT_GT_EQ] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(329), + [sym_integer_literal] = ACTIONS(331), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(341), + [sym_char_literal] = ACTIONS(331), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -10643,66 +10665,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(341), - [sym_float_literal] = ACTIONS(341), + [sym_raw_string_literal] = ACTIONS(331), + [sym_float_literal] = ACTIONS(331), [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1034), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1034), - [sym_macro_invocation] = STATE(1034), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1034), - [sym_unary_expression] = STATE(1034), - [sym_try_expression] = STATE(1034), - [sym_reference_expression] = STATE(1034), - [sym_binary_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1034), - [sym_compound_assignment_expr] = STATE(1034), - [sym_type_cast_expression] = STATE(1034), - [sym_return_expression] = STATE(1034), - [sym_call_expression] = STATE(1034), - [sym_array_expression] = STATE(1034), - [sym_parenthesized_expression] = STATE(1034), - [sym_tuple_expression] = STATE(1034), - [sym_unit_expression] = STATE(1034), - [sym_struct_expression] = STATE(1034), - [sym_if_expression] = STATE(1034), - [sym_if_let_expression] = STATE(1034), - [sym_match_expression] = STATE(1034), - [sym_while_expression] = STATE(1034), - [sym_while_let_expression] = STATE(1034), - [sym_loop_expression] = STATE(1034), - [sym_for_expression] = STATE(1034), - [sym_closure_expression] = STATE(1034), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1034), - [sym_continue_expression] = STATE(1034), - [sym_index_expression] = STATE(1034), - [sym_await_expression] = STATE(1034), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1034), - [sym_async_block] = STATE(1034), - [sym_block] = STATE(1034), - [sym__literal] = STATE(1034), - [sym_string_literal] = STATE(1034), - [sym_boolean_literal] = STATE(1034), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1048), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1048), + [sym_macro_invocation] = STATE(1048), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1048), + [sym_unary_expression] = STATE(1048), + [sym_try_expression] = STATE(1048), + [sym_reference_expression] = STATE(1048), + [sym_binary_expression] = STATE(1048), + [sym_assignment_expression] = STATE(1048), + [sym_compound_assignment_expr] = STATE(1048), + [sym_type_cast_expression] = STATE(1048), + [sym_return_expression] = STATE(1048), + [sym_call_expression] = STATE(1048), + [sym_array_expression] = STATE(1048), + [sym_parenthesized_expression] = STATE(1048), + [sym_tuple_expression] = STATE(1048), + [sym_unit_expression] = STATE(1048), + [sym_struct_expression] = STATE(1048), + [sym_if_expression] = STATE(1048), + [sym_if_let_expression] = STATE(1048), + [sym_match_expression] = STATE(1048), + [sym_while_expression] = STATE(1048), + [sym_while_let_expression] = STATE(1048), + [sym_loop_expression] = STATE(1048), + [sym_for_expression] = STATE(1048), + [sym_closure_expression] = STATE(1048), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1048), + [sym_continue_expression] = STATE(1048), + [sym_index_expression] = STATE(1048), + [sym_await_expression] = STATE(1048), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1048), + [sym_async_block] = STATE(1048), + [sym_block] = STATE(1048), + [sym__literal] = STATE(1048), + [sym_string_literal] = STATE(1048), + [sym_boolean_literal] = STATE(1048), [sym_identifier] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(333), [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_EQ_GT] = ACTIONS(343), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_EQ_GT] = ACTIONS(333), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_QMARK] = ACTIONS(333), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -10721,7 +10743,7 @@ static 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(345), + [anon_sym_as] = ACTIONS(335), [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), @@ -10735,43 +10757,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(317), - [anon_sym_EQ] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(343), - [anon_sym_LT] = ACTIONS(345), - [anon_sym_GT] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_COMMA] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(335), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_CARET] = ACTIONS(345), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_PERCENT] = ACTIONS(345), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_STAR_EQ] = ACTIONS(343), - [anon_sym_SLASH_EQ] = ACTIONS(343), - [anon_sym_PERCENT_EQ] = ACTIONS(343), - [anon_sym_AMP_EQ] = ACTIONS(343), - [anon_sym_PIPE_EQ] = ACTIONS(343), - [anon_sym_CARET_EQ] = ACTIONS(343), - [anon_sym_LT_LT_EQ] = ACTIONS(343), - [anon_sym_GT_GT_EQ] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(333), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_AMP_AMP] = ACTIONS(333), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(333), + [anon_sym_BANG_EQ] = ACTIONS(333), + [anon_sym_LT_EQ] = ACTIONS(333), + [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_LT_LT] = ACTIONS(335), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PERCENT] = ACTIONS(335), + [anon_sym_PLUS_EQ] = ACTIONS(333), + [anon_sym_DASH_EQ] = ACTIONS(333), + [anon_sym_STAR_EQ] = ACTIONS(333), + [anon_sym_SLASH_EQ] = ACTIONS(333), + [anon_sym_PERCENT_EQ] = ACTIONS(333), + [anon_sym_AMP_EQ] = ACTIONS(333), + [anon_sym_PIPE_EQ] = ACTIONS(333), + [anon_sym_CARET_EQ] = ACTIONS(333), + [anon_sym_LT_LT_EQ] = ACTIONS(333), + [anon_sym_GT_GT_EQ] = ACTIONS(333), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(345), - [sym_integer_literal] = ACTIONS(347), + [anon_sym_DOT] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(345), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(347), + [sym_char_literal] = ACTIONS(345), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -10779,66 +10801,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(347), - [sym_float_literal] = ACTIONS(347), + [sym_raw_string_literal] = ACTIONS(345), + [sym_float_literal] = ACTIONS(345), [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1017), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1017), - [sym_macro_invocation] = STATE(1017), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1017), - [sym_unary_expression] = STATE(1017), - [sym_try_expression] = STATE(1017), - [sym_reference_expression] = STATE(1017), - [sym_binary_expression] = STATE(1017), - [sym_assignment_expression] = STATE(1017), - [sym_compound_assignment_expr] = STATE(1017), - [sym_type_cast_expression] = STATE(1017), - [sym_return_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_array_expression] = STATE(1017), - [sym_parenthesized_expression] = STATE(1017), - [sym_tuple_expression] = STATE(1017), - [sym_unit_expression] = STATE(1017), - [sym_struct_expression] = STATE(1017), - [sym_if_expression] = STATE(1017), - [sym_if_let_expression] = STATE(1017), - [sym_match_expression] = STATE(1017), - [sym_while_expression] = STATE(1017), - [sym_while_let_expression] = STATE(1017), - [sym_loop_expression] = STATE(1017), - [sym_for_expression] = STATE(1017), - [sym_closure_expression] = STATE(1017), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1017), - [sym_continue_expression] = STATE(1017), - [sym_index_expression] = STATE(1017), - [sym_await_expression] = STATE(1017), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1017), - [sym_async_block] = STATE(1017), - [sym_block] = STATE(1017), - [sym__literal] = STATE(1017), - [sym_string_literal] = STATE(1017), - [sym_boolean_literal] = STATE(1017), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1051), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1051), + [sym_macro_invocation] = STATE(1051), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1051), + [sym_unary_expression] = STATE(1051), + [sym_try_expression] = STATE(1051), + [sym_reference_expression] = STATE(1051), + [sym_binary_expression] = STATE(1051), + [sym_assignment_expression] = STATE(1051), + [sym_compound_assignment_expr] = STATE(1051), + [sym_type_cast_expression] = STATE(1051), + [sym_return_expression] = STATE(1051), + [sym_call_expression] = STATE(1051), + [sym_array_expression] = STATE(1051), + [sym_parenthesized_expression] = STATE(1051), + [sym_tuple_expression] = STATE(1051), + [sym_unit_expression] = STATE(1051), + [sym_struct_expression] = STATE(1051), + [sym_if_expression] = STATE(1051), + [sym_if_let_expression] = STATE(1051), + [sym_match_expression] = STATE(1051), + [sym_while_expression] = STATE(1051), + [sym_while_let_expression] = STATE(1051), + [sym_loop_expression] = STATE(1051), + [sym_for_expression] = STATE(1051), + [sym_closure_expression] = STATE(1051), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(15), + [sym_break_expression] = STATE(1051), + [sym_continue_expression] = STATE(1051), + [sym_index_expression] = STATE(1051), + [sym_await_expression] = STATE(1051), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1051), + [sym_async_block] = STATE(1051), + [sym_block] = STATE(1051), + [sym__literal] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym_boolean_literal] = STATE(1051), [sym_identifier] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(349), - [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(347), + [anon_sym_RPAREN] = ACTIONS(347), [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(349), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_RBRACK] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_QMARK] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_EQ_GT] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_RBRACK] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(347), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -10856,8 +10878,8 @@ static 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_as] = ACTIONS(351), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_as] = ACTIONS(349), [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), @@ -10871,40 +10893,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(317), - [anon_sym_EQ] = ACTIONS(351), - [anon_sym_COMMA] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(349), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(349), - [anon_sym_DOT_DOT] = ACTIONS(351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(349), - [anon_sym_DASH] = ACTIONS(351), - [anon_sym_AMP_AMP] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(349), - [anon_sym_PIPE] = ACTIONS(351), - [anon_sym_CARET] = ACTIONS(351), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_BANG_EQ] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(351), - [anon_sym_PERCENT] = ACTIONS(351), - [anon_sym_PLUS_EQ] = ACTIONS(349), - [anon_sym_DASH_EQ] = ACTIONS(349), - [anon_sym_STAR_EQ] = ACTIONS(349), - [anon_sym_SLASH_EQ] = ACTIONS(349), - [anon_sym_PERCENT_EQ] = ACTIONS(349), - [anon_sym_AMP_EQ] = ACTIONS(349), - [anon_sym_PIPE_EQ] = ACTIONS(349), - [anon_sym_CARET_EQ] = ACTIONS(349), - [anon_sym_LT_LT_EQ] = ACTIONS(349), - [anon_sym_GT_GT_EQ] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(349), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_PLUS_EQ] = ACTIONS(347), + [anon_sym_DASH_EQ] = ACTIONS(347), + [anon_sym_STAR_EQ] = ACTIONS(347), + [anon_sym_SLASH_EQ] = ACTIONS(347), + [anon_sym_PERCENT_EQ] = ACTIONS(347), + [anon_sym_AMP_EQ] = ACTIONS(347), + [anon_sym_PIPE_EQ] = ACTIONS(347), + [anon_sym_CARET_EQ] = ACTIONS(347), + [anon_sym_LT_LT_EQ] = ACTIONS(347), + [anon_sym_GT_GT_EQ] = ACTIONS(347), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), [sym_integer_literal] = ACTIONS(353), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(353), @@ -10920,49 +10942,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1147), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(1147), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1147), - [sym_try_expression] = STATE(1147), - [sym_reference_expression] = STATE(1147), - [sym_binary_expression] = STATE(1147), - [sym_assignment_expression] = STATE(1147), - [sym_compound_assignment_expr] = STATE(1147), - [sym_type_cast_expression] = STATE(1147), - [sym_return_expression] = STATE(1147), - [sym_call_expression] = STATE(1147), - [sym_array_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(1147), - [sym_tuple_expression] = STATE(1147), - [sym_unit_expression] = STATE(1147), - [sym_struct_expression] = STATE(1147), - [sym_if_expression] = STATE(1147), - [sym_if_let_expression] = STATE(1147), - [sym_match_expression] = STATE(1147), - [sym_while_expression] = STATE(1147), - [sym_while_let_expression] = STATE(1147), - [sym_loop_expression] = STATE(1147), - [sym_for_expression] = STATE(1147), - [sym_closure_expression] = STATE(1147), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1147), - [sym_continue_expression] = STATE(1147), - [sym_index_expression] = STATE(1147), - [sym_await_expression] = STATE(1147), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1147), - [sym_async_block] = STATE(1147), - [sym_block] = STATE(1147), - [sym__literal] = STATE(1147), - [sym_string_literal] = STATE(1147), - [sym_boolean_literal] = STATE(1147), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1168), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(1168), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1168), + [sym_unary_expression] = STATE(1168), + [sym_try_expression] = STATE(1168), + [sym_reference_expression] = STATE(1168), + [sym_binary_expression] = STATE(1168), + [sym_assignment_expression] = STATE(1168), + [sym_compound_assignment_expr] = STATE(1168), + [sym_type_cast_expression] = STATE(1168), + [sym_return_expression] = STATE(1168), + [sym_call_expression] = STATE(1168), + [sym_array_expression] = STATE(1168), + [sym_parenthesized_expression] = STATE(1168), + [sym_tuple_expression] = STATE(1168), + [sym_unit_expression] = STATE(1168), + [sym_struct_expression] = STATE(1168), + [sym_if_expression] = STATE(1168), + [sym_if_let_expression] = STATE(1168), + [sym_match_expression] = STATE(1168), + [sym_while_expression] = STATE(1168), + [sym_while_let_expression] = STATE(1168), + [sym_loop_expression] = STATE(1168), + [sym_for_expression] = STATE(1168), + [sym_closure_expression] = STATE(1168), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1168), + [sym_continue_expression] = STATE(1168), + [sym_index_expression] = STATE(1168), + [sym_await_expression] = STATE(1168), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1168), + [sym_async_block] = STATE(1168), + [sym_block] = STATE(1168), + [sym__literal] = STATE(1168), + [sym_string_literal] = STATE(1168), + [sym_boolean_literal] = STATE(1168), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(293), [anon_sym_LBRACE] = ACTIONS(293), @@ -11051,56 +11073,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1161), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(1161), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1161), - [sym_unary_expression] = STATE(1161), - [sym_try_expression] = STATE(1161), - [sym_reference_expression] = STATE(1161), - [sym_binary_expression] = STATE(1161), - [sym_assignment_expression] = STATE(1161), - [sym_compound_assignment_expr] = STATE(1161), - [sym_type_cast_expression] = STATE(1161), - [sym_return_expression] = STATE(1161), - [sym_call_expression] = STATE(1161), - [sym_array_expression] = STATE(1161), - [sym_parenthesized_expression] = STATE(1161), - [sym_tuple_expression] = STATE(1161), - [sym_unit_expression] = STATE(1161), - [sym_struct_expression] = STATE(1161), - [sym_if_expression] = STATE(1161), - [sym_if_let_expression] = STATE(1161), - [sym_match_expression] = STATE(1161), - [sym_while_expression] = STATE(1161), - [sym_while_let_expression] = STATE(1161), - [sym_loop_expression] = STATE(1161), - [sym_for_expression] = STATE(1161), - [sym_closure_expression] = STATE(1161), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1161), - [sym_continue_expression] = STATE(1161), - [sym_index_expression] = STATE(1161), - [sym_await_expression] = STATE(1161), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1161), - [sym_async_block] = STATE(1161), - [sym_block] = STATE(1161), - [sym__literal] = STATE(1161), - [sym_string_literal] = STATE(1161), - [sym_boolean_literal] = STATE(1161), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1151), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(1151), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1151), + [sym_unary_expression] = STATE(1151), + [sym_try_expression] = STATE(1151), + [sym_reference_expression] = STATE(1151), + [sym_binary_expression] = STATE(1151), + [sym_assignment_expression] = STATE(1151), + [sym_compound_assignment_expr] = STATE(1151), + [sym_type_cast_expression] = STATE(1151), + [sym_return_expression] = STATE(1151), + [sym_call_expression] = STATE(1151), + [sym_array_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(1151), + [sym_tuple_expression] = STATE(1151), + [sym_unit_expression] = STATE(1151), + [sym_struct_expression] = STATE(1151), + [sym_if_expression] = STATE(1151), + [sym_if_let_expression] = STATE(1151), + [sym_match_expression] = STATE(1151), + [sym_while_expression] = STATE(1151), + [sym_while_let_expression] = STATE(1151), + [sym_loop_expression] = STATE(1151), + [sym_for_expression] = STATE(1151), + [sym_closure_expression] = STATE(1151), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1151), + [sym_continue_expression] = STATE(1151), + [sym_index_expression] = STATE(1151), + [sym_await_expression] = STATE(1151), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1151), + [sym_async_block] = STATE(1151), + [sym_block] = STATE(1151), + [sym__literal] = STATE(1151), + [sym_string_literal] = STATE(1151), + [sym_boolean_literal] = STATE(1151), [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(363), - [anon_sym_QMARK] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(321), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_QMARK] = ACTIONS(321), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -11119,7 +11141,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(357), [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(331), + [anon_sym_as] = ACTIONS(323), [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), @@ -11133,42 +11155,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(363), - [anon_sym_EQ] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(331), + [anon_sym_EQ] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(323), + [anon_sym_GT] = ACTIONS(323), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(329), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(329), - [anon_sym_DASH] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(339), - [anon_sym_CARET] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_SLASH] = ACTIONS(331), - [anon_sym_PERCENT] = ACTIONS(331), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_SLASH_EQ] = ACTIONS(329), - [anon_sym_PERCENT_EQ] = ACTIONS(329), - [anon_sym_AMP_EQ] = ACTIONS(329), - [anon_sym_PIPE_EQ] = ACTIONS(329), - [anon_sym_CARET_EQ] = ACTIONS(329), - [anon_sym_LT_LT_EQ] = ACTIONS(329), - [anon_sym_GT_GT_EQ] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(321), + [anon_sym_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT_EQ] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(323), + [anon_sym_AMP_AMP] = ACTIONS(321), + [anon_sym_PIPE_PIPE] = ACTIONS(321), + [anon_sym_PIPE] = ACTIONS(323), + [anon_sym_CARET] = ACTIONS(323), + [anon_sym_EQ_EQ] = ACTIONS(321), + [anon_sym_BANG_EQ] = ACTIONS(321), + [anon_sym_LT_EQ] = ACTIONS(321), + [anon_sym_GT_EQ] = ACTIONS(321), + [anon_sym_LT_LT] = ACTIONS(323), + [anon_sym_GT_GT] = ACTIONS(323), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_PERCENT] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(321), + [anon_sym_DASH_EQ] = ACTIONS(321), + [anon_sym_STAR_EQ] = ACTIONS(321), + [anon_sym_SLASH_EQ] = ACTIONS(321), + [anon_sym_PERCENT_EQ] = ACTIONS(321), + [anon_sym_AMP_EQ] = ACTIONS(321), + [anon_sym_PIPE_EQ] = ACTIONS(321), + [anon_sym_CARET_EQ] = ACTIONS(321), + [anon_sym_LT_LT_EQ] = ACTIONS(321), + [anon_sym_GT_GT_EQ] = ACTIONS(321), [anon_sym_move] = ACTIONS(367), - [anon_sym_DOT] = ACTIONS(331), - [sym_integer_literal] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(323), + [sym_integer_literal] = ACTIONS(377), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(381), + [sym_char_literal] = ACTIONS(377), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -11176,61 +11198,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(381), - [sym_float_literal] = ACTIONS(381), + [sym_raw_string_literal] = ACTIONS(377), + [sym_float_literal] = ACTIONS(377), [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1148), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_if_let_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_while_let_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1148), - [sym_boolean_literal] = STATE(1148), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1171), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1171), + [sym_macro_invocation] = STATE(1171), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1171), + [sym_unary_expression] = STATE(1171), + [sym_try_expression] = STATE(1171), + [sym_reference_expression] = STATE(1171), + [sym_binary_expression] = STATE(1171), + [sym_assignment_expression] = STATE(1171), + [sym_compound_assignment_expr] = STATE(1171), + [sym_type_cast_expression] = STATE(1171), + [sym_return_expression] = STATE(1171), + [sym_call_expression] = STATE(1171), + [sym_array_expression] = STATE(1171), + [sym_parenthesized_expression] = STATE(1171), + [sym_tuple_expression] = STATE(1171), + [sym_unit_expression] = STATE(1171), + [sym_struct_expression] = STATE(1171), + [sym_if_expression] = STATE(1171), + [sym_if_let_expression] = STATE(1171), + [sym_match_expression] = STATE(1171), + [sym_while_expression] = STATE(1171), + [sym_while_let_expression] = STATE(1171), + [sym_loop_expression] = STATE(1171), + [sym_for_expression] = STATE(1171), + [sym_closure_expression] = STATE(1171), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1171), + [sym_continue_expression] = STATE(1171), + [sym_index_expression] = STATE(1171), + [sym_await_expression] = STATE(1171), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1171), + [sym_async_block] = STATE(1171), + [sym_block] = STATE(1171), + [sym__literal] = STATE(1171), + [sym_string_literal] = STATE(1171), + [sym_boolean_literal] = STATE(1171), [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_LBRACK] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(351), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_QMARK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(327), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -11249,7 +11271,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(357), [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(351), + [anon_sym_as] = ACTIONS(329), [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), @@ -11263,42 +11285,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(363), - [anon_sym_EQ] = ACTIONS(351), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(349), - [anon_sym_DOT_DOT] = ACTIONS(351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(349), - [anon_sym_DASH] = ACTIONS(351), - [anon_sym_AMP_AMP] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(349), - [anon_sym_PIPE] = ACTIONS(351), - [anon_sym_CARET] = ACTIONS(351), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_BANG_EQ] = ACTIONS(349), - [anon_sym_LT_EQ] = ACTIONS(349), - [anon_sym_GT_EQ] = ACTIONS(349), - [anon_sym_LT_LT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(351), - [anon_sym_SLASH] = ACTIONS(351), - [anon_sym_PERCENT] = ACTIONS(351), - [anon_sym_PLUS_EQ] = ACTIONS(349), - [anon_sym_DASH_EQ] = ACTIONS(349), - [anon_sym_STAR_EQ] = ACTIONS(349), - [anon_sym_SLASH_EQ] = ACTIONS(349), - [anon_sym_PERCENT_EQ] = ACTIONS(349), - [anon_sym_AMP_EQ] = ACTIONS(349), - [anon_sym_PIPE_EQ] = ACTIONS(349), - [anon_sym_CARET_EQ] = ACTIONS(349), - [anon_sym_LT_LT_EQ] = ACTIONS(349), - [anon_sym_GT_GT_EQ] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), [anon_sym_move] = ACTIONS(367), - [anon_sym_DOT] = ACTIONS(351), - [sym_integer_literal] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(329), + [sym_integer_literal] = ACTIONS(379), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(383), + [sym_char_literal] = ACTIONS(379), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -11306,61 +11328,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(383), + [sym_raw_string_literal] = ACTIONS(379), + [sym_float_literal] = ACTIONS(379), [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1210), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(1210), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1210), - [sym_unary_expression] = STATE(1210), - [sym_try_expression] = STATE(1210), - [sym_reference_expression] = STATE(1210), - [sym_binary_expression] = STATE(1210), - [sym_assignment_expression] = STATE(1210), - [sym_compound_assignment_expr] = STATE(1210), - [sym_type_cast_expression] = STATE(1210), - [sym_return_expression] = STATE(1210), - [sym_call_expression] = STATE(1210), - [sym_array_expression] = STATE(1210), - [sym_parenthesized_expression] = STATE(1210), - [sym_tuple_expression] = STATE(1210), - [sym_unit_expression] = STATE(1210), - [sym_struct_expression] = STATE(1210), - [sym_if_expression] = STATE(1210), - [sym_if_let_expression] = STATE(1210), - [sym_match_expression] = STATE(1210), - [sym_while_expression] = STATE(1210), - [sym_while_let_expression] = STATE(1210), - [sym_loop_expression] = STATE(1210), - [sym_for_expression] = STATE(1210), - [sym_closure_expression] = STATE(1210), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(20), - [sym_break_expression] = STATE(1210), - [sym_continue_expression] = STATE(1210), - [sym_index_expression] = STATE(1210), - [sym_await_expression] = STATE(1210), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1210), - [sym_async_block] = STATE(1210), - [sym_block] = STATE(1210), - [sym__literal] = STATE(1210), - [sym_string_literal] = STATE(1210), - [sym_boolean_literal] = STATE(1210), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1214), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(1214), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1214), + [sym_unary_expression] = STATE(1214), + [sym_try_expression] = STATE(1214), + [sym_reference_expression] = STATE(1214), + [sym_binary_expression] = STATE(1214), + [sym_assignment_expression] = STATE(1214), + [sym_compound_assignment_expr] = STATE(1214), + [sym_type_cast_expression] = STATE(1214), + [sym_return_expression] = STATE(1214), + [sym_call_expression] = STATE(1214), + [sym_array_expression] = STATE(1214), + [sym_parenthesized_expression] = STATE(1214), + [sym_tuple_expression] = STATE(1214), + [sym_unit_expression] = STATE(1214), + [sym_struct_expression] = STATE(1214), + [sym_if_expression] = STATE(1214), + [sym_if_let_expression] = STATE(1214), + [sym_match_expression] = STATE(1214), + [sym_while_expression] = STATE(1214), + [sym_while_let_expression] = STATE(1214), + [sym_loop_expression] = STATE(1214), + [sym_for_expression] = STATE(1214), + [sym_closure_expression] = STATE(1214), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1214), + [sym_continue_expression] = STATE(1214), + [sym_index_expression] = STATE(1214), + [sym_await_expression] = STATE(1214), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1214), + [sym_async_block] = STATE(1214), + [sym_block] = STATE(1214), + [sym__literal] = STATE(1214), + [sym_string_literal] = STATE(1214), + [sym_boolean_literal] = STATE(1214), [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(335), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_QMARK] = ACTIONS(333), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -11378,8 +11400,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(357), [anon_sym_str] = ACTIONS(357), [anon_sym_char] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(325), - [anon_sym_as] = ACTIONS(323), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(335), [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), @@ -11393,39 +11415,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(363), - [anon_sym_EQ] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_GT] = ACTIONS(323), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(335), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(321), - [anon_sym_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(323), - [anon_sym_AMP_AMP] = ACTIONS(321), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(323), - [anon_sym_CARET] = ACTIONS(323), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_LT_LT] = ACTIONS(323), - [anon_sym_GT_GT] = ACTIONS(323), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_PERCENT] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_PERCENT_EQ] = ACTIONS(321), - [anon_sym_AMP_EQ] = ACTIONS(321), - [anon_sym_PIPE_EQ] = ACTIONS(321), - [anon_sym_CARET_EQ] = ACTIONS(321), - [anon_sym_LT_LT_EQ] = ACTIONS(321), - [anon_sym_GT_GT_EQ] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(333), + [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(333), + [anon_sym_PIPE_PIPE] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(335), + [anon_sym_EQ_EQ] = ACTIONS(333), + [anon_sym_BANG_EQ] = ACTIONS(333), + [anon_sym_LT_EQ] = ACTIONS(333), + [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_LT_LT] = ACTIONS(335), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_SLASH] = ACTIONS(335), + [anon_sym_PERCENT] = ACTIONS(335), + [anon_sym_PLUS_EQ] = ACTIONS(333), + [anon_sym_DASH_EQ] = ACTIONS(333), + [anon_sym_STAR_EQ] = ACTIONS(333), + [anon_sym_SLASH_EQ] = ACTIONS(333), + [anon_sym_PERCENT_EQ] = ACTIONS(333), + [anon_sym_AMP_EQ] = ACTIONS(333), + [anon_sym_PIPE_EQ] = ACTIONS(333), + [anon_sym_CARET_EQ] = ACTIONS(333), + [anon_sym_LT_LT_EQ] = ACTIONS(333), + [anon_sym_GT_GT_EQ] = ACTIONS(333), [anon_sym_move] = ACTIONS(367), - [anon_sym_DOT] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(335), [sym_integer_literal] = ACTIONS(385), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(385), @@ -11441,56 +11463,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1166), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(1166), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1166), - [sym_unary_expression] = STATE(1166), - [sym_try_expression] = STATE(1166), - [sym_reference_expression] = STATE(1166), - [sym_binary_expression] = STATE(1166), - [sym_assignment_expression] = STATE(1166), - [sym_compound_assignment_expr] = STATE(1166), - [sym_type_cast_expression] = STATE(1166), - [sym_return_expression] = STATE(1166), - [sym_call_expression] = STATE(1166), - [sym_array_expression] = STATE(1166), - [sym_parenthesized_expression] = STATE(1166), - [sym_tuple_expression] = STATE(1166), - [sym_unit_expression] = STATE(1166), - [sym_struct_expression] = STATE(1166), - [sym_if_expression] = STATE(1166), - [sym_if_let_expression] = STATE(1166), - [sym_match_expression] = STATE(1166), - [sym_while_expression] = STATE(1166), - [sym_while_let_expression] = STATE(1166), - [sym_loop_expression] = STATE(1166), - [sym_for_expression] = STATE(1166), - [sym_closure_expression] = STATE(1166), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1166), - [sym_continue_expression] = STATE(1166), - [sym_index_expression] = STATE(1166), - [sym_await_expression] = STATE(1166), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1166), - [sym_async_block] = STATE(1166), - [sym_block] = STATE(1166), - [sym__literal] = STATE(1166), - [sym_string_literal] = STATE(1166), - [sym_boolean_literal] = STATE(1166), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1199), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(1199), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1199), + [sym_unary_expression] = STATE(1199), + [sym_try_expression] = STATE(1199), + [sym_reference_expression] = STATE(1199), + [sym_binary_expression] = STATE(1199), + [sym_assignment_expression] = STATE(1199), + [sym_compound_assignment_expr] = STATE(1199), + [sym_type_cast_expression] = STATE(1199), + [sym_return_expression] = STATE(1199), + [sym_call_expression] = STATE(1199), + [sym_array_expression] = STATE(1199), + [sym_parenthesized_expression] = STATE(1199), + [sym_tuple_expression] = STATE(1199), + [sym_unit_expression] = STATE(1199), + [sym_struct_expression] = STATE(1199), + [sym_if_expression] = STATE(1199), + [sym_if_let_expression] = STATE(1199), + [sym_match_expression] = STATE(1199), + [sym_while_expression] = STATE(1199), + [sym_while_let_expression] = STATE(1199), + [sym_loop_expression] = STATE(1199), + [sym_for_expression] = STATE(1199), + [sym_closure_expression] = STATE(1199), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(20), + [sym_break_expression] = STATE(1199), + [sym_continue_expression] = STATE(1199), + [sym_index_expression] = STATE(1199), + [sym_await_expression] = STATE(1199), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1199), + [sym_async_block] = STATE(1199), + [sym_block] = STATE(1199), + [sym__literal] = STATE(1199), + [sym_string_literal] = STATE(1199), + [sym_boolean_literal] = STATE(1199), [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_STAR] = ACTIONS(345), - [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_PLUS] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(347), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -11508,8 +11530,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(357), [anon_sym_str] = ACTIONS(357), [anon_sym_char] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_as] = ACTIONS(349), [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), @@ -11523,39 +11545,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(363), - [anon_sym_EQ] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(345), - [anon_sym_GT] = ACTIONS(345), + [anon_sym_EQ] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(349), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_CARET] = ACTIONS(345), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_LT] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_SLASH] = ACTIONS(345), - [anon_sym_PERCENT] = ACTIONS(345), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_STAR_EQ] = ACTIONS(343), - [anon_sym_SLASH_EQ] = ACTIONS(343), - [anon_sym_PERCENT_EQ] = ACTIONS(343), - [anon_sym_AMP_EQ] = ACTIONS(343), - [anon_sym_PIPE_EQ] = ACTIONS(343), - [anon_sym_CARET_EQ] = ACTIONS(343), - [anon_sym_LT_LT_EQ] = ACTIONS(343), - [anon_sym_GT_GT_EQ] = ACTIONS(343), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(347), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(349), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(347), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(349), + [anon_sym_PERCENT] = ACTIONS(349), + [anon_sym_PLUS_EQ] = ACTIONS(347), + [anon_sym_DASH_EQ] = ACTIONS(347), + [anon_sym_STAR_EQ] = ACTIONS(347), + [anon_sym_SLASH_EQ] = ACTIONS(347), + [anon_sym_PERCENT_EQ] = ACTIONS(347), + [anon_sym_AMP_EQ] = ACTIONS(347), + [anon_sym_PIPE_EQ] = ACTIONS(347), + [anon_sym_CARET_EQ] = ACTIONS(347), + [anon_sym_LT_LT_EQ] = ACTIONS(347), + [anon_sym_GT_GT_EQ] = ACTIONS(347), [anon_sym_move] = ACTIONS(367), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(349), [sym_integer_literal] = ACTIONS(387), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(387), @@ -11571,7 +11593,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym__else_tail] = STATE(33), + [sym__else_tail] = STATE(37), [ts_builtin_sym_end] = ACTIONS(389), [sym_identifier] = ACTIONS(391), [anon_sym_SEMI] = ACTIONS(389), @@ -11678,7 +11700,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym__else_tail] = STATE(51), + [sym__else_tail] = STATE(48), [ts_builtin_sym_end] = ACTIONS(395), [sym_identifier] = ACTIONS(397), [anon_sym_SEMI] = ACTIONS(395), @@ -11891,56 +11913,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_attribute_item] = STATE(541), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1070), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1070), - [sym_macro_invocation] = STATE(1070), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1070), - [sym_unary_expression] = STATE(1070), - [sym_try_expression] = STATE(1070), - [sym_reference_expression] = STATE(1070), - [sym_binary_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1070), - [sym_compound_assignment_expr] = STATE(1070), - [sym_type_cast_expression] = STATE(1070), - [sym_return_expression] = STATE(1070), - [sym_call_expression] = STATE(1070), - [sym_array_expression] = STATE(1070), - [sym_parenthesized_expression] = STATE(1070), - [sym_tuple_expression] = STATE(1070), - [sym_unit_expression] = STATE(1070), - [sym_struct_expression] = STATE(1070), - [sym_if_expression] = STATE(1070), - [sym_if_let_expression] = STATE(1070), - [sym_match_expression] = STATE(1070), - [sym_while_expression] = STATE(1070), - [sym_while_let_expression] = STATE(1070), - [sym_loop_expression] = STATE(1070), - [sym_for_expression] = STATE(1070), - [sym_closure_expression] = STATE(1070), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1070), - [sym_continue_expression] = STATE(1070), - [sym_index_expression] = STATE(1070), - [sym_await_expression] = STATE(1070), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1070), - [sym_async_block] = STATE(1070), - [sym_block] = STATE(1070), - [sym__literal] = STATE(1070), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(541), + [sym_attribute_item] = STATE(61), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1077), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1077), + [sym_macro_invocation] = STATE(1077), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1077), + [sym_unary_expression] = STATE(1077), + [sym_try_expression] = STATE(1077), + [sym_reference_expression] = STATE(1077), + [sym_binary_expression] = STATE(1077), + [sym_assignment_expression] = STATE(1077), + [sym_compound_assignment_expr] = STATE(1077), + [sym_type_cast_expression] = STATE(1077), + [sym_return_expression] = STATE(1077), + [sym_call_expression] = STATE(1077), + [sym_array_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_tuple_expression] = STATE(1077), + [sym_unit_expression] = STATE(1077), + [sym_struct_expression] = STATE(1077), + [sym_if_expression] = STATE(1077), + [sym_if_let_expression] = STATE(1077), + [sym_match_expression] = STATE(1077), + [sym_while_expression] = STATE(1077), + [sym_while_let_expression] = STATE(1077), + [sym_loop_expression] = STATE(1077), + [sym_for_expression] = STATE(1077), + [sym_closure_expression] = STATE(1077), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1077), + [sym_continue_expression] = STATE(1077), + [sym_index_expression] = STATE(1077), + [sym_await_expression] = STATE(1077), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1077), + [sym_async_block] = STATE(1077), + [sym_block] = STATE(1077), + [sym__literal] = STATE(1077), + [sym_string_literal] = STATE(1077), + [sym_boolean_literal] = STATE(1077), + [aux_sym_enum_variant_list_repeat1] = STATE(61), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(403), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(403), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -12103,56 +12125,162 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_attribute_item] = STATE(28), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1068), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1068), - [sym_macro_invocation] = STATE(1068), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1068), - [sym_unary_expression] = STATE(1068), - [sym_try_expression] = STATE(1068), - [sym_reference_expression] = STATE(1068), - [sym_binary_expression] = STATE(1068), - [sym_assignment_expression] = STATE(1068), - [sym_compound_assignment_expr] = STATE(1068), - [sym_type_cast_expression] = STATE(1068), - [sym_return_expression] = STATE(1068), - [sym_call_expression] = STATE(1068), - [sym_array_expression] = STATE(1068), - [sym_parenthesized_expression] = STATE(1068), - [sym_tuple_expression] = STATE(1068), - [sym_unit_expression] = STATE(1068), - [sym_struct_expression] = STATE(1068), - [sym_if_expression] = STATE(1068), - [sym_if_let_expression] = STATE(1068), - [sym_match_expression] = STATE(1068), - [sym_while_expression] = STATE(1068), - [sym_while_let_expression] = STATE(1068), - [sym_loop_expression] = STATE(1068), - [sym_for_expression] = STATE(1068), - [sym_closure_expression] = STATE(1068), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1068), - [sym_continue_expression] = STATE(1068), - [sym_index_expression] = STATE(1068), - [sym_await_expression] = STATE(1068), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1068), - [sym_async_block] = STATE(1068), - [sym_block] = STATE(1068), - [sym__literal] = STATE(1068), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(28), + [ts_builtin_sym_end] = ACTIONS(415), + [sym_identifier] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_macro_rules_BANG] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(415), + [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(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_default] = ACTIONS(417), + [anon_sym_enum] = ACTIONS(417), + [anon_sym_fn] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_impl] = ACTIONS(417), + [anon_sym_let] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(417), + [anon_sym_match] = ACTIONS(417), + [anon_sym_mod] = ACTIONS(417), + [anon_sym_pub] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_struct] = ACTIONS(417), + [anon_sym_trait] = ACTIONS(417), + [anon_sym_type] = ACTIONS(417), + [anon_sym_union] = ACTIONS(417), + [anon_sym_unsafe] = ACTIONS(417), + [anon_sym_use] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(417), + [anon_sym_extern] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ] = ACTIONS(415), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PERCENT] = ACTIONS(417), + [anon_sym_PLUS_EQ] = ACTIONS(415), + [anon_sym_DASH_EQ] = ACTIONS(415), + [anon_sym_STAR_EQ] = ACTIONS(415), + [anon_sym_SLASH_EQ] = ACTIONS(415), + [anon_sym_PERCENT_EQ] = ACTIONS(415), + [anon_sym_AMP_EQ] = ACTIONS(415), + [anon_sym_PIPE_EQ] = ACTIONS(415), + [anon_sym_CARET_EQ] = ACTIONS(415), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_GT_GT_EQ] = ACTIONS(415), + [anon_sym_else] = ACTIONS(417), + [anon_sym_move] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(417), + [sym_integer_literal] = ACTIONS(415), + [aux_sym_string_literal_token1] = ACTIONS(415), + [sym_char_literal] = ACTIONS(415), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(417), + [sym_super] = ACTIONS(417), + [sym_crate] = ACTIONS(417), + [sym_metavariable] = ACTIONS(415), + [sym_raw_string_literal] = ACTIONS(415), + [sym_float_literal] = ACTIONS(415), + [sym_block_comment] = ACTIONS(3), + }, + [31] = { + [sym_attribute_item] = STATE(32), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1072), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1072), + [sym_macro_invocation] = STATE(1072), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1072), + [sym_unary_expression] = STATE(1072), + [sym_try_expression] = STATE(1072), + [sym_reference_expression] = STATE(1072), + [sym_binary_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1072), + [sym_compound_assignment_expr] = STATE(1072), + [sym_type_cast_expression] = STATE(1072), + [sym_return_expression] = STATE(1072), + [sym_call_expression] = STATE(1072), + [sym_array_expression] = STATE(1072), + [sym_parenthesized_expression] = STATE(1072), + [sym_tuple_expression] = STATE(1072), + [sym_unit_expression] = STATE(1072), + [sym_struct_expression] = STATE(1072), + [sym_if_expression] = STATE(1072), + [sym_if_let_expression] = STATE(1072), + [sym_match_expression] = STATE(1072), + [sym_while_expression] = STATE(1072), + [sym_while_let_expression] = STATE(1072), + [sym_loop_expression] = STATE(1072), + [sym_for_expression] = STATE(1072), + [sym_closure_expression] = STATE(1072), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1072), + [sym_continue_expression] = STATE(1072), + [sym_index_expression] = STATE(1072), + [sym_await_expression] = STATE(1072), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1072), + [sym_async_block] = STATE(1072), + [sym_block] = STATE(1072), + [sym__literal] = STATE(1072), + [sym_string_literal] = STATE(1072), + [sym_boolean_literal] = STATE(1072), + [aux_sym_enum_variant_list_repeat1] = STATE(32), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(415), + [anon_sym_RBRACK] = ACTIONS(419), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -12186,7 +12314,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(315), [anon_sym_POUND] = ACTIONS(405), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(421), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), @@ -12194,9 +12322,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(419), + [sym_integer_literal] = ACTIONS(423), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(419), + [sym_char_literal] = ACTIONS(423), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -12204,167 +12332,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(419), - [sym_float_literal] = ACTIONS(419), - [sym_block_comment] = ACTIONS(3), - }, - [31] = { - [ts_builtin_sym_end] = ACTIONS(421), - [sym_identifier] = ACTIONS(423), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_macro_rules_BANG] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_QMARK] = ACTIONS(421), - [anon_sym_u8] = ACTIONS(423), - [anon_sym_i8] = ACTIONS(423), - [anon_sym_u16] = ACTIONS(423), - [anon_sym_i16] = ACTIONS(423), - [anon_sym_u32] = ACTIONS(423), - [anon_sym_i32] = ACTIONS(423), - [anon_sym_u64] = ACTIONS(423), - [anon_sym_i64] = ACTIONS(423), - [anon_sym_u128] = ACTIONS(423), - [anon_sym_i128] = ACTIONS(423), - [anon_sym_isize] = ACTIONS(423), - [anon_sym_usize] = ACTIONS(423), - [anon_sym_f32] = ACTIONS(423), - [anon_sym_f64] = ACTIONS(423), - [anon_sym_bool] = ACTIONS(423), - [anon_sym_str] = ACTIONS(423), - [anon_sym_char] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(423), - [anon_sym_as] = ACTIONS(423), - [anon_sym_async] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_const] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(423), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_fn] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_impl] = ACTIONS(423), - [anon_sym_let] = ACTIONS(423), - [anon_sym_loop] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_mod] = ACTIONS(423), - [anon_sym_pub] = ACTIONS(423), - [anon_sym_return] = ACTIONS(423), - [anon_sym_static] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_trait] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_union] = ACTIONS(423), - [anon_sym_unsafe] = ACTIONS(423), - [anon_sym_use] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_POUND] = ACTIONS(421), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_extern] = ACTIONS(423), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_COLON_COLON] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(421), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_AMP_AMP] = ACTIONS(421), - [anon_sym_PIPE_PIPE] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT_EQ] = ACTIONS(421), - [anon_sym_GT_EQ] = ACTIONS(421), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_PERCENT] = ACTIONS(423), - [anon_sym_PLUS_EQ] = ACTIONS(421), - [anon_sym_DASH_EQ] = ACTIONS(421), - [anon_sym_STAR_EQ] = ACTIONS(421), - [anon_sym_SLASH_EQ] = ACTIONS(421), - [anon_sym_PERCENT_EQ] = ACTIONS(421), - [anon_sym_AMP_EQ] = ACTIONS(421), - [anon_sym_PIPE_EQ] = ACTIONS(421), - [anon_sym_CARET_EQ] = ACTIONS(421), - [anon_sym_LT_LT_EQ] = ACTIONS(421), - [anon_sym_GT_GT_EQ] = ACTIONS(421), - [anon_sym_else] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [sym_integer_literal] = ACTIONS(421), - [aux_sym_string_literal_token1] = ACTIONS(421), - [sym_char_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(423), - [sym_super] = ACTIONS(423), - [sym_crate] = ACTIONS(423), - [sym_metavariable] = ACTIONS(421), - [sym_raw_string_literal] = ACTIONS(421), - [sym_float_literal] = ACTIONS(421), + [sym_raw_string_literal] = ACTIONS(423), + [sym_float_literal] = ACTIONS(423), [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_attribute_item] = STATE(61), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1081), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1081), - [sym_macro_invocation] = STATE(1081), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(1081), - [sym_try_expression] = STATE(1081), - [sym_reference_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_assignment_expression] = STATE(1081), - [sym_compound_assignment_expr] = STATE(1081), - [sym_type_cast_expression] = STATE(1081), - [sym_return_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_array_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_tuple_expression] = STATE(1081), - [sym_unit_expression] = STATE(1081), - [sym_struct_expression] = STATE(1081), - [sym_if_expression] = STATE(1081), - [sym_if_let_expression] = STATE(1081), - [sym_match_expression] = STATE(1081), - [sym_while_expression] = STATE(1081), - [sym_while_let_expression] = STATE(1081), - [sym_loop_expression] = STATE(1081), - [sym_for_expression] = STATE(1081), - [sym_closure_expression] = STATE(1081), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1081), - [sym_continue_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_await_expression] = STATE(1081), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1081), - [sym_async_block] = STATE(1081), - [sym_block] = STATE(1081), - [sym__literal] = STATE(1081), - [sym_string_literal] = STATE(1081), - [sym_boolean_literal] = STATE(1081), - [aux_sym_enum_variant_list_repeat1] = STATE(61), + [sym_attribute_item] = STATE(528), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1070), + [sym_macro_invocation] = STATE(1070), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1070), + [sym_unary_expression] = STATE(1070), + [sym_try_expression] = STATE(1070), + [sym_reference_expression] = STATE(1070), + [sym_binary_expression] = STATE(1070), + [sym_assignment_expression] = STATE(1070), + [sym_compound_assignment_expr] = STATE(1070), + [sym_type_cast_expression] = STATE(1070), + [sym_return_expression] = STATE(1070), + [sym_call_expression] = STATE(1070), + [sym_array_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(1070), + [sym_tuple_expression] = STATE(1070), + [sym_unit_expression] = STATE(1070), + [sym_struct_expression] = STATE(1070), + [sym_if_expression] = STATE(1070), + [sym_if_let_expression] = STATE(1070), + [sym_match_expression] = STATE(1070), + [sym_while_expression] = STATE(1070), + [sym_while_let_expression] = STATE(1070), + [sym_loop_expression] = STATE(1070), + [sym_for_expression] = STATE(1070), + [sym_closure_expression] = STATE(1070), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1070), + [sym_continue_expression] = STATE(1070), + [sym_index_expression] = STATE(1070), + [sym_await_expression] = STATE(1070), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1070), + [sym_async_block] = STATE(1070), + [sym_block] = STATE(1070), + [sym__literal] = STATE(1070), + [sym_string_literal] = STATE(1070), + [sym_boolean_literal] = STATE(1070), + [aux_sym_enum_variant_list_repeat1] = STATE(528), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(425), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(425), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -12736,108 +12758,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_attribute_item] = STATE(64), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1129), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(1129), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1129), - [sym_unary_expression] = STATE(1129), - [sym_try_expression] = STATE(1129), - [sym_reference_expression] = STATE(1129), - [sym_binary_expression] = STATE(1129), - [sym_assignment_expression] = STATE(1129), - [sym_compound_assignment_expr] = STATE(1129), - [sym_type_cast_expression] = STATE(1129), - [sym_return_expression] = STATE(1129), - [sym_call_expression] = STATE(1129), - [sym_array_expression] = STATE(1129), - [sym_parenthesized_expression] = STATE(1129), - [sym_tuple_expression] = STATE(1129), - [sym_unit_expression] = STATE(1129), - [sym_struct_expression] = STATE(1129), - [sym_if_expression] = STATE(1129), - [sym_if_let_expression] = STATE(1129), - [sym_match_expression] = STATE(1129), - [sym_while_expression] = STATE(1129), - [sym_while_let_expression] = STATE(1129), - [sym_loop_expression] = STATE(1129), - [sym_for_expression] = STATE(1129), - [sym_closure_expression] = STATE(1129), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1129), - [sym_continue_expression] = STATE(1129), - [sym_index_expression] = STATE(1129), - [sym_await_expression] = STATE(1129), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1129), - [sym_async_block] = STATE(1129), - [sym_block] = STATE(1129), - [sym__literal] = STATE(1129), - [sym_string_literal] = STATE(1129), - [sym_boolean_literal] = STATE(1129), - [aux_sym_enum_variant_list_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(295), - [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(301), - [anon_sym_break] = ACTIONS(27), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_POUND] = ACTIONS(405), - [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_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(445), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(445), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(443), + [sym_identifier] = ACTIONS(445), + [anon_sym_SEMI] = ACTIONS(443), + [anon_sym_macro_rules_BANG] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(443), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(443), + [anon_sym_u8] = ACTIONS(445), + [anon_sym_i8] = ACTIONS(445), + [anon_sym_u16] = ACTIONS(445), + [anon_sym_i16] = ACTIONS(445), + [anon_sym_u32] = ACTIONS(445), + [anon_sym_i32] = ACTIONS(445), + [anon_sym_u64] = ACTIONS(445), + [anon_sym_i64] = ACTIONS(445), + [anon_sym_u128] = ACTIONS(445), + [anon_sym_i128] = ACTIONS(445), + [anon_sym_isize] = ACTIONS(445), + [anon_sym_usize] = ACTIONS(445), + [anon_sym_f32] = ACTIONS(445), + [anon_sym_f64] = ACTIONS(445), + [anon_sym_bool] = ACTIONS(445), + [anon_sym_str] = ACTIONS(445), + [anon_sym_char] = ACTIONS(445), + [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_as] = ACTIONS(445), + [anon_sym_async] = ACTIONS(445), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(445), + [anon_sym_default] = ACTIONS(445), + [anon_sym_enum] = ACTIONS(445), + [anon_sym_fn] = ACTIONS(445), + [anon_sym_for] = ACTIONS(445), + [anon_sym_if] = ACTIONS(445), + [anon_sym_impl] = ACTIONS(445), + [anon_sym_let] = ACTIONS(445), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(445), + [anon_sym_mod] = ACTIONS(445), + [anon_sym_pub] = ACTIONS(445), + [anon_sym_return] = ACTIONS(445), + [anon_sym_static] = ACTIONS(445), + [anon_sym_struct] = ACTIONS(445), + [anon_sym_trait] = ACTIONS(445), + [anon_sym_type] = ACTIONS(445), + [anon_sym_union] = ACTIONS(445), + [anon_sym_unsafe] = ACTIONS(445), + [anon_sym_use] = ACTIONS(445), + [anon_sym_while] = ACTIONS(445), + [anon_sym_POUND] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(445), + [anon_sym_extern] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(445), + [anon_sym_GT] = ACTIONS(445), + [anon_sym_COLON_COLON] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(443), + [anon_sym_DOT_DOT] = ACTIONS(445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(443), + [anon_sym_PIPE_PIPE] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(445), + [anon_sym_CARET] = ACTIONS(445), + [anon_sym_EQ_EQ] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(443), + [anon_sym_LT_EQ] = ACTIONS(443), + [anon_sym_GT_EQ] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(445), + [anon_sym_GT_GT] = ACTIONS(445), + [anon_sym_SLASH] = ACTIONS(445), + [anon_sym_PERCENT] = ACTIONS(445), + [anon_sym_PLUS_EQ] = ACTIONS(443), + [anon_sym_DASH_EQ] = ACTIONS(443), + [anon_sym_STAR_EQ] = ACTIONS(443), + [anon_sym_SLASH_EQ] = ACTIONS(443), + [anon_sym_PERCENT_EQ] = ACTIONS(443), + [anon_sym_AMP_EQ] = ACTIONS(443), + [anon_sym_PIPE_EQ] = ACTIONS(443), + [anon_sym_CARET_EQ] = ACTIONS(443), + [anon_sym_LT_LT_EQ] = ACTIONS(443), + [anon_sym_GT_GT_EQ] = ACTIONS(443), + [anon_sym_move] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(443), + [aux_sym_string_literal_token1] = ACTIONS(443), + [sym_char_literal] = ACTIONS(443), + [anon_sym_true] = ACTIONS(445), + [anon_sym_false] = ACTIONS(445), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(445), - [sym_float_literal] = ACTIONS(445), + [sym_self] = ACTIONS(445), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(443), + [sym_raw_string_literal] = ACTIONS(443), + [sym_float_literal] = ACTIONS(443), [sym_block_comment] = ACTIONS(3), }, [37] = { @@ -13051,54 +13073,264 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { + [ts_builtin_sym_end] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), + [anon_sym_SEMI] = ACTIONS(455), + [anon_sym_macro_rules_BANG] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(455), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_u8] = ACTIONS(457), + [anon_sym_i8] = ACTIONS(457), + [anon_sym_u16] = ACTIONS(457), + [anon_sym_i16] = ACTIONS(457), + [anon_sym_u32] = ACTIONS(457), + [anon_sym_i32] = ACTIONS(457), + [anon_sym_u64] = ACTIONS(457), + [anon_sym_i64] = ACTIONS(457), + [anon_sym_u128] = ACTIONS(457), + [anon_sym_i128] = ACTIONS(457), + [anon_sym_isize] = ACTIONS(457), + [anon_sym_usize] = ACTIONS(457), + [anon_sym_f32] = ACTIONS(457), + [anon_sym_f64] = ACTIONS(457), + [anon_sym_bool] = ACTIONS(457), + [anon_sym_str] = ACTIONS(457), + [anon_sym_char] = ACTIONS(457), + [anon_sym_SQUOTE] = ACTIONS(457), + [anon_sym_as] = ACTIONS(457), + [anon_sym_async] = ACTIONS(457), + [anon_sym_break] = ACTIONS(457), + [anon_sym_const] = ACTIONS(457), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_default] = ACTIONS(457), + [anon_sym_enum] = ACTIONS(457), + [anon_sym_fn] = ACTIONS(457), + [anon_sym_for] = ACTIONS(457), + [anon_sym_if] = ACTIONS(457), + [anon_sym_impl] = ACTIONS(457), + [anon_sym_let] = ACTIONS(457), + [anon_sym_loop] = ACTIONS(457), + [anon_sym_match] = ACTIONS(457), + [anon_sym_mod] = ACTIONS(457), + [anon_sym_pub] = ACTIONS(457), + [anon_sym_return] = ACTIONS(457), + [anon_sym_static] = ACTIONS(457), + [anon_sym_struct] = ACTIONS(457), + [anon_sym_trait] = ACTIONS(457), + [anon_sym_type] = ACTIONS(457), + [anon_sym_union] = ACTIONS(457), + [anon_sym_unsafe] = ACTIONS(457), + [anon_sym_use] = ACTIONS(457), + [anon_sym_while] = ACTIONS(457), + [anon_sym_POUND] = ACTIONS(455), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_EQ] = ACTIONS(457), + [anon_sym_extern] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(457), + [anon_sym_COLON_COLON] = ACTIONS(455), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT] = ACTIONS(457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_AMP_AMP] = ACTIONS(455), + [anon_sym_PIPE_PIPE] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(455), + [anon_sym_GT_EQ] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(457), + [anon_sym_PERCENT] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(455), + [anon_sym_DASH_EQ] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(455), + [anon_sym_SLASH_EQ] = ACTIONS(455), + [anon_sym_PERCENT_EQ] = ACTIONS(455), + [anon_sym_AMP_EQ] = ACTIONS(455), + [anon_sym_PIPE_EQ] = ACTIONS(455), + [anon_sym_CARET_EQ] = ACTIONS(455), + [anon_sym_LT_LT_EQ] = ACTIONS(455), + [anon_sym_GT_GT_EQ] = ACTIONS(455), + [anon_sym_move] = ACTIONS(457), + [anon_sym_DOT] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(455), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(457), + [anon_sym_false] = ACTIONS(457), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(457), + [sym_crate] = ACTIONS(457), + [sym_metavariable] = ACTIONS(455), + [sym_raw_string_literal] = ACTIONS(455), + [sym_float_literal] = ACTIONS(455), + [sym_block_comment] = ACTIONS(3), + }, + [40] = { + [ts_builtin_sym_end] = ACTIONS(459), + [sym_identifier] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(459), + [anon_sym_macro_rules_BANG] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_LBRACE] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(461), + [anon_sym_i8] = ACTIONS(461), + [anon_sym_u16] = ACTIONS(461), + [anon_sym_i16] = ACTIONS(461), + [anon_sym_u32] = ACTIONS(461), + [anon_sym_i32] = ACTIONS(461), + [anon_sym_u64] = ACTIONS(461), + [anon_sym_i64] = ACTIONS(461), + [anon_sym_u128] = ACTIONS(461), + [anon_sym_i128] = ACTIONS(461), + [anon_sym_isize] = ACTIONS(461), + [anon_sym_usize] = ACTIONS(461), + [anon_sym_f32] = ACTIONS(461), + [anon_sym_f64] = ACTIONS(461), + [anon_sym_bool] = ACTIONS(461), + [anon_sym_str] = ACTIONS(461), + [anon_sym_char] = ACTIONS(461), + [anon_sym_SQUOTE] = ACTIONS(461), + [anon_sym_as] = ACTIONS(461), + [anon_sym_async] = ACTIONS(461), + [anon_sym_break] = ACTIONS(461), + [anon_sym_const] = ACTIONS(461), + [anon_sym_continue] = ACTIONS(461), + [anon_sym_default] = ACTIONS(461), + [anon_sym_enum] = ACTIONS(461), + [anon_sym_fn] = ACTIONS(461), + [anon_sym_for] = ACTIONS(461), + [anon_sym_if] = ACTIONS(461), + [anon_sym_impl] = ACTIONS(461), + [anon_sym_let] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(461), + [anon_sym_match] = ACTIONS(461), + [anon_sym_mod] = ACTIONS(461), + [anon_sym_pub] = ACTIONS(461), + [anon_sym_return] = ACTIONS(461), + [anon_sym_static] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(461), + [anon_sym_trait] = ACTIONS(461), + [anon_sym_type] = ACTIONS(461), + [anon_sym_union] = ACTIONS(461), + [anon_sym_unsafe] = ACTIONS(461), + [anon_sym_use] = ACTIONS(461), + [anon_sym_while] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_extern] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(459), + [anon_sym_AMP] = ACTIONS(461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [anon_sym_DOT_DOT] = ACTIONS(461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(459), + [anon_sym_GT_EQ] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_PLUS_EQ] = ACTIONS(459), + [anon_sym_DASH_EQ] = ACTIONS(459), + [anon_sym_STAR_EQ] = ACTIONS(459), + [anon_sym_SLASH_EQ] = ACTIONS(459), + [anon_sym_PERCENT_EQ] = ACTIONS(459), + [anon_sym_AMP_EQ] = ACTIONS(459), + [anon_sym_PIPE_EQ] = ACTIONS(459), + [anon_sym_CARET_EQ] = ACTIONS(459), + [anon_sym_LT_LT_EQ] = ACTIONS(459), + [anon_sym_GT_GT_EQ] = ACTIONS(459), + [anon_sym_move] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(459), + [aux_sym_string_literal_token1] = ACTIONS(459), + [sym_char_literal] = ACTIONS(459), + [anon_sym_true] = ACTIONS(461), + [anon_sym_false] = ACTIONS(461), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(461), + [sym_crate] = ACTIONS(461), + [sym_metavariable] = ACTIONS(459), + [sym_raw_string_literal] = ACTIONS(459), + [sym_float_literal] = ACTIONS(459), + [sym_block_comment] = ACTIONS(3), + }, + [41] = { [sym_attribute_item] = STATE(64), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1129), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(1129), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1129), - [sym_unary_expression] = STATE(1129), - [sym_try_expression] = STATE(1129), - [sym_reference_expression] = STATE(1129), - [sym_binary_expression] = STATE(1129), - [sym_assignment_expression] = STATE(1129), - [sym_compound_assignment_expr] = STATE(1129), - [sym_type_cast_expression] = STATE(1129), - [sym_return_expression] = STATE(1129), - [sym_call_expression] = STATE(1129), - [sym_array_expression] = STATE(1129), - [sym_parenthesized_expression] = STATE(1129), - [sym_tuple_expression] = STATE(1129), - [sym_unit_expression] = STATE(1129), - [sym_struct_expression] = STATE(1129), - [sym_if_expression] = STATE(1129), - [sym_if_let_expression] = STATE(1129), - [sym_match_expression] = STATE(1129), - [sym_while_expression] = STATE(1129), - [sym_while_let_expression] = STATE(1129), - [sym_loop_expression] = STATE(1129), - [sym_for_expression] = STATE(1129), - [sym_closure_expression] = STATE(1129), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1129), - [sym_continue_expression] = STATE(1129), - [sym_index_expression] = STATE(1129), - [sym_await_expression] = STATE(1129), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1129), - [sym_async_block] = STATE(1129), - [sym_block] = STATE(1129), - [sym__literal] = STATE(1129), - [sym_string_literal] = STATE(1129), - [sym_boolean_literal] = STATE(1129), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1115), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1115), + [sym_macro_invocation] = STATE(1115), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1115), + [sym_unary_expression] = STATE(1115), + [sym_try_expression] = STATE(1115), + [sym_reference_expression] = STATE(1115), + [sym_binary_expression] = STATE(1115), + [sym_assignment_expression] = STATE(1115), + [sym_compound_assignment_expr] = STATE(1115), + [sym_type_cast_expression] = STATE(1115), + [sym_return_expression] = STATE(1115), + [sym_call_expression] = STATE(1115), + [sym_array_expression] = STATE(1115), + [sym_parenthesized_expression] = STATE(1115), + [sym_tuple_expression] = STATE(1115), + [sym_unit_expression] = STATE(1115), + [sym_struct_expression] = STATE(1115), + [sym_if_expression] = STATE(1115), + [sym_if_let_expression] = STATE(1115), + [sym_match_expression] = STATE(1115), + [sym_while_expression] = STATE(1115), + [sym_while_let_expression] = STATE(1115), + [sym_loop_expression] = STATE(1115), + [sym_for_expression] = STATE(1115), + [sym_closure_expression] = STATE(1115), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1115), + [sym_continue_expression] = STATE(1115), + [sym_index_expression] = STATE(1115), + [sym_await_expression] = STATE(1115), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1115), + [sym_async_block] = STATE(1115), + [sym_block] = STATE(1115), + [sym__literal] = STATE(1115), + [sym_string_literal] = STATE(1115), + [sym_boolean_literal] = STATE(1115), [aux_sym_enum_variant_list_repeat1] = STATE(64), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(455), + [anon_sym_RPAREN] = ACTIONS(463), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -13141,9 +13373,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(465), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(445), + [sym_char_literal] = ACTIONS(465), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -13151,743 +13383,533 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(445), - [sym_float_literal] = ACTIONS(445), - [sym_block_comment] = ACTIONS(3), - }, - [40] = { - [ts_builtin_sym_end] = ACTIONS(457), - [sym_identifier] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_macro_rules_BANG] = ACTIONS(457), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_u8] = ACTIONS(459), - [anon_sym_i8] = ACTIONS(459), - [anon_sym_u16] = ACTIONS(459), - [anon_sym_i16] = ACTIONS(459), - [anon_sym_u32] = ACTIONS(459), - [anon_sym_i32] = ACTIONS(459), - [anon_sym_u64] = ACTIONS(459), - [anon_sym_i64] = ACTIONS(459), - [anon_sym_u128] = ACTIONS(459), - [anon_sym_i128] = ACTIONS(459), - [anon_sym_isize] = ACTIONS(459), - [anon_sym_usize] = ACTIONS(459), - [anon_sym_f32] = ACTIONS(459), - [anon_sym_f64] = ACTIONS(459), - [anon_sym_bool] = ACTIONS(459), - [anon_sym_str] = ACTIONS(459), - [anon_sym_char] = ACTIONS(459), - [anon_sym_SQUOTE] = ACTIONS(459), - [anon_sym_as] = ACTIONS(459), - [anon_sym_async] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_const] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_default] = ACTIONS(459), - [anon_sym_enum] = ACTIONS(459), - [anon_sym_fn] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_impl] = ACTIONS(459), - [anon_sym_let] = ACTIONS(459), - [anon_sym_loop] = ACTIONS(459), - [anon_sym_match] = ACTIONS(459), - [anon_sym_mod] = ACTIONS(459), - [anon_sym_pub] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_static] = ACTIONS(459), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_trait] = ACTIONS(459), - [anon_sym_type] = ACTIONS(459), - [anon_sym_union] = ACTIONS(459), - [anon_sym_unsafe] = ACTIONS(459), - [anon_sym_use] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_EQ] = ACTIONS(459), - [anon_sym_extern] = ACTIONS(459), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(457), - [anon_sym_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(459), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_STAR_EQ] = ACTIONS(457), - [anon_sym_SLASH_EQ] = ACTIONS(457), - [anon_sym_PERCENT_EQ] = ACTIONS(457), - [anon_sym_AMP_EQ] = ACTIONS(457), - [anon_sym_PIPE_EQ] = ACTIONS(457), - [anon_sym_CARET_EQ] = ACTIONS(457), - [anon_sym_LT_LT_EQ] = ACTIONS(457), - [anon_sym_GT_GT_EQ] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(459), - [sym_integer_literal] = ACTIONS(457), - [aux_sym_string_literal_token1] = ACTIONS(457), - [sym_char_literal] = ACTIONS(457), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(459), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(457), - [sym_raw_string_literal] = ACTIONS(457), - [sym_float_literal] = ACTIONS(457), - [sym_block_comment] = ACTIONS(3), - }, - [41] = { - [ts_builtin_sym_end] = ACTIONS(461), - [sym_identifier] = ACTIONS(463), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_macro_rules_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_STAR] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_u8] = ACTIONS(463), - [anon_sym_i8] = ACTIONS(463), - [anon_sym_u16] = ACTIONS(463), - [anon_sym_i16] = ACTIONS(463), - [anon_sym_u32] = ACTIONS(463), - [anon_sym_i32] = ACTIONS(463), - [anon_sym_u64] = ACTIONS(463), - [anon_sym_i64] = ACTIONS(463), - [anon_sym_u128] = ACTIONS(463), - [anon_sym_i128] = ACTIONS(463), - [anon_sym_isize] = ACTIONS(463), - [anon_sym_usize] = ACTIONS(463), - [anon_sym_f32] = ACTIONS(463), - [anon_sym_f64] = ACTIONS(463), - [anon_sym_bool] = ACTIONS(463), - [anon_sym_str] = ACTIONS(463), - [anon_sym_char] = ACTIONS(463), - [anon_sym_SQUOTE] = ACTIONS(463), - [anon_sym_as] = ACTIONS(463), - [anon_sym_async] = ACTIONS(463), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(463), - [anon_sym_default] = ACTIONS(463), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_fn] = ACTIONS(463), - [anon_sym_for] = ACTIONS(463), - [anon_sym_if] = ACTIONS(463), - [anon_sym_impl] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_loop] = ACTIONS(463), - [anon_sym_match] = ACTIONS(463), - [anon_sym_mod] = ACTIONS(463), - [anon_sym_pub] = ACTIONS(463), - [anon_sym_return] = ACTIONS(463), - [anon_sym_static] = ACTIONS(463), - [anon_sym_struct] = ACTIONS(463), - [anon_sym_trait] = ACTIONS(463), - [anon_sym_type] = ACTIONS(463), - [anon_sym_union] = ACTIONS(463), - [anon_sym_unsafe] = ACTIONS(463), - [anon_sym_use] = ACTIONS(463), - [anon_sym_while] = ACTIONS(463), - [anon_sym_POUND] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_extern] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(461), - [anon_sym_DOT_DOT] = ACTIONS(463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(463), - [anon_sym_PERCENT] = ACTIONS(463), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_CARET_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_move] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [sym_integer_literal] = ACTIONS(461), - [aux_sym_string_literal_token1] = ACTIONS(461), - [sym_char_literal] = ACTIONS(461), - [anon_sym_true] = ACTIONS(463), - [anon_sym_false] = ACTIONS(463), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(463), - [sym_super] = ACTIONS(463), - [sym_crate] = ACTIONS(463), - [sym_metavariable] = ACTIONS(461), - [sym_raw_string_literal] = ACTIONS(461), - [sym_float_literal] = ACTIONS(461), + [sym_raw_string_literal] = ACTIONS(465), + [sym_float_literal] = ACTIONS(465), [sym_block_comment] = ACTIONS(3), }, [42] = { - [ts_builtin_sym_end] = ACTIONS(465), - [sym_identifier] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_macro_rules_BANG] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(467), - [anon_sym_STAR] = ACTIONS(467), - [anon_sym_QMARK] = ACTIONS(465), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_as] = ACTIONS(467), - [anon_sym_async] = ACTIONS(467), - [anon_sym_break] = ACTIONS(467), - [anon_sym_const] = ACTIONS(467), - [anon_sym_continue] = ACTIONS(467), - [anon_sym_default] = ACTIONS(467), - [anon_sym_enum] = ACTIONS(467), - [anon_sym_fn] = ACTIONS(467), - [anon_sym_for] = ACTIONS(467), - [anon_sym_if] = ACTIONS(467), - [anon_sym_impl] = ACTIONS(467), - [anon_sym_let] = ACTIONS(467), - [anon_sym_loop] = ACTIONS(467), - [anon_sym_match] = ACTIONS(467), - [anon_sym_mod] = ACTIONS(467), - [anon_sym_pub] = ACTIONS(467), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(467), - [anon_sym_struct] = ACTIONS(467), - [anon_sym_trait] = ACTIONS(467), - [anon_sym_type] = ACTIONS(467), - [anon_sym_union] = ACTIONS(467), - [anon_sym_unsafe] = ACTIONS(467), - [anon_sym_use] = ACTIONS(467), - [anon_sym_while] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(465), - [anon_sym_BANG] = ACTIONS(467), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym_extern] = ACTIONS(467), - [anon_sym_LT] = ACTIONS(467), - [anon_sym_GT] = ACTIONS(467), - [anon_sym_COLON_COLON] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [anon_sym_DOT_DOT] = ACTIONS(467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(467), - [anon_sym_AMP_AMP] = ACTIONS(465), - [anon_sym_PIPE_PIPE] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(465), - [anon_sym_BANG_EQ] = ACTIONS(465), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_SLASH] = ACTIONS(467), - [anon_sym_PERCENT] = ACTIONS(467), - [anon_sym_PLUS_EQ] = ACTIONS(465), - [anon_sym_DASH_EQ] = ACTIONS(465), - [anon_sym_STAR_EQ] = ACTIONS(465), - [anon_sym_SLASH_EQ] = ACTIONS(465), - [anon_sym_PERCENT_EQ] = ACTIONS(465), - [anon_sym_AMP_EQ] = ACTIONS(465), - [anon_sym_PIPE_EQ] = ACTIONS(465), - [anon_sym_CARET_EQ] = ACTIONS(465), - [anon_sym_LT_LT_EQ] = ACTIONS(465), - [anon_sym_GT_GT_EQ] = ACTIONS(465), - [anon_sym_move] = ACTIONS(467), - [anon_sym_DOT] = ACTIONS(467), - [sym_integer_literal] = ACTIONS(465), - [aux_sym_string_literal_token1] = ACTIONS(465), - [sym_char_literal] = ACTIONS(465), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), + [ts_builtin_sym_end] = ACTIONS(467), + [sym_identifier] = ACTIONS(469), + [anon_sym_SEMI] = ACTIONS(467), + [anon_sym_macro_rules_BANG] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(467), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_async] = ACTIONS(469), + [anon_sym_break] = ACTIONS(469), + [anon_sym_const] = ACTIONS(469), + [anon_sym_continue] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(469), + [anon_sym_for] = ACTIONS(469), + [anon_sym_if] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_loop] = ACTIONS(469), + [anon_sym_match] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(469), + [anon_sym_pub] = ACTIONS(469), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(469), + [anon_sym_struct] = ACTIONS(469), + [anon_sym_trait] = ACTIONS(469), + [anon_sym_type] = ACTIONS(469), + [anon_sym_union] = ACTIONS(469), + [anon_sym_unsafe] = ACTIONS(469), + [anon_sym_use] = ACTIONS(469), + [anon_sym_while] = ACTIONS(469), + [anon_sym_POUND] = ACTIONS(467), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_extern] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(467), + [anon_sym_DOT_DOT] = ACTIONS(469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(467), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(467), + [anon_sym_LT_EQ] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(469), + [anon_sym_PERCENT] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(467), + [anon_sym_DASH_EQ] = ACTIONS(467), + [anon_sym_STAR_EQ] = ACTIONS(467), + [anon_sym_SLASH_EQ] = ACTIONS(467), + [anon_sym_PERCENT_EQ] = ACTIONS(467), + [anon_sym_AMP_EQ] = ACTIONS(467), + [anon_sym_PIPE_EQ] = ACTIONS(467), + [anon_sym_CARET_EQ] = ACTIONS(467), + [anon_sym_LT_LT_EQ] = ACTIONS(467), + [anon_sym_GT_GT_EQ] = ACTIONS(467), + [anon_sym_move] = ACTIONS(469), + [anon_sym_DOT] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(467), + [aux_sym_string_literal_token1] = ACTIONS(467), + [sym_char_literal] = ACTIONS(467), + [anon_sym_true] = ACTIONS(469), + [anon_sym_false] = ACTIONS(469), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(467), - [sym_super] = ACTIONS(467), - [sym_crate] = ACTIONS(467), - [sym_metavariable] = ACTIONS(465), - [sym_raw_string_literal] = ACTIONS(465), - [sym_float_literal] = ACTIONS(465), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(467), + [sym_raw_string_literal] = ACTIONS(467), + [sym_float_literal] = ACTIONS(467), [sym_block_comment] = ACTIONS(3), }, [43] = { - [ts_builtin_sym_end] = ACTIONS(469), - [sym_identifier] = ACTIONS(471), - [anon_sym_SEMI] = ACTIONS(469), - [anon_sym_macro_rules_BANG] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_PLUS] = ACTIONS(471), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_QMARK] = ACTIONS(469), - [anon_sym_u8] = ACTIONS(471), - [anon_sym_i8] = ACTIONS(471), - [anon_sym_u16] = ACTIONS(471), - [anon_sym_i16] = ACTIONS(471), - [anon_sym_u32] = ACTIONS(471), - [anon_sym_i32] = ACTIONS(471), - [anon_sym_u64] = ACTIONS(471), - [anon_sym_i64] = ACTIONS(471), - [anon_sym_u128] = ACTIONS(471), - [anon_sym_i128] = ACTIONS(471), - [anon_sym_isize] = ACTIONS(471), - [anon_sym_usize] = ACTIONS(471), - [anon_sym_f32] = ACTIONS(471), - [anon_sym_f64] = ACTIONS(471), - [anon_sym_bool] = ACTIONS(471), - [anon_sym_str] = ACTIONS(471), - [anon_sym_char] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(471), - [anon_sym_as] = ACTIONS(471), - [anon_sym_async] = ACTIONS(471), - [anon_sym_break] = ACTIONS(471), - [anon_sym_const] = ACTIONS(471), - [anon_sym_continue] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_enum] = ACTIONS(471), - [anon_sym_fn] = ACTIONS(471), - [anon_sym_for] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_impl] = ACTIONS(471), - [anon_sym_let] = ACTIONS(471), - [anon_sym_loop] = ACTIONS(471), - [anon_sym_match] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_pub] = ACTIONS(471), - [anon_sym_return] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_struct] = ACTIONS(471), - [anon_sym_trait] = ACTIONS(471), - [anon_sym_type] = ACTIONS(471), - [anon_sym_union] = ACTIONS(471), - [anon_sym_unsafe] = ACTIONS(471), - [anon_sym_use] = ACTIONS(471), - [anon_sym_while] = ACTIONS(471), - [anon_sym_POUND] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_EQ] = ACTIONS(471), - [anon_sym_extern] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(471), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_COLON_COLON] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_DOT_DOT_DOT] = ACTIONS(469), - [anon_sym_DOT_DOT] = ACTIONS(471), - [anon_sym_DOT_DOT_EQ] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_AMP_AMP] = ACTIONS(469), - [anon_sym_PIPE_PIPE] = ACTIONS(469), - [anon_sym_PIPE] = ACTIONS(471), - [anon_sym_CARET] = ACTIONS(471), - [anon_sym_EQ_EQ] = ACTIONS(469), - [anon_sym_BANG_EQ] = ACTIONS(469), - [anon_sym_LT_EQ] = ACTIONS(469), - [anon_sym_GT_EQ] = ACTIONS(469), - [anon_sym_LT_LT] = ACTIONS(471), - [anon_sym_GT_GT] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_PLUS_EQ] = ACTIONS(469), - [anon_sym_DASH_EQ] = ACTIONS(469), - [anon_sym_STAR_EQ] = ACTIONS(469), - [anon_sym_SLASH_EQ] = ACTIONS(469), - [anon_sym_PERCENT_EQ] = ACTIONS(469), - [anon_sym_AMP_EQ] = ACTIONS(469), - [anon_sym_PIPE_EQ] = ACTIONS(469), - [anon_sym_CARET_EQ] = ACTIONS(469), - [anon_sym_LT_LT_EQ] = ACTIONS(469), - [anon_sym_GT_GT_EQ] = ACTIONS(469), - [anon_sym_move] = ACTIONS(471), - [anon_sym_DOT] = ACTIONS(471), - [sym_integer_literal] = ACTIONS(469), - [aux_sym_string_literal_token1] = ACTIONS(469), - [sym_char_literal] = ACTIONS(469), - [anon_sym_true] = ACTIONS(471), - [anon_sym_false] = ACTIONS(471), + [ts_builtin_sym_end] = ACTIONS(471), + [sym_identifier] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(471), + [anon_sym_macro_rules_BANG] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_as] = ACTIONS(473), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(473), + [anon_sym_default] = ACTIONS(473), + [anon_sym_enum] = ACTIONS(473), + [anon_sym_fn] = ACTIONS(473), + [anon_sym_for] = ACTIONS(473), + [anon_sym_if] = ACTIONS(473), + [anon_sym_impl] = ACTIONS(473), + [anon_sym_let] = ACTIONS(473), + [anon_sym_loop] = ACTIONS(473), + [anon_sym_match] = ACTIONS(473), + [anon_sym_mod] = ACTIONS(473), + [anon_sym_pub] = ACTIONS(473), + [anon_sym_return] = ACTIONS(473), + [anon_sym_static] = ACTIONS(473), + [anon_sym_struct] = ACTIONS(473), + [anon_sym_trait] = ACTIONS(473), + [anon_sym_type] = ACTIONS(473), + [anon_sym_union] = ACTIONS(473), + [anon_sym_unsafe] = ACTIONS(473), + [anon_sym_use] = ACTIONS(473), + [anon_sym_while] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_extern] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_move] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [sym_integer_literal] = ACTIONS(471), + [aux_sym_string_literal_token1] = ACTIONS(471), + [sym_char_literal] = ACTIONS(471), + [anon_sym_true] = ACTIONS(473), + [anon_sym_false] = ACTIONS(473), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(471), - [sym_super] = ACTIONS(471), - [sym_crate] = ACTIONS(471), - [sym_metavariable] = ACTIONS(469), - [sym_raw_string_literal] = ACTIONS(469), - [sym_float_literal] = ACTIONS(469), + [sym_self] = ACTIONS(473), + [sym_super] = ACTIONS(473), + [sym_crate] = ACTIONS(473), + [sym_metavariable] = ACTIONS(471), + [sym_raw_string_literal] = ACTIONS(471), + [sym_float_literal] = ACTIONS(471), [sym_block_comment] = ACTIONS(3), }, [44] = { - [ts_builtin_sym_end] = ACTIONS(473), - [sym_identifier] = ACTIONS(475), - [anon_sym_SEMI] = ACTIONS(473), - [anon_sym_macro_rules_BANG] = ACTIONS(473), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_LBRACE] = ACTIONS(473), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(475), - [anon_sym_QMARK] = ACTIONS(473), - [anon_sym_u8] = ACTIONS(475), - [anon_sym_i8] = ACTIONS(475), - [anon_sym_u16] = ACTIONS(475), - [anon_sym_i16] = ACTIONS(475), - [anon_sym_u32] = ACTIONS(475), - [anon_sym_i32] = ACTIONS(475), - [anon_sym_u64] = ACTIONS(475), - [anon_sym_i64] = ACTIONS(475), - [anon_sym_u128] = ACTIONS(475), - [anon_sym_i128] = ACTIONS(475), - [anon_sym_isize] = ACTIONS(475), - [anon_sym_usize] = ACTIONS(475), - [anon_sym_f32] = ACTIONS(475), - [anon_sym_f64] = ACTIONS(475), - [anon_sym_bool] = ACTIONS(475), - [anon_sym_str] = ACTIONS(475), - [anon_sym_char] = ACTIONS(475), - [anon_sym_SQUOTE] = ACTIONS(475), - [anon_sym_as] = ACTIONS(475), - [anon_sym_async] = ACTIONS(475), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(475), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(475), - [anon_sym_enum] = ACTIONS(475), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_for] = ACTIONS(475), - [anon_sym_if] = ACTIONS(475), - [anon_sym_impl] = ACTIONS(475), - [anon_sym_let] = ACTIONS(475), - [anon_sym_loop] = ACTIONS(475), - [anon_sym_match] = ACTIONS(475), - [anon_sym_mod] = ACTIONS(475), - [anon_sym_pub] = ACTIONS(475), - [anon_sym_return] = ACTIONS(475), - [anon_sym_static] = ACTIONS(475), - [anon_sym_struct] = ACTIONS(475), - [anon_sym_trait] = ACTIONS(475), - [anon_sym_type] = ACTIONS(475), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(475), - [anon_sym_use] = ACTIONS(475), - [anon_sym_while] = ACTIONS(475), - [anon_sym_POUND] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_EQ] = ACTIONS(475), - [anon_sym_extern] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(473), - [anon_sym_PIPE_PIPE] = ACTIONS(473), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(473), - [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_LT_EQ] = ACTIONS(473), - [anon_sym_GT_EQ] = ACTIONS(473), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_PERCENT] = ACTIONS(475), - [anon_sym_PLUS_EQ] = ACTIONS(473), - [anon_sym_DASH_EQ] = ACTIONS(473), - [anon_sym_STAR_EQ] = ACTIONS(473), - [anon_sym_SLASH_EQ] = ACTIONS(473), - [anon_sym_PERCENT_EQ] = ACTIONS(473), - [anon_sym_AMP_EQ] = ACTIONS(473), - [anon_sym_PIPE_EQ] = ACTIONS(473), - [anon_sym_CARET_EQ] = ACTIONS(473), - [anon_sym_LT_LT_EQ] = ACTIONS(473), - [anon_sym_GT_GT_EQ] = ACTIONS(473), - [anon_sym_move] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(475), - [sym_integer_literal] = ACTIONS(473), - [aux_sym_string_literal_token1] = ACTIONS(473), - [sym_char_literal] = ACTIONS(473), - [anon_sym_true] = ACTIONS(475), - [anon_sym_false] = ACTIONS(475), + [ts_builtin_sym_end] = ACTIONS(475), + [sym_identifier] = ACTIONS(477), + [anon_sym_SEMI] = ACTIONS(475), + [anon_sym_macro_rules_BANG] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(475), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_SQUOTE] = ACTIONS(477), + [anon_sym_as] = ACTIONS(477), + [anon_sym_async] = ACTIONS(477), + [anon_sym_break] = ACTIONS(477), + [anon_sym_const] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(477), + [anon_sym_default] = ACTIONS(477), + [anon_sym_enum] = ACTIONS(477), + [anon_sym_fn] = ACTIONS(477), + [anon_sym_for] = ACTIONS(477), + [anon_sym_if] = ACTIONS(477), + [anon_sym_impl] = ACTIONS(477), + [anon_sym_let] = ACTIONS(477), + [anon_sym_loop] = ACTIONS(477), + [anon_sym_match] = ACTIONS(477), + [anon_sym_mod] = ACTIONS(477), + [anon_sym_pub] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(477), + [anon_sym_struct] = ACTIONS(477), + [anon_sym_trait] = ACTIONS(477), + [anon_sym_type] = ACTIONS(477), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(477), + [anon_sym_use] = ACTIONS(477), + [anon_sym_while] = ACTIONS(477), + [anon_sym_POUND] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_extern] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(477), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym_AMP] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(475), + [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(475), + [anon_sym_BANG_EQ] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(475), + [anon_sym_GT_EQ] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(475), + [anon_sym_DASH_EQ] = ACTIONS(475), + [anon_sym_STAR_EQ] = ACTIONS(475), + [anon_sym_SLASH_EQ] = ACTIONS(475), + [anon_sym_PERCENT_EQ] = ACTIONS(475), + [anon_sym_AMP_EQ] = ACTIONS(475), + [anon_sym_PIPE_EQ] = ACTIONS(475), + [anon_sym_CARET_EQ] = ACTIONS(475), + [anon_sym_LT_LT_EQ] = ACTIONS(475), + [anon_sym_GT_GT_EQ] = ACTIONS(475), + [anon_sym_move] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(477), + [sym_integer_literal] = ACTIONS(475), + [aux_sym_string_literal_token1] = ACTIONS(475), + [sym_char_literal] = ACTIONS(475), + [anon_sym_true] = ACTIONS(477), + [anon_sym_false] = ACTIONS(477), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(475), - [sym_crate] = ACTIONS(475), - [sym_metavariable] = ACTIONS(473), - [sym_raw_string_literal] = ACTIONS(473), - [sym_float_literal] = ACTIONS(473), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(477), + [sym_crate] = ACTIONS(477), + [sym_metavariable] = ACTIONS(475), + [sym_raw_string_literal] = ACTIONS(475), + [sym_float_literal] = ACTIONS(475), [sym_block_comment] = ACTIONS(3), }, [45] = { - [ts_builtin_sym_end] = ACTIONS(477), - [sym_identifier] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_macro_rules_BANG] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_LBRACE] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_STAR] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(479), - [anon_sym_i8] = ACTIONS(479), - [anon_sym_u16] = ACTIONS(479), - [anon_sym_i16] = ACTIONS(479), - [anon_sym_u32] = ACTIONS(479), - [anon_sym_i32] = ACTIONS(479), - [anon_sym_u64] = ACTIONS(479), - [anon_sym_i64] = ACTIONS(479), - [anon_sym_u128] = ACTIONS(479), - [anon_sym_i128] = ACTIONS(479), - [anon_sym_isize] = ACTIONS(479), - [anon_sym_usize] = ACTIONS(479), - [anon_sym_f32] = ACTIONS(479), - [anon_sym_f64] = ACTIONS(479), - [anon_sym_bool] = ACTIONS(479), - [anon_sym_str] = ACTIONS(479), - [anon_sym_char] = ACTIONS(479), - [anon_sym_SQUOTE] = ACTIONS(479), - [anon_sym_as] = ACTIONS(479), - [anon_sym_async] = ACTIONS(479), - [anon_sym_break] = ACTIONS(479), - [anon_sym_const] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_default] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(479), - [anon_sym_fn] = ACTIONS(479), - [anon_sym_for] = ACTIONS(479), - [anon_sym_if] = ACTIONS(479), - [anon_sym_impl] = ACTIONS(479), - [anon_sym_let] = ACTIONS(479), - [anon_sym_loop] = ACTIONS(479), - [anon_sym_match] = ACTIONS(479), - [anon_sym_mod] = ACTIONS(479), - [anon_sym_pub] = ACTIONS(479), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(479), - [anon_sym_struct] = ACTIONS(479), - [anon_sym_trait] = ACTIONS(479), - [anon_sym_type] = ACTIONS(479), - [anon_sym_union] = ACTIONS(479), - [anon_sym_unsafe] = ACTIONS(479), - [anon_sym_use] = ACTIONS(479), - [anon_sym_while] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_extern] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_COLON_COLON] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(479), - [anon_sym_GT_GT] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(479), - [anon_sym_PERCENT] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_move] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(479), - [sym_integer_literal] = ACTIONS(477), - [aux_sym_string_literal_token1] = ACTIONS(477), - [sym_char_literal] = ACTIONS(477), - [anon_sym_true] = ACTIONS(479), - [anon_sym_false] = ACTIONS(479), + [ts_builtin_sym_end] = ACTIONS(479), + [sym_identifier] = ACTIONS(481), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_macro_rules_BANG] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(479), + [anon_sym_u8] = ACTIONS(481), + [anon_sym_i8] = ACTIONS(481), + [anon_sym_u16] = ACTIONS(481), + [anon_sym_i16] = ACTIONS(481), + [anon_sym_u32] = ACTIONS(481), + [anon_sym_i32] = ACTIONS(481), + [anon_sym_u64] = ACTIONS(481), + [anon_sym_i64] = ACTIONS(481), + [anon_sym_u128] = ACTIONS(481), + [anon_sym_i128] = ACTIONS(481), + [anon_sym_isize] = ACTIONS(481), + [anon_sym_usize] = ACTIONS(481), + [anon_sym_f32] = ACTIONS(481), + [anon_sym_f64] = ACTIONS(481), + [anon_sym_bool] = ACTIONS(481), + [anon_sym_str] = ACTIONS(481), + [anon_sym_char] = ACTIONS(481), + [anon_sym_SQUOTE] = ACTIONS(481), + [anon_sym_as] = ACTIONS(481), + [anon_sym_async] = ACTIONS(481), + [anon_sym_break] = ACTIONS(481), + [anon_sym_const] = ACTIONS(481), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_default] = ACTIONS(481), + [anon_sym_enum] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_for] = ACTIONS(481), + [anon_sym_if] = ACTIONS(481), + [anon_sym_impl] = ACTIONS(481), + [anon_sym_let] = ACTIONS(481), + [anon_sym_loop] = ACTIONS(481), + [anon_sym_match] = ACTIONS(481), + [anon_sym_mod] = ACTIONS(481), + [anon_sym_pub] = ACTIONS(481), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(481), + [anon_sym_struct] = ACTIONS(481), + [anon_sym_trait] = ACTIONS(481), + [anon_sym_type] = ACTIONS(481), + [anon_sym_union] = ACTIONS(481), + [anon_sym_unsafe] = ACTIONS(481), + [anon_sym_use] = ACTIONS(481), + [anon_sym_while] = ACTIONS(481), + [anon_sym_POUND] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_extern] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_COLON_COLON] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(479), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_STAR_EQ] = ACTIONS(479), + [anon_sym_SLASH_EQ] = ACTIONS(479), + [anon_sym_PERCENT_EQ] = ACTIONS(479), + [anon_sym_AMP_EQ] = ACTIONS(479), + [anon_sym_PIPE_EQ] = ACTIONS(479), + [anon_sym_CARET_EQ] = ACTIONS(479), + [anon_sym_LT_LT_EQ] = ACTIONS(479), + [anon_sym_GT_GT_EQ] = ACTIONS(479), + [anon_sym_move] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(479), + [aux_sym_string_literal_token1] = ACTIONS(479), + [sym_char_literal] = ACTIONS(479), + [anon_sym_true] = ACTIONS(481), + [anon_sym_false] = ACTIONS(481), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(479), - [sym_super] = ACTIONS(479), - [sym_crate] = ACTIONS(479), - [sym_metavariable] = ACTIONS(477), - [sym_raw_string_literal] = ACTIONS(477), - [sym_float_literal] = ACTIONS(477), + [sym_self] = ACTIONS(481), + [sym_super] = ACTIONS(481), + [sym_crate] = ACTIONS(481), + [sym_metavariable] = ACTIONS(479), + [sym_raw_string_literal] = ACTIONS(479), + [sym_float_literal] = ACTIONS(479), [sym_block_comment] = ACTIONS(3), }, [46] = { - [ts_builtin_sym_end] = ACTIONS(481), - [sym_identifier] = ACTIONS(483), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_macro_rules_BANG] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(483), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_u8] = ACTIONS(483), - [anon_sym_i8] = ACTIONS(483), - [anon_sym_u16] = ACTIONS(483), - [anon_sym_i16] = ACTIONS(483), - [anon_sym_u32] = ACTIONS(483), - [anon_sym_i32] = ACTIONS(483), - [anon_sym_u64] = ACTIONS(483), - [anon_sym_i64] = ACTIONS(483), - [anon_sym_u128] = ACTIONS(483), - [anon_sym_i128] = ACTIONS(483), - [anon_sym_isize] = ACTIONS(483), - [anon_sym_usize] = ACTIONS(483), - [anon_sym_f32] = ACTIONS(483), - [anon_sym_f64] = ACTIONS(483), - [anon_sym_bool] = ACTIONS(483), - [anon_sym_str] = ACTIONS(483), - [anon_sym_char] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(483), - [anon_sym_as] = ACTIONS(483), - [anon_sym_async] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_default] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_for] = ACTIONS(483), - [anon_sym_if] = ACTIONS(483), - [anon_sym_impl] = ACTIONS(483), - [anon_sym_let] = ACTIONS(483), - [anon_sym_loop] = ACTIONS(483), - [anon_sym_match] = ACTIONS(483), - [anon_sym_mod] = ACTIONS(483), - [anon_sym_pub] = ACTIONS(483), - [anon_sym_return] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_trait] = ACTIONS(483), - [anon_sym_type] = ACTIONS(483), - [anon_sym_union] = ACTIONS(483), - [anon_sym_unsafe] = ACTIONS(483), - [anon_sym_use] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [anon_sym_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(483), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PERCENT] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(481), - [anon_sym_DASH_EQ] = ACTIONS(481), - [anon_sym_STAR_EQ] = ACTIONS(481), - [anon_sym_SLASH_EQ] = ACTIONS(481), - [anon_sym_PERCENT_EQ] = ACTIONS(481), - [anon_sym_AMP_EQ] = ACTIONS(481), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_CARET_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_move] = ACTIONS(483), - [anon_sym_DOT] = ACTIONS(483), - [sym_integer_literal] = ACTIONS(481), - [aux_sym_string_literal_token1] = ACTIONS(481), - [sym_char_literal] = ACTIONS(481), - [anon_sym_true] = ACTIONS(483), - [anon_sym_false] = ACTIONS(483), + [sym_attribute_item] = STATE(64), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1115), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1115), + [sym_macro_invocation] = STATE(1115), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1115), + [sym_unary_expression] = STATE(1115), + [sym_try_expression] = STATE(1115), + [sym_reference_expression] = STATE(1115), + [sym_binary_expression] = STATE(1115), + [sym_assignment_expression] = STATE(1115), + [sym_compound_assignment_expr] = STATE(1115), + [sym_type_cast_expression] = STATE(1115), + [sym_return_expression] = STATE(1115), + [sym_call_expression] = STATE(1115), + [sym_array_expression] = STATE(1115), + [sym_parenthesized_expression] = STATE(1115), + [sym_tuple_expression] = STATE(1115), + [sym_unit_expression] = STATE(1115), + [sym_struct_expression] = STATE(1115), + [sym_if_expression] = STATE(1115), + [sym_if_let_expression] = STATE(1115), + [sym_match_expression] = STATE(1115), + [sym_while_expression] = STATE(1115), + [sym_while_let_expression] = STATE(1115), + [sym_loop_expression] = STATE(1115), + [sym_for_expression] = STATE(1115), + [sym_closure_expression] = STATE(1115), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1115), + [sym_continue_expression] = STATE(1115), + [sym_index_expression] = STATE(1115), + [sym_await_expression] = STATE(1115), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1115), + [sym_async_block] = STATE(1115), + [sym_block] = STATE(1115), + [sym__literal] = STATE(1115), + [sym_string_literal] = STATE(1115), + [sym_boolean_literal] = STATE(1115), + [aux_sym_enum_variant_list_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(295), + [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(301), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_POUND] = ACTIONS(405), + [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_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(465), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(465), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(483), - [sym_super] = ACTIONS(483), - [sym_crate] = ACTIONS(483), - [sym_metavariable] = ACTIONS(481), - [sym_raw_string_literal] = ACTIONS(481), - [sym_float_literal] = ACTIONS(481), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(465), + [sym_float_literal] = ACTIONS(465), [sym_block_comment] = ACTIONS(3), }, [47] = { @@ -14416,54 +14438,474 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { + [ts_builtin_sym_end] = ACTIONS(505), + [sym_identifier] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_macro_rules_BANG] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(505), + [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_u8] = ACTIONS(507), + [anon_sym_i8] = ACTIONS(507), + [anon_sym_u16] = ACTIONS(507), + [anon_sym_i16] = ACTIONS(507), + [anon_sym_u32] = ACTIONS(507), + [anon_sym_i32] = ACTIONS(507), + [anon_sym_u64] = ACTIONS(507), + [anon_sym_i64] = ACTIONS(507), + [anon_sym_u128] = ACTIONS(507), + [anon_sym_i128] = ACTIONS(507), + [anon_sym_isize] = ACTIONS(507), + [anon_sym_usize] = ACTIONS(507), + [anon_sym_f32] = ACTIONS(507), + [anon_sym_f64] = ACTIONS(507), + [anon_sym_bool] = ACTIONS(507), + [anon_sym_str] = ACTIONS(507), + [anon_sym_char] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_as] = ACTIONS(507), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(507), + [anon_sym_const] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(507), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_for] = ACTIONS(507), + [anon_sym_if] = ACTIONS(507), + [anon_sym_impl] = ACTIONS(507), + [anon_sym_let] = ACTIONS(507), + [anon_sym_loop] = ACTIONS(507), + [anon_sym_match] = ACTIONS(507), + [anon_sym_mod] = ACTIONS(507), + [anon_sym_pub] = ACTIONS(507), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_trait] = ACTIONS(507), + [anon_sym_type] = ACTIONS(507), + [anon_sym_union] = ACTIONS(507), + [anon_sym_unsafe] = ACTIONS(507), + [anon_sym_use] = ACTIONS(507), + [anon_sym_while] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_COLON_COLON] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(505), + [anon_sym_DOT_DOT] = ACTIONS(507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_EQ_EQ] = ACTIONS(505), + [anon_sym_BANG_EQ] = ACTIONS(505), + [anon_sym_LT_EQ] = ACTIONS(505), + [anon_sym_GT_EQ] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_PLUS_EQ] = ACTIONS(505), + [anon_sym_DASH_EQ] = ACTIONS(505), + [anon_sym_STAR_EQ] = ACTIONS(505), + [anon_sym_SLASH_EQ] = ACTIONS(505), + [anon_sym_PERCENT_EQ] = ACTIONS(505), + [anon_sym_AMP_EQ] = ACTIONS(505), + [anon_sym_PIPE_EQ] = ACTIONS(505), + [anon_sym_CARET_EQ] = ACTIONS(505), + [anon_sym_LT_LT_EQ] = ACTIONS(505), + [anon_sym_GT_GT_EQ] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(507), + [sym_integer_literal] = ACTIONS(505), + [aux_sym_string_literal_token1] = ACTIONS(505), + [sym_char_literal] = ACTIONS(505), + [anon_sym_true] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(507), + [sym_super] = ACTIONS(507), + [sym_crate] = ACTIONS(507), + [sym_metavariable] = ACTIONS(505), + [sym_raw_string_literal] = ACTIONS(505), + [sym_float_literal] = ACTIONS(505), + [sym_block_comment] = ACTIONS(3), + }, + [53] = { + [ts_builtin_sym_end] = ACTIONS(509), + [sym_identifier] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_macro_rules_BANG] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(515), + [anon_sym_QMARK] = ACTIONS(513), + [anon_sym_u8] = ACTIONS(511), + [anon_sym_i8] = ACTIONS(511), + [anon_sym_u16] = ACTIONS(511), + [anon_sym_i16] = ACTIONS(511), + [anon_sym_u32] = ACTIONS(511), + [anon_sym_i32] = ACTIONS(511), + [anon_sym_u64] = ACTIONS(511), + [anon_sym_i64] = ACTIONS(511), + [anon_sym_u128] = ACTIONS(511), + [anon_sym_i128] = ACTIONS(511), + [anon_sym_isize] = ACTIONS(511), + [anon_sym_usize] = ACTIONS(511), + [anon_sym_f32] = ACTIONS(511), + [anon_sym_f64] = ACTIONS(511), + [anon_sym_bool] = ACTIONS(511), + [anon_sym_str] = ACTIONS(511), + [anon_sym_char] = ACTIONS(511), + [anon_sym_SQUOTE] = ACTIONS(511), + [anon_sym_as] = ACTIONS(515), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(511), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(511), + [anon_sym_enum] = ACTIONS(511), + [anon_sym_fn] = ACTIONS(511), + [anon_sym_for] = ACTIONS(511), + [anon_sym_if] = ACTIONS(511), + [anon_sym_impl] = ACTIONS(511), + [anon_sym_let] = ACTIONS(511), + [anon_sym_loop] = ACTIONS(511), + [anon_sym_match] = ACTIONS(511), + [anon_sym_mod] = ACTIONS(511), + [anon_sym_pub] = ACTIONS(511), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(511), + [anon_sym_struct] = ACTIONS(511), + [anon_sym_trait] = ACTIONS(511), + [anon_sym_type] = ACTIONS(511), + [anon_sym_union] = ACTIONS(511), + [anon_sym_unsafe] = ACTIONS(511), + [anon_sym_use] = ACTIONS(511), + [anon_sym_while] = ACTIONS(511), + [anon_sym_POUND] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_EQ] = ACTIONS(515), + [anon_sym_extern] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_COLON_COLON] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT_EQ] = ACTIONS(513), + [anon_sym_GT_EQ] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(515), + [anon_sym_PLUS_EQ] = ACTIONS(513), + [anon_sym_DASH_EQ] = ACTIONS(513), + [anon_sym_STAR_EQ] = ACTIONS(513), + [anon_sym_SLASH_EQ] = ACTIONS(513), + [anon_sym_PERCENT_EQ] = ACTIONS(513), + [anon_sym_AMP_EQ] = ACTIONS(513), + [anon_sym_PIPE_EQ] = ACTIONS(513), + [anon_sym_CARET_EQ] = ACTIONS(513), + [anon_sym_LT_LT_EQ] = ACTIONS(513), + [anon_sym_GT_GT_EQ] = ACTIONS(513), + [anon_sym_move] = ACTIONS(511), + [anon_sym_DOT] = ACTIONS(515), + [sym_integer_literal] = ACTIONS(509), + [aux_sym_string_literal_token1] = ACTIONS(509), + [sym_char_literal] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_crate] = ACTIONS(511), + [sym_metavariable] = ACTIONS(509), + [sym_raw_string_literal] = ACTIONS(509), + [sym_float_literal] = ACTIONS(509), + [sym_block_comment] = ACTIONS(3), + }, + [54] = { + [ts_builtin_sym_end] = ACTIONS(517), + [sym_identifier] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(517), + [anon_sym_macro_rules_BANG] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_STAR] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_u8] = ACTIONS(519), + [anon_sym_i8] = ACTIONS(519), + [anon_sym_u16] = ACTIONS(519), + [anon_sym_i16] = ACTIONS(519), + [anon_sym_u32] = ACTIONS(519), + [anon_sym_i32] = ACTIONS(519), + [anon_sym_u64] = ACTIONS(519), + [anon_sym_i64] = ACTIONS(519), + [anon_sym_u128] = ACTIONS(519), + [anon_sym_i128] = ACTIONS(519), + [anon_sym_isize] = ACTIONS(519), + [anon_sym_usize] = ACTIONS(519), + [anon_sym_f32] = ACTIONS(519), + [anon_sym_f64] = ACTIONS(519), + [anon_sym_bool] = ACTIONS(519), + [anon_sym_str] = ACTIONS(519), + [anon_sym_char] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_as] = ACTIONS(519), + [anon_sym_async] = ACTIONS(519), + [anon_sym_break] = ACTIONS(519), + [anon_sym_const] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(519), + [anon_sym_default] = ACTIONS(519), + [anon_sym_enum] = ACTIONS(519), + [anon_sym_fn] = ACTIONS(519), + [anon_sym_for] = ACTIONS(519), + [anon_sym_if] = ACTIONS(519), + [anon_sym_impl] = ACTIONS(519), + [anon_sym_let] = ACTIONS(519), + [anon_sym_loop] = ACTIONS(519), + [anon_sym_match] = ACTIONS(519), + [anon_sym_mod] = ACTIONS(519), + [anon_sym_pub] = ACTIONS(519), + [anon_sym_return] = ACTIONS(519), + [anon_sym_static] = ACTIONS(519), + [anon_sym_struct] = ACTIONS(519), + [anon_sym_trait] = ACTIONS(519), + [anon_sym_type] = ACTIONS(519), + [anon_sym_union] = ACTIONS(519), + [anon_sym_unsafe] = ACTIONS(519), + [anon_sym_use] = ACTIONS(519), + [anon_sym_while] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_EQ] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(519), + [anon_sym_LT] = ACTIONS(519), + [anon_sym_GT] = ACTIONS(519), + [anon_sym_COLON_COLON] = ACTIONS(517), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT] = ACTIONS(519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_AMP_AMP] = ACTIONS(517), + [anon_sym_PIPE_PIPE] = ACTIONS(517), + [anon_sym_PIPE] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(519), + [anon_sym_EQ_EQ] = ACTIONS(517), + [anon_sym_BANG_EQ] = ACTIONS(517), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(519), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(519), + [anon_sym_PLUS_EQ] = ACTIONS(517), + [anon_sym_DASH_EQ] = ACTIONS(517), + [anon_sym_STAR_EQ] = ACTIONS(517), + [anon_sym_SLASH_EQ] = ACTIONS(517), + [anon_sym_PERCENT_EQ] = ACTIONS(517), + [anon_sym_AMP_EQ] = ACTIONS(517), + [anon_sym_PIPE_EQ] = ACTIONS(517), + [anon_sym_CARET_EQ] = ACTIONS(517), + [anon_sym_LT_LT_EQ] = ACTIONS(517), + [anon_sym_GT_GT_EQ] = ACTIONS(517), + [anon_sym_move] = ACTIONS(519), + [anon_sym_DOT] = ACTIONS(519), + [sym_integer_literal] = ACTIONS(517), + [aux_sym_string_literal_token1] = ACTIONS(517), + [sym_char_literal] = ACTIONS(517), + [anon_sym_true] = ACTIONS(519), + [anon_sym_false] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(519), + [sym_crate] = ACTIONS(519), + [sym_metavariable] = ACTIONS(517), + [sym_raw_string_literal] = ACTIONS(517), + [sym_float_literal] = ACTIONS(517), + [sym_block_comment] = ACTIONS(3), + }, + [55] = { + [ts_builtin_sym_end] = ACTIONS(521), + [sym_identifier] = ACTIONS(523), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_macro_rules_BANG] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(513), + [anon_sym_u8] = ACTIONS(523), + [anon_sym_i8] = ACTIONS(523), + [anon_sym_u16] = ACTIONS(523), + [anon_sym_i16] = ACTIONS(523), + [anon_sym_u32] = ACTIONS(523), + [anon_sym_i32] = ACTIONS(523), + [anon_sym_u64] = ACTIONS(523), + [anon_sym_i64] = ACTIONS(523), + [anon_sym_u128] = ACTIONS(523), + [anon_sym_i128] = ACTIONS(523), + [anon_sym_isize] = ACTIONS(523), + [anon_sym_usize] = ACTIONS(523), + [anon_sym_f32] = ACTIONS(523), + [anon_sym_f64] = ACTIONS(523), + [anon_sym_bool] = ACTIONS(523), + [anon_sym_str] = ACTIONS(523), + [anon_sym_char] = ACTIONS(523), + [anon_sym_SQUOTE] = ACTIONS(523), + [anon_sym_as] = ACTIONS(515), + [anon_sym_async] = ACTIONS(523), + [anon_sym_break] = ACTIONS(523), + [anon_sym_const] = ACTIONS(523), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_default] = ACTIONS(523), + [anon_sym_enum] = ACTIONS(523), + [anon_sym_fn] = ACTIONS(523), + [anon_sym_for] = ACTIONS(523), + [anon_sym_if] = ACTIONS(523), + [anon_sym_impl] = ACTIONS(523), + [anon_sym_let] = ACTIONS(523), + [anon_sym_loop] = ACTIONS(523), + [anon_sym_match] = ACTIONS(523), + [anon_sym_mod] = ACTIONS(523), + [anon_sym_pub] = ACTIONS(523), + [anon_sym_return] = ACTIONS(523), + [anon_sym_static] = ACTIONS(523), + [anon_sym_struct] = ACTIONS(523), + [anon_sym_trait] = ACTIONS(523), + [anon_sym_type] = ACTIONS(523), + [anon_sym_union] = ACTIONS(523), + [anon_sym_unsafe] = ACTIONS(523), + [anon_sym_use] = ACTIONS(523), + [anon_sym_while] = ACTIONS(523), + [anon_sym_POUND] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_EQ] = ACTIONS(515), + [anon_sym_extern] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_COLON_COLON] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(523), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(523), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT_EQ] = ACTIONS(513), + [anon_sym_GT_EQ] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(515), + [anon_sym_PLUS_EQ] = ACTIONS(513), + [anon_sym_DASH_EQ] = ACTIONS(513), + [anon_sym_STAR_EQ] = ACTIONS(513), + [anon_sym_SLASH_EQ] = ACTIONS(513), + [anon_sym_PERCENT_EQ] = ACTIONS(513), + [anon_sym_AMP_EQ] = ACTIONS(513), + [anon_sym_PIPE_EQ] = ACTIONS(513), + [anon_sym_CARET_EQ] = ACTIONS(513), + [anon_sym_LT_LT_EQ] = ACTIONS(513), + [anon_sym_GT_GT_EQ] = ACTIONS(513), + [anon_sym_move] = ACTIONS(523), + [anon_sym_DOT] = ACTIONS(515), + [sym_integer_literal] = ACTIONS(521), + [aux_sym_string_literal_token1] = ACTIONS(521), + [sym_char_literal] = ACTIONS(521), + [anon_sym_true] = ACTIONS(523), + [anon_sym_false] = ACTIONS(523), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(523), + [sym_super] = ACTIONS(523), + [sym_crate] = ACTIONS(523), + [sym_metavariable] = ACTIONS(521), + [sym_raw_string_literal] = ACTIONS(521), + [sym_float_literal] = ACTIONS(521), + [sym_block_comment] = ACTIONS(3), + }, + [56] = { [sym_attribute_item] = STATE(64), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1129), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(1129), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1129), - [sym_unary_expression] = STATE(1129), - [sym_try_expression] = STATE(1129), - [sym_reference_expression] = STATE(1129), - [sym_binary_expression] = STATE(1129), - [sym_assignment_expression] = STATE(1129), - [sym_compound_assignment_expr] = STATE(1129), - [sym_type_cast_expression] = STATE(1129), - [sym_return_expression] = STATE(1129), - [sym_call_expression] = STATE(1129), - [sym_array_expression] = STATE(1129), - [sym_parenthesized_expression] = STATE(1129), - [sym_tuple_expression] = STATE(1129), - [sym_unit_expression] = STATE(1129), - [sym_struct_expression] = STATE(1129), - [sym_if_expression] = STATE(1129), - [sym_if_let_expression] = STATE(1129), - [sym_match_expression] = STATE(1129), - [sym_while_expression] = STATE(1129), - [sym_while_let_expression] = STATE(1129), - [sym_loop_expression] = STATE(1129), - [sym_for_expression] = STATE(1129), - [sym_closure_expression] = STATE(1129), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1129), - [sym_continue_expression] = STATE(1129), - [sym_index_expression] = STATE(1129), - [sym_await_expression] = STATE(1129), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1129), - [sym_async_block] = STATE(1129), - [sym_block] = STATE(1129), - [sym__literal] = STATE(1129), - [sym_string_literal] = STATE(1129), - [sym_boolean_literal] = STATE(1129), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1115), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1115), + [sym_macro_invocation] = STATE(1115), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1115), + [sym_unary_expression] = STATE(1115), + [sym_try_expression] = STATE(1115), + [sym_reference_expression] = STATE(1115), + [sym_binary_expression] = STATE(1115), + [sym_assignment_expression] = STATE(1115), + [sym_compound_assignment_expr] = STATE(1115), + [sym_type_cast_expression] = STATE(1115), + [sym_return_expression] = STATE(1115), + [sym_call_expression] = STATE(1115), + [sym_array_expression] = STATE(1115), + [sym_parenthesized_expression] = STATE(1115), + [sym_tuple_expression] = STATE(1115), + [sym_unit_expression] = STATE(1115), + [sym_struct_expression] = STATE(1115), + [sym_if_expression] = STATE(1115), + [sym_if_let_expression] = STATE(1115), + [sym_match_expression] = STATE(1115), + [sym_while_expression] = STATE(1115), + [sym_while_let_expression] = STATE(1115), + [sym_loop_expression] = STATE(1115), + [sym_for_expression] = STATE(1115), + [sym_closure_expression] = STATE(1115), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1115), + [sym_continue_expression] = STATE(1115), + [sym_index_expression] = STATE(1115), + [sym_await_expression] = STATE(1115), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1115), + [sym_async_block] = STATE(1115), + [sym_block] = STATE(1115), + [sym__literal] = STATE(1115), + [sym_string_literal] = STATE(1115), + [sym_boolean_literal] = STATE(1115), [aux_sym_enum_variant_list_repeat1] = STATE(64), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(525), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -14506,9 +14948,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(465), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(445), + [sym_char_literal] = ACTIONS(465), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -14516,428 +14958,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(445), - [sym_float_literal] = ACTIONS(445), - [sym_block_comment] = ACTIONS(3), - }, - [53] = { - [ts_builtin_sym_end] = ACTIONS(507), - [sym_identifier] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(507), - [anon_sym_macro_rules_BANG] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(507), - [anon_sym_RBRACE] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_QMARK] = ACTIONS(507), - [anon_sym_u8] = ACTIONS(509), - [anon_sym_i8] = ACTIONS(509), - [anon_sym_u16] = ACTIONS(509), - [anon_sym_i16] = ACTIONS(509), - [anon_sym_u32] = ACTIONS(509), - [anon_sym_i32] = ACTIONS(509), - [anon_sym_u64] = ACTIONS(509), - [anon_sym_i64] = ACTIONS(509), - [anon_sym_u128] = ACTIONS(509), - [anon_sym_i128] = ACTIONS(509), - [anon_sym_isize] = ACTIONS(509), - [anon_sym_usize] = ACTIONS(509), - [anon_sym_f32] = ACTIONS(509), - [anon_sym_f64] = ACTIONS(509), - [anon_sym_bool] = ACTIONS(509), - [anon_sym_str] = ACTIONS(509), - [anon_sym_char] = ACTIONS(509), - [anon_sym_SQUOTE] = ACTIONS(509), - [anon_sym_as] = ACTIONS(509), - [anon_sym_async] = ACTIONS(509), - [anon_sym_break] = ACTIONS(509), - [anon_sym_const] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(509), - [anon_sym_default] = ACTIONS(509), - [anon_sym_enum] = ACTIONS(509), - [anon_sym_fn] = ACTIONS(509), - [anon_sym_for] = ACTIONS(509), - [anon_sym_if] = ACTIONS(509), - [anon_sym_impl] = ACTIONS(509), - [anon_sym_let] = ACTIONS(509), - [anon_sym_loop] = ACTIONS(509), - [anon_sym_match] = ACTIONS(509), - [anon_sym_mod] = ACTIONS(509), - [anon_sym_pub] = ACTIONS(509), - [anon_sym_return] = ACTIONS(509), - [anon_sym_static] = ACTIONS(509), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_trait] = ACTIONS(509), - [anon_sym_type] = ACTIONS(509), - [anon_sym_union] = ACTIONS(509), - [anon_sym_unsafe] = ACTIONS(509), - [anon_sym_use] = ACTIONS(509), - [anon_sym_while] = ACTIONS(509), - [anon_sym_POUND] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(509), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_extern] = ACTIONS(509), - [anon_sym_LT] = ACTIONS(509), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(507), - [anon_sym_DOT_DOT] = ACTIONS(509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE_PIPE] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_LT_EQ] = ACTIONS(507), - [anon_sym_GT_EQ] = ACTIONS(507), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(507), - [anon_sym_DASH_EQ] = ACTIONS(507), - [anon_sym_STAR_EQ] = ACTIONS(507), - [anon_sym_SLASH_EQ] = ACTIONS(507), - [anon_sym_PERCENT_EQ] = ACTIONS(507), - [anon_sym_AMP_EQ] = ACTIONS(507), - [anon_sym_PIPE_EQ] = ACTIONS(507), - [anon_sym_CARET_EQ] = ACTIONS(507), - [anon_sym_LT_LT_EQ] = ACTIONS(507), - [anon_sym_GT_GT_EQ] = ACTIONS(507), - [anon_sym_move] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [sym_integer_literal] = ACTIONS(507), - [aux_sym_string_literal_token1] = ACTIONS(507), - [sym_char_literal] = ACTIONS(507), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(509), - [sym_super] = ACTIONS(509), - [sym_crate] = ACTIONS(509), - [sym_metavariable] = ACTIONS(507), - [sym_raw_string_literal] = ACTIONS(507), - [sym_float_literal] = ACTIONS(507), - [sym_block_comment] = ACTIONS(3), - }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(511), - [sym_identifier] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_macro_rules_BANG] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(513), - [anon_sym_STAR] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_u8] = ACTIONS(513), - [anon_sym_i8] = ACTIONS(513), - [anon_sym_u16] = ACTIONS(513), - [anon_sym_i16] = ACTIONS(513), - [anon_sym_u32] = ACTIONS(513), - [anon_sym_i32] = ACTIONS(513), - [anon_sym_u64] = ACTIONS(513), - [anon_sym_i64] = ACTIONS(513), - [anon_sym_u128] = ACTIONS(513), - [anon_sym_i128] = ACTIONS(513), - [anon_sym_isize] = ACTIONS(513), - [anon_sym_usize] = ACTIONS(513), - [anon_sym_f32] = ACTIONS(513), - [anon_sym_f64] = ACTIONS(513), - [anon_sym_bool] = ACTIONS(513), - [anon_sym_str] = ACTIONS(513), - [anon_sym_char] = ACTIONS(513), - [anon_sym_SQUOTE] = ACTIONS(513), - [anon_sym_as] = ACTIONS(513), - [anon_sym_async] = ACTIONS(513), - [anon_sym_break] = ACTIONS(513), - [anon_sym_const] = ACTIONS(513), - [anon_sym_continue] = ACTIONS(513), - [anon_sym_default] = ACTIONS(513), - [anon_sym_enum] = ACTIONS(513), - [anon_sym_fn] = ACTIONS(513), - [anon_sym_for] = ACTIONS(513), - [anon_sym_if] = ACTIONS(513), - [anon_sym_impl] = ACTIONS(513), - [anon_sym_let] = ACTIONS(513), - [anon_sym_loop] = ACTIONS(513), - [anon_sym_match] = ACTIONS(513), - [anon_sym_mod] = ACTIONS(513), - [anon_sym_pub] = ACTIONS(513), - [anon_sym_return] = ACTIONS(513), - [anon_sym_static] = ACTIONS(513), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_trait] = ACTIONS(513), - [anon_sym_type] = ACTIONS(513), - [anon_sym_union] = ACTIONS(513), - [anon_sym_unsafe] = ACTIONS(513), - [anon_sym_use] = ACTIONS(513), - [anon_sym_while] = ACTIONS(513), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(513), - [anon_sym_EQ] = ACTIONS(513), - [anon_sym_extern] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_COLON_COLON] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(511), - [anon_sym_DOT_DOT] = ACTIONS(513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(511), - [anon_sym_PIPE_PIPE] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_CARET] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(511), - [anon_sym_BANG_EQ] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(511), - [anon_sym_GT_EQ] = ACTIONS(511), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_SLASH] = ACTIONS(513), - [anon_sym_PERCENT] = ACTIONS(513), - [anon_sym_PLUS_EQ] = ACTIONS(511), - [anon_sym_DASH_EQ] = ACTIONS(511), - [anon_sym_STAR_EQ] = ACTIONS(511), - [anon_sym_SLASH_EQ] = ACTIONS(511), - [anon_sym_PERCENT_EQ] = ACTIONS(511), - [anon_sym_AMP_EQ] = ACTIONS(511), - [anon_sym_PIPE_EQ] = ACTIONS(511), - [anon_sym_CARET_EQ] = ACTIONS(511), - [anon_sym_LT_LT_EQ] = ACTIONS(511), - [anon_sym_GT_GT_EQ] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_DOT] = ACTIONS(513), - [sym_integer_literal] = ACTIONS(511), - [aux_sym_string_literal_token1] = ACTIONS(511), - [sym_char_literal] = ACTIONS(511), - [anon_sym_true] = ACTIONS(513), - [anon_sym_false] = ACTIONS(513), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_crate] = ACTIONS(513), - [sym_metavariable] = ACTIONS(511), - [sym_raw_string_literal] = ACTIONS(511), - [sym_float_literal] = ACTIONS(511), - [sym_block_comment] = ACTIONS(3), - }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(515), - [sym_identifier] = ACTIONS(517), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym_macro_rules_BANG] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(519), - [anon_sym_u8] = ACTIONS(517), - [anon_sym_i8] = ACTIONS(517), - [anon_sym_u16] = ACTIONS(517), - [anon_sym_i16] = ACTIONS(517), - [anon_sym_u32] = ACTIONS(517), - [anon_sym_i32] = ACTIONS(517), - [anon_sym_u64] = ACTIONS(517), - [anon_sym_i64] = ACTIONS(517), - [anon_sym_u128] = ACTIONS(517), - [anon_sym_i128] = ACTIONS(517), - [anon_sym_isize] = ACTIONS(517), - [anon_sym_usize] = ACTIONS(517), - [anon_sym_f32] = ACTIONS(517), - [anon_sym_f64] = ACTIONS(517), - [anon_sym_bool] = ACTIONS(517), - [anon_sym_str] = ACTIONS(517), - [anon_sym_char] = ACTIONS(517), - [anon_sym_SQUOTE] = ACTIONS(517), - [anon_sym_as] = ACTIONS(521), - [anon_sym_async] = ACTIONS(517), - [anon_sym_break] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_default] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_fn] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_impl] = ACTIONS(517), - [anon_sym_let] = ACTIONS(517), - [anon_sym_loop] = ACTIONS(517), - [anon_sym_match] = ACTIONS(517), - [anon_sym_mod] = ACTIONS(517), - [anon_sym_pub] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_struct] = ACTIONS(517), - [anon_sym_trait] = ACTIONS(517), - [anon_sym_type] = ACTIONS(517), - [anon_sym_union] = ACTIONS(517), - [anon_sym_unsafe] = ACTIONS(517), - [anon_sym_use] = ACTIONS(517), - [anon_sym_while] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(521), - [anon_sym_extern] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(521), - [anon_sym_GT] = ACTIONS(521), - [anon_sym_COLON_COLON] = ACTIONS(515), - [anon_sym_AMP] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(519), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_AMP_AMP] = ACTIONS(519), - [anon_sym_PIPE_PIPE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(521), - [anon_sym_CARET] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ] = ACTIONS(519), - [anon_sym_LT_EQ] = ACTIONS(519), - [anon_sym_GT_EQ] = ACTIONS(519), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(521), - [anon_sym_PLUS_EQ] = ACTIONS(519), - [anon_sym_DASH_EQ] = ACTIONS(519), - [anon_sym_STAR_EQ] = ACTIONS(519), - [anon_sym_SLASH_EQ] = ACTIONS(519), - [anon_sym_PERCENT_EQ] = ACTIONS(519), - [anon_sym_AMP_EQ] = ACTIONS(519), - [anon_sym_PIPE_EQ] = ACTIONS(519), - [anon_sym_CARET_EQ] = ACTIONS(519), - [anon_sym_LT_LT_EQ] = ACTIONS(519), - [anon_sym_GT_GT_EQ] = ACTIONS(519), - [anon_sym_move] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(521), - [sym_integer_literal] = ACTIONS(515), - [aux_sym_string_literal_token1] = ACTIONS(515), - [sym_char_literal] = ACTIONS(515), - [anon_sym_true] = ACTIONS(517), - [anon_sym_false] = ACTIONS(517), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(517), - [sym_super] = ACTIONS(517), - [sym_crate] = ACTIONS(517), - [sym_metavariable] = ACTIONS(515), - [sym_raw_string_literal] = ACTIONS(515), - [sym_float_literal] = ACTIONS(515), - [sym_block_comment] = ACTIONS(3), - }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(523), - [sym_identifier] = ACTIONS(525), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_macro_rules_BANG] = ACTIONS(523), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(523), - [anon_sym_u8] = ACTIONS(525), - [anon_sym_i8] = ACTIONS(525), - [anon_sym_u16] = ACTIONS(525), - [anon_sym_i16] = ACTIONS(525), - [anon_sym_u32] = ACTIONS(525), - [anon_sym_i32] = ACTIONS(525), - [anon_sym_u64] = ACTIONS(525), - [anon_sym_i64] = ACTIONS(525), - [anon_sym_u128] = ACTIONS(525), - [anon_sym_i128] = ACTIONS(525), - [anon_sym_isize] = ACTIONS(525), - [anon_sym_usize] = ACTIONS(525), - [anon_sym_f32] = ACTIONS(525), - [anon_sym_f64] = ACTIONS(525), - [anon_sym_bool] = ACTIONS(525), - [anon_sym_str] = ACTIONS(525), - [anon_sym_char] = ACTIONS(525), - [anon_sym_SQUOTE] = ACTIONS(525), - [anon_sym_as] = ACTIONS(525), - [anon_sym_async] = ACTIONS(525), - [anon_sym_break] = ACTIONS(525), - [anon_sym_const] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_default] = ACTIONS(525), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_fn] = ACTIONS(525), - [anon_sym_for] = ACTIONS(525), - [anon_sym_if] = ACTIONS(525), - [anon_sym_impl] = ACTIONS(525), - [anon_sym_let] = ACTIONS(525), - [anon_sym_loop] = ACTIONS(525), - [anon_sym_match] = ACTIONS(525), - [anon_sym_mod] = ACTIONS(525), - [anon_sym_pub] = ACTIONS(525), - [anon_sym_return] = ACTIONS(525), - [anon_sym_static] = ACTIONS(525), - [anon_sym_struct] = ACTIONS(525), - [anon_sym_trait] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_union] = ACTIONS(525), - [anon_sym_unsafe] = ACTIONS(525), - [anon_sym_use] = ACTIONS(525), - [anon_sym_while] = ACTIONS(525), - [anon_sym_POUND] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(525), - [anon_sym_EQ] = ACTIONS(525), - [anon_sym_extern] = ACTIONS(525), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_GT] = ACTIONS(525), - [anon_sym_COLON_COLON] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(523), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(523), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_AMP_AMP] = ACTIONS(523), - [anon_sym_PIPE_PIPE] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(525), - [anon_sym_EQ_EQ] = ACTIONS(523), - [anon_sym_BANG_EQ] = ACTIONS(523), - [anon_sym_LT_EQ] = ACTIONS(523), - [anon_sym_GT_EQ] = ACTIONS(523), - [anon_sym_LT_LT] = ACTIONS(525), - [anon_sym_GT_GT] = ACTIONS(525), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_PLUS_EQ] = ACTIONS(523), - [anon_sym_DASH_EQ] = ACTIONS(523), - [anon_sym_STAR_EQ] = ACTIONS(523), - [anon_sym_SLASH_EQ] = ACTIONS(523), - [anon_sym_PERCENT_EQ] = ACTIONS(523), - [anon_sym_AMP_EQ] = ACTIONS(523), - [anon_sym_PIPE_EQ] = ACTIONS(523), - [anon_sym_CARET_EQ] = ACTIONS(523), - [anon_sym_LT_LT_EQ] = ACTIONS(523), - [anon_sym_GT_GT_EQ] = ACTIONS(523), - [anon_sym_move] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(525), - [sym_integer_literal] = ACTIONS(523), - [aux_sym_string_literal_token1] = ACTIONS(523), - [sym_char_literal] = ACTIONS(523), - [anon_sym_true] = ACTIONS(525), - [anon_sym_false] = ACTIONS(525), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(525), - [sym_super] = ACTIONS(525), - [sym_crate] = ACTIONS(525), - [sym_metavariable] = ACTIONS(523), - [sym_raw_string_literal] = ACTIONS(523), - [sym_float_literal] = ACTIONS(523), + [sym_raw_string_literal] = ACTIONS(465), + [sym_float_literal] = ACTIONS(465), [sym_block_comment] = ACTIONS(3), }, [57] = { @@ -15046,159 +15068,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [58] = { - [ts_builtin_sym_end] = ACTIONS(531), - [sym_identifier] = ACTIONS(533), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym_macro_rules_BANG] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(531), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_LBRACK] = ACTIONS(531), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(533), - [anon_sym_QMARK] = ACTIONS(519), - [anon_sym_u8] = ACTIONS(533), - [anon_sym_i8] = ACTIONS(533), - [anon_sym_u16] = ACTIONS(533), - [anon_sym_i16] = ACTIONS(533), - [anon_sym_u32] = ACTIONS(533), - [anon_sym_i32] = ACTIONS(533), - [anon_sym_u64] = ACTIONS(533), - [anon_sym_i64] = ACTIONS(533), - [anon_sym_u128] = ACTIONS(533), - [anon_sym_i128] = ACTIONS(533), - [anon_sym_isize] = ACTIONS(533), - [anon_sym_usize] = ACTIONS(533), - [anon_sym_f32] = ACTIONS(533), - [anon_sym_f64] = ACTIONS(533), - [anon_sym_bool] = ACTIONS(533), - [anon_sym_str] = ACTIONS(533), - [anon_sym_char] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(533), - [anon_sym_as] = ACTIONS(521), - [anon_sym_async] = ACTIONS(533), - [anon_sym_break] = ACTIONS(533), - [anon_sym_const] = ACTIONS(533), - [anon_sym_continue] = ACTIONS(533), - [anon_sym_default] = ACTIONS(533), - [anon_sym_enum] = ACTIONS(533), - [anon_sym_fn] = ACTIONS(533), - [anon_sym_for] = ACTIONS(533), - [anon_sym_if] = ACTIONS(533), - [anon_sym_impl] = ACTIONS(533), - [anon_sym_let] = ACTIONS(533), - [anon_sym_loop] = ACTIONS(533), - [anon_sym_match] = ACTIONS(533), - [anon_sym_mod] = ACTIONS(533), - [anon_sym_pub] = ACTIONS(533), - [anon_sym_return] = ACTIONS(533), - [anon_sym_static] = ACTIONS(533), - [anon_sym_struct] = ACTIONS(533), - [anon_sym_trait] = ACTIONS(533), - [anon_sym_type] = ACTIONS(533), - [anon_sym_union] = ACTIONS(533), - [anon_sym_unsafe] = ACTIONS(533), - [anon_sym_use] = ACTIONS(533), - [anon_sym_while] = ACTIONS(533), - [anon_sym_POUND] = ACTIONS(531), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_EQ] = ACTIONS(521), - [anon_sym_extern] = ACTIONS(533), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_GT] = ACTIONS(521), - [anon_sym_COLON_COLON] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(519), - [anon_sym_DOT_DOT] = ACTIONS(533), - [anon_sym_DOT_DOT_EQ] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(519), - [anon_sym_PIPE_PIPE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(533), - [anon_sym_CARET] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ] = ACTIONS(519), - [anon_sym_LT_EQ] = ACTIONS(519), - [anon_sym_GT_EQ] = ACTIONS(519), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(521), - [anon_sym_PLUS_EQ] = ACTIONS(519), - [anon_sym_DASH_EQ] = ACTIONS(519), - [anon_sym_STAR_EQ] = ACTIONS(519), - [anon_sym_SLASH_EQ] = ACTIONS(519), - [anon_sym_PERCENT_EQ] = ACTIONS(519), - [anon_sym_AMP_EQ] = ACTIONS(519), - [anon_sym_PIPE_EQ] = ACTIONS(519), - [anon_sym_CARET_EQ] = ACTIONS(519), - [anon_sym_LT_LT_EQ] = ACTIONS(519), - [anon_sym_GT_GT_EQ] = ACTIONS(519), - [anon_sym_move] = ACTIONS(533), - [anon_sym_DOT] = ACTIONS(521), - [sym_integer_literal] = ACTIONS(531), - [aux_sym_string_literal_token1] = ACTIONS(531), - [sym_char_literal] = ACTIONS(531), - [anon_sym_true] = ACTIONS(533), - [anon_sym_false] = ACTIONS(533), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(533), - [sym_super] = ACTIONS(533), - [sym_crate] = ACTIONS(533), - [sym_metavariable] = ACTIONS(531), - [sym_raw_string_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(531), - [sym_block_comment] = ACTIONS(3), - }, - [59] = { - [sym_attribute_item] = STATE(63), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1109), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1109), - [sym_macro_invocation] = STATE(1109), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1109), - [sym_unary_expression] = STATE(1109), - [sym_try_expression] = STATE(1109), - [sym_reference_expression] = STATE(1109), - [sym_binary_expression] = STATE(1109), - [sym_assignment_expression] = STATE(1109), - [sym_compound_assignment_expr] = STATE(1109), - [sym_type_cast_expression] = STATE(1109), - [sym_return_expression] = STATE(1109), - [sym_call_expression] = STATE(1109), - [sym_array_expression] = STATE(1109), - [sym_parenthesized_expression] = STATE(1109), - [sym_tuple_expression] = STATE(1109), - [sym_unit_expression] = STATE(1109), - [sym_struct_expression] = STATE(1109), - [sym_if_expression] = STATE(1109), - [sym_if_let_expression] = STATE(1109), - [sym_match_expression] = STATE(1109), - [sym_while_expression] = STATE(1109), - [sym_while_let_expression] = STATE(1109), - [sym_loop_expression] = STATE(1109), - [sym_for_expression] = STATE(1109), - [sym_closure_expression] = STATE(1109), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1109), - [sym_continue_expression] = STATE(1109), - [sym_index_expression] = STATE(1109), - [sym_await_expression] = STATE(1109), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1109), - [sym_async_block] = STATE(1109), - [sym_block] = STATE(1109), - [sym__literal] = STATE(1109), - [sym_string_literal] = STATE(1109), - [sym_boolean_literal] = STATE(1109), - [aux_sym_enum_variant_list_repeat1] = STATE(63), + [sym_attribute_item] = STATE(60), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1123), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1123), + [sym_macro_invocation] = STATE(1123), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1123), + [sym_unary_expression] = STATE(1123), + [sym_try_expression] = STATE(1123), + [sym_reference_expression] = STATE(1123), + [sym_binary_expression] = STATE(1123), + [sym_assignment_expression] = STATE(1123), + [sym_compound_assignment_expr] = STATE(1123), + [sym_type_cast_expression] = STATE(1123), + [sym_return_expression] = STATE(1123), + [sym_call_expression] = STATE(1123), + [sym_array_expression] = STATE(1123), + [sym_parenthesized_expression] = STATE(1123), + [sym_tuple_expression] = STATE(1123), + [sym_unit_expression] = STATE(1123), + [sym_struct_expression] = STATE(1123), + [sym_if_expression] = STATE(1123), + [sym_if_let_expression] = STATE(1123), + [sym_match_expression] = STATE(1123), + [sym_while_expression] = STATE(1123), + [sym_while_let_expression] = STATE(1123), + [sym_loop_expression] = STATE(1123), + [sym_for_expression] = STATE(1123), + [sym_closure_expression] = STATE(1123), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1123), + [sym_continue_expression] = STATE(1123), + [sym_index_expression] = STATE(1123), + [sym_await_expression] = STATE(1123), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1123), + [sym_async_block] = STATE(1123), + [sym_block] = STATE(1123), + [sym__literal] = STATE(1123), + [sym_string_literal] = STATE(1123), + [sym_boolean_literal] = STATE(1123), + [aux_sym_enum_variant_list_repeat1] = STATE(60), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(531), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -15241,9 +15158,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(537), + [sym_integer_literal] = ACTIONS(533), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(537), + [sym_char_literal] = ACTIONS(533), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -15251,160 +15168,161 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(537), - [sym_float_literal] = ACTIONS(537), + [sym_raw_string_literal] = ACTIONS(533), + [sym_float_literal] = ACTIONS(533), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [sym_identifier] = ACTIONS(517), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym_macro_rules_BANG] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(519), - [anon_sym_u8] = ACTIONS(517), - [anon_sym_i8] = ACTIONS(517), - [anon_sym_u16] = ACTIONS(517), - [anon_sym_i16] = ACTIONS(517), - [anon_sym_u32] = ACTIONS(517), - [anon_sym_i32] = ACTIONS(517), - [anon_sym_u64] = ACTIONS(517), - [anon_sym_i64] = ACTIONS(517), - [anon_sym_u128] = ACTIONS(517), - [anon_sym_i128] = ACTIONS(517), - [anon_sym_isize] = ACTIONS(517), - [anon_sym_usize] = ACTIONS(517), - [anon_sym_f32] = ACTIONS(517), - [anon_sym_f64] = ACTIONS(517), - [anon_sym_bool] = ACTIONS(517), - [anon_sym_str] = ACTIONS(517), - [anon_sym_char] = ACTIONS(517), - [anon_sym_SQUOTE] = ACTIONS(517), - [anon_sym_as] = ACTIONS(521), - [anon_sym_async] = ACTIONS(517), - [anon_sym_break] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_default] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_fn] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_impl] = ACTIONS(517), - [anon_sym_let] = ACTIONS(517), - [anon_sym_loop] = ACTIONS(517), - [anon_sym_match] = ACTIONS(517), - [anon_sym_mod] = ACTIONS(517), - [anon_sym_pub] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_struct] = ACTIONS(517), - [anon_sym_trait] = ACTIONS(517), - [anon_sym_type] = ACTIONS(517), - [anon_sym_union] = ACTIONS(517), - [anon_sym_unsafe] = ACTIONS(517), - [anon_sym_use] = ACTIONS(517), - [anon_sym_while] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_EQ] = ACTIONS(521), - [anon_sym_extern] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(521), - [anon_sym_GT] = ACTIONS(521), - [anon_sym_COLON_COLON] = ACTIONS(515), - [anon_sym_AMP] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(519), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_AMP_AMP] = ACTIONS(519), - [anon_sym_PIPE_PIPE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(521), - [anon_sym_CARET] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ] = ACTIONS(519), - [anon_sym_LT_EQ] = ACTIONS(519), - [anon_sym_GT_EQ] = ACTIONS(519), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(521), - [anon_sym_PLUS_EQ] = ACTIONS(519), - [anon_sym_DASH_EQ] = ACTIONS(519), - [anon_sym_STAR_EQ] = ACTIONS(519), - [anon_sym_SLASH_EQ] = ACTIONS(519), - [anon_sym_PERCENT_EQ] = ACTIONS(519), - [anon_sym_AMP_EQ] = ACTIONS(519), - [anon_sym_PIPE_EQ] = ACTIONS(519), - [anon_sym_CARET_EQ] = ACTIONS(519), - [anon_sym_LT_LT_EQ] = ACTIONS(519), - [anon_sym_GT_GT_EQ] = ACTIONS(519), - [anon_sym_move] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(521), - [sym_integer_literal] = ACTIONS(515), - [aux_sym_string_literal_token1] = ACTIONS(515), - [sym_char_literal] = ACTIONS(515), - [anon_sym_true] = ACTIONS(517), - [anon_sym_false] = ACTIONS(517), + [59] = { + [ts_builtin_sym_end] = ACTIONS(535), + [sym_identifier] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(535), + [anon_sym_macro_rules_BANG] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_LBRACE] = ACTIONS(535), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_LBRACK] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_u8] = ACTIONS(537), + [anon_sym_i8] = ACTIONS(537), + [anon_sym_u16] = ACTIONS(537), + [anon_sym_i16] = ACTIONS(537), + [anon_sym_u32] = ACTIONS(537), + [anon_sym_i32] = ACTIONS(537), + [anon_sym_u64] = ACTIONS(537), + [anon_sym_i64] = ACTIONS(537), + [anon_sym_u128] = ACTIONS(537), + [anon_sym_i128] = ACTIONS(537), + [anon_sym_isize] = ACTIONS(537), + [anon_sym_usize] = ACTIONS(537), + [anon_sym_f32] = ACTIONS(537), + [anon_sym_f64] = ACTIONS(537), + [anon_sym_bool] = ACTIONS(537), + [anon_sym_str] = ACTIONS(537), + [anon_sym_char] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(537), + [anon_sym_as] = ACTIONS(537), + [anon_sym_async] = ACTIONS(537), + [anon_sym_break] = ACTIONS(537), + [anon_sym_const] = ACTIONS(537), + [anon_sym_continue] = ACTIONS(537), + [anon_sym_default] = ACTIONS(537), + [anon_sym_enum] = ACTIONS(537), + [anon_sym_fn] = ACTIONS(537), + [anon_sym_for] = ACTIONS(537), + [anon_sym_if] = ACTIONS(537), + [anon_sym_impl] = ACTIONS(537), + [anon_sym_let] = ACTIONS(537), + [anon_sym_loop] = ACTIONS(537), + [anon_sym_match] = ACTIONS(537), + [anon_sym_mod] = ACTIONS(537), + [anon_sym_pub] = ACTIONS(537), + [anon_sym_return] = ACTIONS(537), + [anon_sym_static] = ACTIONS(537), + [anon_sym_struct] = ACTIONS(537), + [anon_sym_trait] = ACTIONS(537), + [anon_sym_type] = ACTIONS(537), + [anon_sym_union] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_use] = ACTIONS(537), + [anon_sym_while] = ACTIONS(537), + [anon_sym_POUND] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_EQ] = ACTIONS(537), + [anon_sym_extern] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(537), + [anon_sym_COLON_COLON] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [anon_sym_DOT_DOT] = ACTIONS(537), + [anon_sym_DOT_DOT_EQ] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ] = ACTIONS(535), + [anon_sym_LT_EQ] = ACTIONS(535), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(537), + [anon_sym_GT_GT] = ACTIONS(537), + [anon_sym_SLASH] = ACTIONS(537), + [anon_sym_PERCENT] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(535), + [anon_sym_DASH_EQ] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(535), + [anon_sym_SLASH_EQ] = ACTIONS(535), + [anon_sym_PERCENT_EQ] = ACTIONS(535), + [anon_sym_AMP_EQ] = ACTIONS(535), + [anon_sym_PIPE_EQ] = ACTIONS(535), + [anon_sym_CARET_EQ] = ACTIONS(535), + [anon_sym_LT_LT_EQ] = ACTIONS(535), + [anon_sym_GT_GT_EQ] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_DOT] = ACTIONS(537), + [sym_integer_literal] = ACTIONS(535), + [aux_sym_string_literal_token1] = ACTIONS(535), + [sym_char_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(517), - [sym_super] = ACTIONS(517), - [sym_crate] = ACTIONS(517), - [sym_metavariable] = ACTIONS(515), - [sym_raw_string_literal] = ACTIONS(515), - [sym_float_literal] = ACTIONS(515), + [sym_self] = ACTIONS(537), + [sym_super] = ACTIONS(537), + [sym_crate] = ACTIONS(537), + [sym_metavariable] = ACTIONS(535), + [sym_raw_string_literal] = ACTIONS(535), + [sym_float_literal] = ACTIONS(535), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [sym_attribute_item] = STATE(541), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1076), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1076), - [sym_macro_invocation] = STATE(1076), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(1076), - [sym_try_expression] = STATE(1076), - [sym_reference_expression] = STATE(1076), - [sym_binary_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_compound_assignment_expr] = STATE(1076), - [sym_type_cast_expression] = STATE(1076), - [sym_return_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_array_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_tuple_expression] = STATE(1076), - [sym_unit_expression] = STATE(1076), - [sym_struct_expression] = STATE(1076), - [sym_if_expression] = STATE(1076), - [sym_if_let_expression] = STATE(1076), - [sym_match_expression] = STATE(1076), - [sym_while_expression] = STATE(1076), - [sym_while_let_expression] = STATE(1076), - [sym_loop_expression] = STATE(1076), - [sym_for_expression] = STATE(1076), - [sym_closure_expression] = STATE(1076), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1076), - [sym_continue_expression] = STATE(1076), - [sym_index_expression] = STATE(1076), - [sym_await_expression] = STATE(1076), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1076), - [sym_async_block] = STATE(1076), - [sym_block] = STATE(1076), - [sym__literal] = STATE(1076), - [sym_string_literal] = STATE(1076), - [sym_boolean_literal] = STATE(1076), - [aux_sym_enum_variant_list_repeat1] = STATE(541), + [60] = { + [sym_attribute_item] = STATE(528), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1182), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1182), + [sym_macro_invocation] = STATE(1182), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1182), + [sym_unary_expression] = STATE(1182), + [sym_try_expression] = STATE(1182), + [sym_reference_expression] = STATE(1182), + [sym_binary_expression] = STATE(1182), + [sym_assignment_expression] = STATE(1182), + [sym_compound_assignment_expr] = STATE(1182), + [sym_type_cast_expression] = STATE(1182), + [sym_return_expression] = STATE(1182), + [sym_call_expression] = STATE(1182), + [sym_array_expression] = STATE(1182), + [sym_parenthesized_expression] = STATE(1182), + [sym_tuple_expression] = STATE(1182), + [sym_unit_expression] = STATE(1182), + [sym_struct_expression] = STATE(1182), + [sym_if_expression] = STATE(1182), + [sym_if_let_expression] = STATE(1182), + [sym_match_expression] = STATE(1182), + [sym_while_expression] = STATE(1182), + [sym_while_let_expression] = STATE(1182), + [sym_loop_expression] = STATE(1182), + [sym_for_expression] = STATE(1182), + [sym_closure_expression] = STATE(1182), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1182), + [sym_continue_expression] = STATE(1182), + [sym_index_expression] = STATE(1182), + [sym_await_expression] = STATE(1182), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1182), + [sym_async_block] = STATE(1182), + [sym_block] = STATE(1182), + [sym__literal] = STATE(1182), + [sym_string_literal] = STATE(1182), + [sym_boolean_literal] = STATE(1182), + [aux_sym_enum_variant_list_repeat1] = STATE(528), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -15463,52 +15381,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(539), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_attribute_item] = STATE(64), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1129), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(1129), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1129), - [sym_unary_expression] = STATE(1129), - [sym_try_expression] = STATE(1129), - [sym_reference_expression] = STATE(1129), - [sym_binary_expression] = STATE(1129), - [sym_assignment_expression] = STATE(1129), - [sym_compound_assignment_expr] = STATE(1129), - [sym_type_cast_expression] = STATE(1129), - [sym_return_expression] = STATE(1129), - [sym_call_expression] = STATE(1129), - [sym_array_expression] = STATE(1129), - [sym_parenthesized_expression] = STATE(1129), - [sym_tuple_expression] = STATE(1129), - [sym_unit_expression] = STATE(1129), - [sym_struct_expression] = STATE(1129), - [sym_if_expression] = STATE(1129), - [sym_if_let_expression] = STATE(1129), - [sym_match_expression] = STATE(1129), - [sym_while_expression] = STATE(1129), - [sym_while_let_expression] = STATE(1129), - [sym_loop_expression] = STATE(1129), - [sym_for_expression] = STATE(1129), - [sym_closure_expression] = STATE(1129), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1129), - [sym_continue_expression] = STATE(1129), - [sym_index_expression] = STATE(1129), - [sym_await_expression] = STATE(1129), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1129), - [sym_async_block] = STATE(1129), - [sym_block] = STATE(1129), - [sym__literal] = STATE(1129), - [sym_string_literal] = STATE(1129), - [sym_boolean_literal] = STATE(1129), - [aux_sym_enum_variant_list_repeat1] = STATE(64), + [61] = { + [sym_attribute_item] = STATE(528), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1075), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(1075), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1075), + [sym_unary_expression] = STATE(1075), + [sym_try_expression] = STATE(1075), + [sym_reference_expression] = STATE(1075), + [sym_binary_expression] = STATE(1075), + [sym_assignment_expression] = STATE(1075), + [sym_compound_assignment_expr] = STATE(1075), + [sym_type_cast_expression] = STATE(1075), + [sym_return_expression] = STATE(1075), + [sym_call_expression] = STATE(1075), + [sym_array_expression] = STATE(1075), + [sym_parenthesized_expression] = STATE(1075), + [sym_tuple_expression] = STATE(1075), + [sym_unit_expression] = STATE(1075), + [sym_struct_expression] = STATE(1075), + [sym_if_expression] = STATE(1075), + [sym_if_let_expression] = STATE(1075), + [sym_match_expression] = STATE(1075), + [sym_while_expression] = STATE(1075), + [sym_while_let_expression] = STATE(1075), + [sym_loop_expression] = STATE(1075), + [sym_for_expression] = STATE(1075), + [sym_closure_expression] = STATE(1075), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1075), + [sym_continue_expression] = STATE(1075), + [sym_index_expression] = STATE(1075), + [sym_await_expression] = STATE(1075), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1075), + [sym_async_block] = STATE(1075), + [sym_block] = STATE(1075), + [sym__literal] = STATE(1075), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_enum_variant_list_repeat1] = STATE(528), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -15553,9 +15471,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(445), + [sym_integer_literal] = ACTIONS(541), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(445), + [sym_char_literal] = ACTIONS(541), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -15563,56 +15481,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(445), - [sym_float_literal] = ACTIONS(445), + [sym_raw_string_literal] = ACTIONS(541), + [sym_float_literal] = ACTIONS(541), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [sym_identifier] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_macro_rules_BANG] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(515), + [anon_sym_QMARK] = ACTIONS(513), + [anon_sym_u8] = ACTIONS(511), + [anon_sym_i8] = ACTIONS(511), + [anon_sym_u16] = ACTIONS(511), + [anon_sym_i16] = ACTIONS(511), + [anon_sym_u32] = ACTIONS(511), + [anon_sym_i32] = ACTIONS(511), + [anon_sym_u64] = ACTIONS(511), + [anon_sym_i64] = ACTIONS(511), + [anon_sym_u128] = ACTIONS(511), + [anon_sym_i128] = ACTIONS(511), + [anon_sym_isize] = ACTIONS(511), + [anon_sym_usize] = ACTIONS(511), + [anon_sym_f32] = ACTIONS(511), + [anon_sym_f64] = ACTIONS(511), + [anon_sym_bool] = ACTIONS(511), + [anon_sym_str] = ACTIONS(511), + [anon_sym_char] = ACTIONS(511), + [anon_sym_SQUOTE] = ACTIONS(511), + [anon_sym_as] = ACTIONS(515), + [anon_sym_async] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_const] = ACTIONS(511), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(511), + [anon_sym_enum] = ACTIONS(511), + [anon_sym_fn] = ACTIONS(511), + [anon_sym_for] = ACTIONS(511), + [anon_sym_if] = ACTIONS(511), + [anon_sym_impl] = ACTIONS(511), + [anon_sym_let] = ACTIONS(511), + [anon_sym_loop] = ACTIONS(511), + [anon_sym_match] = ACTIONS(511), + [anon_sym_mod] = ACTIONS(511), + [anon_sym_pub] = ACTIONS(511), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(511), + [anon_sym_struct] = ACTIONS(511), + [anon_sym_trait] = ACTIONS(511), + [anon_sym_type] = ACTIONS(511), + [anon_sym_union] = ACTIONS(511), + [anon_sym_unsafe] = ACTIONS(511), + [anon_sym_use] = ACTIONS(511), + [anon_sym_while] = ACTIONS(511), + [anon_sym_POUND] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_EQ] = ACTIONS(515), + [anon_sym_extern] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_COLON_COLON] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT_EQ] = ACTIONS(513), + [anon_sym_GT_EQ] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(515), + [anon_sym_PLUS_EQ] = ACTIONS(513), + [anon_sym_DASH_EQ] = ACTIONS(513), + [anon_sym_STAR_EQ] = ACTIONS(513), + [anon_sym_SLASH_EQ] = ACTIONS(513), + [anon_sym_PERCENT_EQ] = ACTIONS(513), + [anon_sym_AMP_EQ] = ACTIONS(513), + [anon_sym_PIPE_EQ] = ACTIONS(513), + [anon_sym_CARET_EQ] = ACTIONS(513), + [anon_sym_LT_LT_EQ] = ACTIONS(513), + [anon_sym_GT_GT_EQ] = ACTIONS(513), + [anon_sym_move] = ACTIONS(511), + [anon_sym_DOT] = ACTIONS(515), + [sym_integer_literal] = ACTIONS(509), + [aux_sym_string_literal_token1] = ACTIONS(509), + [sym_char_literal] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_crate] = ACTIONS(511), + [sym_metavariable] = ACTIONS(509), + [sym_raw_string_literal] = ACTIONS(509), + [sym_float_literal] = ACTIONS(509), [sym_block_comment] = ACTIONS(3), }, [63] = { - [sym_attribute_item] = STATE(541), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1194), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1194), - [sym_macro_invocation] = STATE(1194), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1194), - [sym_unary_expression] = STATE(1194), - [sym_try_expression] = STATE(1194), - [sym_reference_expression] = STATE(1194), - [sym_binary_expression] = STATE(1194), - [sym_assignment_expression] = STATE(1194), - [sym_compound_assignment_expr] = STATE(1194), - [sym_type_cast_expression] = STATE(1194), - [sym_return_expression] = STATE(1194), - [sym_call_expression] = STATE(1194), - [sym_array_expression] = STATE(1194), - [sym_parenthesized_expression] = STATE(1194), - [sym_tuple_expression] = STATE(1194), - [sym_unit_expression] = STATE(1194), - [sym_struct_expression] = STATE(1194), - [sym_if_expression] = STATE(1194), - [sym_if_let_expression] = STATE(1194), - [sym_match_expression] = STATE(1194), - [sym_while_expression] = STATE(1194), - [sym_while_let_expression] = STATE(1194), - [sym_loop_expression] = STATE(1194), - [sym_for_expression] = STATE(1194), - [sym_closure_expression] = STATE(1194), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1194), - [sym_continue_expression] = STATE(1194), - [sym_index_expression] = STATE(1194), - [sym_await_expression] = STATE(1194), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1194), - [sym_async_block] = STATE(1194), - [sym_block] = STATE(1194), - [sym__literal] = STATE(1194), - [sym_string_literal] = STATE(1194), - [sym_boolean_literal] = STATE(1194), - [aux_sym_enum_variant_list_repeat1] = STATE(541), + [sym_attribute_item] = STATE(64), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1115), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1115), + [sym_macro_invocation] = STATE(1115), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1115), + [sym_unary_expression] = STATE(1115), + [sym_try_expression] = STATE(1115), + [sym_reference_expression] = STATE(1115), + [sym_binary_expression] = STATE(1115), + [sym_assignment_expression] = STATE(1115), + [sym_compound_assignment_expr] = STATE(1115), + [sym_type_cast_expression] = STATE(1115), + [sym_return_expression] = STATE(1115), + [sym_call_expression] = STATE(1115), + [sym_array_expression] = STATE(1115), + [sym_parenthesized_expression] = STATE(1115), + [sym_tuple_expression] = STATE(1115), + [sym_unit_expression] = STATE(1115), + [sym_struct_expression] = STATE(1115), + [sym_if_expression] = STATE(1115), + [sym_if_let_expression] = STATE(1115), + [sym_match_expression] = STATE(1115), + [sym_while_expression] = STATE(1115), + [sym_while_let_expression] = STATE(1115), + [sym_loop_expression] = STATE(1115), + [sym_for_expression] = STATE(1115), + [sym_closure_expression] = STATE(1115), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1115), + [sym_continue_expression] = STATE(1115), + [sym_index_expression] = STATE(1115), + [sym_await_expression] = STATE(1115), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1115), + [sym_async_block] = STATE(1115), + [sym_block] = STATE(1115), + [sym__literal] = STATE(1115), + [sym_string_literal] = STATE(1115), + [sym_boolean_literal] = STATE(1115), + [aux_sym_enum_variant_list_repeat1] = STATE(64), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -15657,9 +15679,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(541), + [sym_integer_literal] = ACTIONS(465), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(541), + [sym_char_literal] = ACTIONS(465), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -15667,56 +15689,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(541), - [sym_float_literal] = ACTIONS(541), + [sym_raw_string_literal] = ACTIONS(465), + [sym_float_literal] = ACTIONS(465), [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym_attribute_item] = STATE(541), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1131), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1131), - [sym_macro_invocation] = STATE(1131), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1131), - [sym_unary_expression] = STATE(1131), - [sym_try_expression] = STATE(1131), - [sym_reference_expression] = STATE(1131), - [sym_binary_expression] = STATE(1131), - [sym_assignment_expression] = STATE(1131), - [sym_compound_assignment_expr] = STATE(1131), - [sym_type_cast_expression] = STATE(1131), - [sym_return_expression] = STATE(1131), - [sym_call_expression] = STATE(1131), - [sym_array_expression] = STATE(1131), - [sym_parenthesized_expression] = STATE(1131), - [sym_tuple_expression] = STATE(1131), - [sym_unit_expression] = STATE(1131), - [sym_struct_expression] = STATE(1131), - [sym_if_expression] = STATE(1131), - [sym_if_let_expression] = STATE(1131), - [sym_match_expression] = STATE(1131), - [sym_while_expression] = STATE(1131), - [sym_while_let_expression] = STATE(1131), - [sym_loop_expression] = STATE(1131), - [sym_for_expression] = STATE(1131), - [sym_closure_expression] = STATE(1131), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1131), - [sym_continue_expression] = STATE(1131), - [sym_index_expression] = STATE(1131), - [sym_await_expression] = STATE(1131), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1131), - [sym_async_block] = STATE(1131), - [sym_block] = STATE(1131), - [sym__literal] = STATE(1131), - [sym_string_literal] = STATE(1131), - [sym_boolean_literal] = STATE(1131), - [aux_sym_enum_variant_list_repeat1] = STATE(541), + [sym_attribute_item] = STATE(528), + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1104), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1104), + [sym_macro_invocation] = STATE(1104), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1104), + [sym_unary_expression] = STATE(1104), + [sym_try_expression] = STATE(1104), + [sym_reference_expression] = STATE(1104), + [sym_binary_expression] = STATE(1104), + [sym_assignment_expression] = STATE(1104), + [sym_compound_assignment_expr] = STATE(1104), + [sym_type_cast_expression] = STATE(1104), + [sym_return_expression] = STATE(1104), + [sym_call_expression] = STATE(1104), + [sym_array_expression] = STATE(1104), + [sym_parenthesized_expression] = STATE(1104), + [sym_tuple_expression] = STATE(1104), + [sym_unit_expression] = STATE(1104), + [sym_struct_expression] = STATE(1104), + [sym_if_expression] = STATE(1104), + [sym_if_let_expression] = STATE(1104), + [sym_match_expression] = STATE(1104), + [sym_while_expression] = STATE(1104), + [sym_while_let_expression] = STATE(1104), + [sym_loop_expression] = STATE(1104), + [sym_for_expression] = STATE(1104), + [sym_closure_expression] = STATE(1104), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1104), + [sym_continue_expression] = STATE(1104), + [sym_index_expression] = STATE(1104), + [sym_await_expression] = STATE(1104), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1104), + [sym_async_block] = STATE(1104), + [sym_block] = STATE(1104), + [sym__literal] = STATE(1104), + [sym_string_literal] = STATE(1104), + [sym_boolean_literal] = STATE(1104), + [aux_sym_enum_variant_list_repeat1] = STATE(528), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -15776,156 +15798,259 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1124), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(1124), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1124), - [sym_unary_expression] = STATE(1124), - [sym_try_expression] = STATE(1124), - [sym_reference_expression] = STATE(1124), - [sym_binary_expression] = STATE(1124), - [sym_assignment_expression] = STATE(1124), - [sym_compound_assignment_expr] = STATE(1124), - [sym_type_cast_expression] = STATE(1124), - [sym_return_expression] = STATE(1124), - [sym_call_expression] = STATE(1124), - [sym_array_expression] = STATE(1124), - [sym_parenthesized_expression] = STATE(1124), - [sym_tuple_expression] = STATE(1124), - [sym_unit_expression] = STATE(1124), - [sym_struct_expression] = STATE(1124), - [sym_if_expression] = STATE(1124), - [sym_if_let_expression] = STATE(1124), - [sym_match_expression] = STATE(1124), - [sym_while_expression] = STATE(1124), - [sym_while_let_expression] = STATE(1124), - [sym_loop_expression] = STATE(1124), - [sym_for_expression] = STATE(1124), - [sym_closure_expression] = STATE(1124), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1124), - [sym_continue_expression] = STATE(1124), - [sym_index_expression] = STATE(1124), - [sym_await_expression] = STATE(1124), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1124), - [sym_async_block] = STATE(1124), - [sym_block] = STATE(1124), - [sym__literal] = STATE(1124), - [sym_string_literal] = STATE(1124), - [sym_boolean_literal] = STATE(1124), - [aux_sym_tuple_expression_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(295), - [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(301), - [anon_sym_break] = ACTIONS(27), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(1916), + [sym_variadic_parameter] = STATE(1916), + [sym_parameter] = STATE(1916), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1684), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1684), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1684), + [sym_tuple_type] = STATE(1684), + [sym_unit_type] = STATE(1684), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1684), + [sym_reference_type] = STATE(1684), + [sym_pointer_type] = STATE(1684), + [sym_empty_type] = STATE(1684), + [sym_abstract_type] = STATE(1684), + [sym_dynamic_type] = STATE(1684), + [sym_macro_invocation] = STATE(1684), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1735), + [sym_tuple_pattern] = STATE(1735), + [sym_slice_pattern] = STATE(1735), + [sym_tuple_struct_pattern] = STATE(1735), + [sym_struct_pattern] = STATE(1735), + [sym_remaining_field_pattern] = STATE(1735), + [sym_mut_pattern] = STATE(1735), + [sym_range_pattern] = STATE(1735), + [sym_ref_pattern] = STATE(1735), + [sym_captured_pattern] = STATE(1735), + [sym_reference_pattern] = STATE(1735), + [sym_box_pattern] = STATE(1735), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(575), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [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_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(547), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(547), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(547), - [sym_float_literal] = ACTIONS(547), + [sym_self] = ACTIONS(601), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, [66] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1093), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1093), - [sym_macro_invocation] = STATE(1093), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_try_expression] = STATE(1093), - [sym_reference_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_compound_assignment_expr] = STATE(1093), - [sym_type_cast_expression] = STATE(1093), - [sym_return_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_array_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_tuple_expression] = STATE(1093), - [sym_unit_expression] = STATE(1093), - [sym_struct_expression] = STATE(1093), - [sym_if_expression] = STATE(1093), - [sym_if_let_expression] = STATE(1093), - [sym_match_expression] = STATE(1093), - [sym_while_expression] = STATE(1093), - [sym_while_let_expression] = STATE(1093), - [sym_loop_expression] = STATE(1093), - [sym_for_expression] = STATE(1093), - [sym_closure_expression] = STATE(1093), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1093), - [sym_continue_expression] = STATE(1093), - [sym_index_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1093), - [sym_async_block] = STATE(1093), - [sym_block] = STATE(1093), - [sym__literal] = STATE(1093), - [sym_string_literal] = STATE(1093), - [sym_boolean_literal] = STATE(1093), - [aux_sym_tuple_expression_repeat1] = STATE(65), + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(1916), + [sym_variadic_parameter] = STATE(1916), + [sym_parameter] = STATE(1916), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1684), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1684), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1684), + [sym_tuple_type] = STATE(1684), + [sym_unit_type] = STATE(1684), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1684), + [sym_reference_type] = STATE(1684), + [sym_pointer_type] = STATE(1684), + [sym_empty_type] = STATE(1684), + [sym_abstract_type] = STATE(1684), + [sym_dynamic_type] = STATE(1684), + [sym_macro_invocation] = STATE(1684), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1735), + [sym_tuple_pattern] = STATE(1735), + [sym_slice_pattern] = STATE(1735), + [sym_tuple_struct_pattern] = STATE(1735), + [sym_struct_pattern] = STATE(1735), + [sym_remaining_field_pattern] = STATE(1735), + [sym_mut_pattern] = STATE(1735), + [sym_range_pattern] = STATE(1735), + [sym_ref_pattern] = STATE(1735), + [sym_captured_pattern] = STATE(1735), + [sym_reference_pattern] = STATE(1735), + [sym_box_pattern] = STATE(1735), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(601), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1130), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1130), + [sym_macro_invocation] = STATE(1130), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1130), + [sym_unary_expression] = STATE(1130), + [sym_try_expression] = STATE(1130), + [sym_reference_expression] = STATE(1130), + [sym_binary_expression] = STATE(1130), + [sym_assignment_expression] = STATE(1130), + [sym_compound_assignment_expr] = STATE(1130), + [sym_type_cast_expression] = STATE(1130), + [sym_return_expression] = STATE(1130), + [sym_call_expression] = STATE(1130), + [sym_array_expression] = STATE(1130), + [sym_parenthesized_expression] = STATE(1130), + [sym_tuple_expression] = STATE(1130), + [sym_unit_expression] = STATE(1130), + [sym_struct_expression] = STATE(1130), + [sym_if_expression] = STATE(1130), + [sym_if_let_expression] = STATE(1130), + [sym_match_expression] = STATE(1130), + [sym_while_expression] = STATE(1130), + [sym_while_let_expression] = STATE(1130), + [sym_loop_expression] = STATE(1130), + [sym_for_expression] = STATE(1130), + [sym_closure_expression] = STATE(1130), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1130), + [sym_continue_expression] = STATE(1130), + [sym_index_expression] = STATE(1130), + [sym_await_expression] = STATE(1130), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1130), + [sym_async_block] = STATE(1130), + [sym_block] = STATE(1130), + [sym__literal] = STATE(1130), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_tuple_expression_repeat1] = STATE(73), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(611), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -15967,9 +16092,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(551), + [sym_integer_literal] = ACTIONS(613), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(551), + [sym_char_literal] = ACTIONS(613), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -15977,58 +16102,264 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(551), - [sym_float_literal] = ACTIONS(551), + [sym_raw_string_literal] = ACTIONS(613), + [sym_float_literal] = ACTIONS(613), [sym_block_comment] = ACTIONS(3), }, - [67] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1142), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(1142), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1142), - [sym_unary_expression] = STATE(1142), - [sym_try_expression] = STATE(1142), - [sym_reference_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1142), - [sym_compound_assignment_expr] = STATE(1142), - [sym_type_cast_expression] = STATE(1142), - [sym_return_expression] = STATE(1142), - [sym_call_expression] = STATE(1142), - [sym_array_expression] = STATE(1142), - [sym_parenthesized_expression] = STATE(1142), - [sym_tuple_expression] = STATE(1142), - [sym_unit_expression] = STATE(1142), - [sym_struct_expression] = STATE(1142), - [sym_if_expression] = STATE(1142), - [sym_if_let_expression] = STATE(1142), - [sym_match_expression] = STATE(1142), - [sym_while_expression] = STATE(1142), - [sym_while_let_expression] = STATE(1142), - [sym_loop_expression] = STATE(1142), - [sym_for_expression] = STATE(1142), - [sym_closure_expression] = STATE(1142), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1142), - [sym_continue_expression] = STATE(1142), - [sym_index_expression] = STATE(1142), - [sym_await_expression] = STATE(1142), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1142), - [sym_async_block] = STATE(1142), - [sym_block] = STATE(1142), - [sym__literal] = STATE(1142), - [sym_string_literal] = STATE(1142), - [sym_boolean_literal] = STATE(1142), + [68] = { + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(1916), + [sym_variadic_parameter] = STATE(1916), + [sym_parameter] = STATE(1916), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1684), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1684), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1684), + [sym_tuple_type] = STATE(1684), + [sym_unit_type] = STATE(1684), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1684), + [sym_reference_type] = STATE(1684), + [sym_pointer_type] = STATE(1684), + [sym_empty_type] = STATE(1684), + [sym_abstract_type] = STATE(1684), + [sym_dynamic_type] = STATE(1684), + [sym_macro_invocation] = STATE(1684), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1195), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1195), + [sym_macro_invocation] = STATE(1195), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1195), + [sym_unary_expression] = STATE(1195), + [sym_try_expression] = STATE(1195), + [sym_reference_expression] = STATE(1195), + [sym_binary_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1195), + [sym_compound_assignment_expr] = STATE(1195), + [sym_type_cast_expression] = STATE(1195), + [sym_return_expression] = STATE(1195), + [sym_call_expression] = STATE(1195), + [sym_array_expression] = STATE(1195), + [sym_parenthesized_expression] = STATE(1195), + [sym_tuple_expression] = STATE(1195), + [sym_unit_expression] = STATE(1195), + [sym_struct_expression] = STATE(1195), + [sym_if_expression] = STATE(1195), + [sym_if_let_expression] = STATE(1195), + [sym_match_expression] = STATE(1195), + [sym_while_expression] = STATE(1195), + [sym_while_let_expression] = STATE(1195), + [sym_loop_expression] = STATE(1195), + [sym_for_expression] = STATE(1195), + [sym_closure_expression] = STATE(1195), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1195), + [sym_continue_expression] = STATE(1195), + [sym_index_expression] = STATE(1195), + [sym_await_expression] = STATE(1195), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1195), + [sym_async_block] = STATE(1195), + [sym_block] = STATE(1195), + [sym__literal] = STATE(1195), + [sym_string_literal] = STATE(1195), + [sym_boolean_literal] = STATE(1195), + [aux_sym_tuple_expression_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(651), + [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(657), + [anon_sym_async] = ACTIONS(660), + [anon_sym_break] = ACTIONS(663), + [anon_sym_continue] = ACTIONS(666), + [anon_sym_default] = ACTIONS(669), + [anon_sym_for] = ACTIONS(672), + [anon_sym_if] = ACTIONS(675), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(681), + [anon_sym_return] = ACTIONS(684), + [anon_sym_union] = ACTIONS(669), + [anon_sym_unsafe] = ACTIONS(687), + [anon_sym_while] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(699), + [anon_sym_DOT_DOT] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_move] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(711), + [aux_sym_string_literal_token1] = ACTIONS(714), + [sym_char_literal] = ACTIONS(711), + [anon_sym_true] = ACTIONS(717), + [anon_sym_false] = ACTIONS(717), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(720), + [sym_super] = ACTIONS(723), + [sym_crate] = ACTIONS(723), + [sym_metavariable] = ACTIONS(726), + [sym_raw_string_literal] = ACTIONS(711), + [sym_float_literal] = ACTIONS(711), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1111), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(1111), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1111), + [sym_unary_expression] = STATE(1111), + [sym_try_expression] = STATE(1111), + [sym_reference_expression] = STATE(1111), + [sym_binary_expression] = STATE(1111), + [sym_assignment_expression] = STATE(1111), + [sym_compound_assignment_expr] = STATE(1111), + [sym_type_cast_expression] = STATE(1111), + [sym_return_expression] = STATE(1111), + [sym_call_expression] = STATE(1111), + [sym_array_expression] = STATE(1111), + [sym_parenthesized_expression] = STATE(1111), + [sym_tuple_expression] = STATE(1111), + [sym_unit_expression] = STATE(1111), + [sym_struct_expression] = STATE(1111), + [sym_if_expression] = STATE(1111), + [sym_if_let_expression] = STATE(1111), + [sym_match_expression] = STATE(1111), + [sym_while_expression] = STATE(1111), + [sym_while_let_expression] = STATE(1111), + [sym_loop_expression] = STATE(1111), + [sym_for_expression] = STATE(1111), + [sym_closure_expression] = STATE(1111), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1111), + [sym_continue_expression] = STATE(1111), + [sym_index_expression] = STATE(1111), + [sym_await_expression] = STATE(1111), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1111), + [sym_async_block] = STATE(1111), + [sym_block] = STATE(1111), + [sym__literal] = STATE(1111), + [sym_string_literal] = STATE(1111), + [sym_boolean_literal] = STATE(1111), [aux_sym_tuple_expression_repeat1] = STATE(69), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_RPAREN] = ACTIONS(729), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -16070,9 +16401,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(555), + [sym_integer_literal] = ACTIONS(731), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(555), + [sym_char_literal] = ACTIONS(731), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -16080,58 +16411,161 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(555), + [sym_raw_string_literal] = ACTIONS(731), + [sym_float_literal] = ACTIONS(731), [sym_block_comment] = ACTIONS(3), }, - [68] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1124), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(1124), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1124), - [sym_unary_expression] = STATE(1124), - [sym_try_expression] = STATE(1124), - [sym_reference_expression] = STATE(1124), - [sym_binary_expression] = STATE(1124), - [sym_assignment_expression] = STATE(1124), - [sym_compound_assignment_expr] = STATE(1124), - [sym_type_cast_expression] = STATE(1124), - [sym_return_expression] = STATE(1124), - [sym_call_expression] = STATE(1124), - [sym_array_expression] = STATE(1124), - [sym_parenthesized_expression] = STATE(1124), - [sym_tuple_expression] = STATE(1124), - [sym_unit_expression] = STATE(1124), - [sym_struct_expression] = STATE(1124), - [sym_if_expression] = STATE(1124), - [sym_if_let_expression] = STATE(1124), - [sym_match_expression] = STATE(1124), - [sym_while_expression] = STATE(1124), - [sym_while_let_expression] = STATE(1124), - [sym_loop_expression] = STATE(1124), - [sym_for_expression] = STATE(1124), - [sym_closure_expression] = STATE(1124), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1124), - [sym_continue_expression] = STATE(1124), - [sym_index_expression] = STATE(1124), - [sym_await_expression] = STATE(1124), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1124), - [sym_async_block] = STATE(1124), - [sym_block] = STATE(1124), - [sym__literal] = STATE(1124), - [sym_string_literal] = STATE(1124), - [sym_boolean_literal] = STATE(1124), - [aux_sym_tuple_expression_repeat1] = STATE(67), + [71] = { + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(1916), + [sym_variadic_parameter] = STATE(1916), + [sym_parameter] = STATE(1916), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1684), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1684), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1684), + [sym_tuple_type] = STATE(1684), + [sym_unit_type] = STATE(1684), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1684), + [sym_reference_type] = STATE(1684), + [sym_pointer_type] = STATE(1684), + [sym_empty_type] = STATE(1684), + [sym_abstract_type] = STATE(1684), + [sym_dynamic_type] = STATE(1684), + [sym_macro_invocation] = STATE(1684), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1735), + [sym_tuple_pattern] = STATE(1735), + [sym_slice_pattern] = STATE(1735), + [sym_tuple_struct_pattern] = STATE(1735), + [sym_struct_pattern] = STATE(1735), + [sym_remaining_field_pattern] = STATE(1735), + [sym_mut_pattern] = STATE(1735), + [sym_range_pattern] = STATE(1735), + [sym_ref_pattern] = STATE(1735), + [sym_captured_pattern] = STATE(1735), + [sym_reference_pattern] = STATE(1735), + [sym_box_pattern] = STATE(1735), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(735), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(601), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [72] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1100), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1100), + [sym_macro_invocation] = STATE(1100), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1100), + [sym_unary_expression] = STATE(1100), + [sym_try_expression] = STATE(1100), + [sym_reference_expression] = STATE(1100), + [sym_binary_expression] = STATE(1100), + [sym_assignment_expression] = STATE(1100), + [sym_compound_assignment_expr] = STATE(1100), + [sym_type_cast_expression] = STATE(1100), + [sym_return_expression] = STATE(1100), + [sym_call_expression] = STATE(1100), + [sym_array_expression] = STATE(1100), + [sym_parenthesized_expression] = STATE(1100), + [sym_tuple_expression] = STATE(1100), + [sym_unit_expression] = STATE(1100), + [sym_struct_expression] = STATE(1100), + [sym_if_expression] = STATE(1100), + [sym_if_let_expression] = STATE(1100), + [sym_match_expression] = STATE(1100), + [sym_while_expression] = STATE(1100), + [sym_while_let_expression] = STATE(1100), + [sym_loop_expression] = STATE(1100), + [sym_for_expression] = STATE(1100), + [sym_closure_expression] = STATE(1100), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1100), + [sym_continue_expression] = STATE(1100), + [sym_index_expression] = STATE(1100), + [sym_await_expression] = STATE(1100), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1100), + [sym_async_block] = STATE(1100), + [sym_block] = STATE(1100), + [sym__literal] = STATE(1100), + [sym_string_literal] = STATE(1100), + [sym_boolean_literal] = STATE(1100), + [aux_sym_tuple_expression_repeat1] = STATE(70), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_RPAREN] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -16173,9 +16607,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(547), + [sym_integer_literal] = ACTIONS(739), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(547), + [sym_char_literal] = ACTIONS(739), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -16183,159 +16617,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(547), - [sym_float_literal] = ACTIONS(547), + [sym_raw_string_literal] = ACTIONS(739), + [sym_float_literal] = ACTIONS(739), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1178), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(1178), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1178), - [sym_unary_expression] = STATE(1178), - [sym_try_expression] = STATE(1178), - [sym_reference_expression] = STATE(1178), - [sym_binary_expression] = STATE(1178), - [sym_assignment_expression] = STATE(1178), - [sym_compound_assignment_expr] = STATE(1178), - [sym_type_cast_expression] = STATE(1178), - [sym_return_expression] = STATE(1178), - [sym_call_expression] = STATE(1178), - [sym_array_expression] = STATE(1178), - [sym_parenthesized_expression] = STATE(1178), - [sym_tuple_expression] = STATE(1178), - [sym_unit_expression] = STATE(1178), - [sym_struct_expression] = STATE(1178), - [sym_if_expression] = STATE(1178), - [sym_if_let_expression] = STATE(1178), - [sym_match_expression] = STATE(1178), - [sym_while_expression] = STATE(1178), - [sym_while_let_expression] = STATE(1178), - [sym_loop_expression] = STATE(1178), - [sym_for_expression] = STATE(1178), - [sym_closure_expression] = STATE(1178), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1178), - [sym_continue_expression] = STATE(1178), - [sym_index_expression] = STATE(1178), - [sym_await_expression] = STATE(1178), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1178), - [sym_async_block] = STATE(1178), - [sym_block] = STATE(1178), - [sym__literal] = STATE(1178), - [sym_string_literal] = STATE(1178), - [sym_boolean_literal] = STATE(1178), + [73] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1100), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1100), + [sym_macro_invocation] = STATE(1100), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1100), + [sym_unary_expression] = STATE(1100), + [sym_try_expression] = STATE(1100), + [sym_reference_expression] = STATE(1100), + [sym_binary_expression] = STATE(1100), + [sym_assignment_expression] = STATE(1100), + [sym_compound_assignment_expr] = STATE(1100), + [sym_type_cast_expression] = STATE(1100), + [sym_return_expression] = STATE(1100), + [sym_call_expression] = STATE(1100), + [sym_array_expression] = STATE(1100), + [sym_parenthesized_expression] = STATE(1100), + [sym_tuple_expression] = STATE(1100), + [sym_unit_expression] = STATE(1100), + [sym_struct_expression] = STATE(1100), + [sym_if_expression] = STATE(1100), + [sym_if_let_expression] = STATE(1100), + [sym_match_expression] = STATE(1100), + [sym_while_expression] = STATE(1100), + [sym_while_let_expression] = STATE(1100), + [sym_loop_expression] = STATE(1100), + [sym_for_expression] = STATE(1100), + [sym_closure_expression] = STATE(1100), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1100), + [sym_continue_expression] = STATE(1100), + [sym_index_expression] = STATE(1100), + [sym_await_expression] = STATE(1100), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1100), + [sym_async_block] = STATE(1100), + [sym_block] = STATE(1100), + [sym__literal] = STATE(1100), + [sym_string_literal] = STATE(1100), + [sym_boolean_literal] = STATE(1100), [aux_sym_tuple_expression_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_SQUOTE] = ACTIONS(577), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_default] = ACTIONS(589), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(595), - [anon_sym_loop] = ACTIONS(598), - [anon_sym_match] = ACTIONS(601), - [anon_sym_return] = ACTIONS(604), - [anon_sym_union] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_while] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_PIPE] = ACTIONS(625), - [anon_sym_move] = ACTIONS(628), - [sym_integer_literal] = ACTIONS(631), - [aux_sym_string_literal_token1] = ACTIONS(634), - [sym_char_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(637), - [anon_sym_false] = ACTIONS(637), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(640), - [sym_super] = ACTIONS(643), - [sym_crate] = ACTIONS(643), - [sym_metavariable] = ACTIONS(646), - [sym_raw_string_literal] = ACTIONS(631), - [sym_float_literal] = ACTIONS(631), - [sym_block_comment] = ACTIONS(3), - }, - [70] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1042), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1042), - [sym_macro_invocation] = STATE(1042), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1042), - [sym_unary_expression] = STATE(1042), - [sym_try_expression] = STATE(1042), - [sym_reference_expression] = STATE(1042), - [sym_binary_expression] = STATE(1042), - [sym_assignment_expression] = STATE(1042), - [sym_compound_assignment_expr] = STATE(1042), - [sym_type_cast_expression] = STATE(1042), - [sym_return_expression] = STATE(1042), - [sym_call_expression] = STATE(1042), - [sym_array_expression] = STATE(1042), - [sym_parenthesized_expression] = STATE(1042), - [sym_tuple_expression] = STATE(1042), - [sym_unit_expression] = STATE(1042), - [sym_struct_expression] = STATE(1042), - [sym_if_expression] = STATE(1042), - [sym_if_let_expression] = STATE(1042), - [sym_match_expression] = STATE(1042), - [sym_while_expression] = STATE(1042), - [sym_while_let_expression] = STATE(1042), - [sym_loop_expression] = STATE(1042), - [sym_for_expression] = STATE(1042), - [sym_closure_expression] = STATE(1042), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1042), - [sym_continue_expression] = STATE(1042), - [sym_index_expression] = STATE(1042), - [sym_await_expression] = STATE(1042), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1042), - [sym_async_block] = STATE(1042), - [sym_block] = STATE(1042), - [sym__literal] = STATE(1042), - [sym_string_literal] = STATE(1042), - [sym_boolean_literal] = STATE(1042), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(737), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -16370,17 +16703,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(649), [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(317), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(651), + [sym_integer_literal] = ACTIONS(739), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(651), + [sym_char_literal] = ACTIONS(739), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -16388,59 +16720,264 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(651), - [sym_float_literal] = ACTIONS(651), + [sym_raw_string_literal] = ACTIONS(739), + [sym_float_literal] = ACTIONS(739), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1111), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(1111), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1111), - [sym_unary_expression] = STATE(1111), - [sym_try_expression] = STATE(1111), - [sym_reference_expression] = STATE(1111), - [sym_binary_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_compound_assignment_expr] = STATE(1111), - [sym_type_cast_expression] = STATE(1111), - [sym_return_expression] = STATE(1111), - [sym_call_expression] = STATE(1111), - [sym_array_expression] = STATE(1111), - [sym_parenthesized_expression] = STATE(1111), - [sym_tuple_expression] = STATE(1111), - [sym_unit_expression] = STATE(1111), - [sym_struct_expression] = STATE(1111), - [sym_if_expression] = STATE(1111), - [sym_if_let_expression] = STATE(1111), - [sym_match_expression] = STATE(1111), - [sym_while_expression] = STATE(1111), - [sym_while_let_expression] = STATE(1111), - [sym_loop_expression] = STATE(1111), - [sym_for_expression] = STATE(1111), - [sym_closure_expression] = STATE(1111), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1111), - [sym_continue_expression] = STATE(1111), - [sym_index_expression] = STATE(1111), - [sym_await_expression] = STATE(1111), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1111), - [sym_async_block] = STATE(1111), - [sym_block] = STATE(1111), - [sym__literal] = STATE(1111), - [sym_string_literal] = STATE(1111), - [sym_boolean_literal] = STATE(1111), + [74] = { + [sym_attribute_item] = STATE(186), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(1947), + [sym_variadic_parameter] = STATE(1947), + [sym_parameter] = STATE(1947), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1702), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1702), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1702), + [sym_tuple_type] = STATE(1702), + [sym_unit_type] = STATE(1702), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1702), + [sym_reference_type] = STATE(1702), + [sym_pointer_type] = STATE(1702), + [sym_empty_type] = STATE(1702), + [sym_abstract_type] = STATE(1702), + [sym_dynamic_type] = STATE(1702), + [sym_macro_invocation] = STATE(1702), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(743), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [75] = { + [sym_attribute_item] = STATE(185), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(2011), + [sym_variadic_parameter] = STATE(2011), + [sym_parameter] = STATE(2011), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1743), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1743), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1743), + [sym_tuple_type] = STATE(1743), + [sym_unit_type] = STATE(1743), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1743), + [sym_reference_type] = STATE(1743), + [sym_pointer_type] = STATE(1743), + [sym_empty_type] = STATE(1743), + [sym_abstract_type] = STATE(1743), + [sym_dynamic_type] = STATE(1743), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [76] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1143), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(1143), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1143), + [sym_unary_expression] = STATE(1143), + [sym_try_expression] = STATE(1143), + [sym_reference_expression] = STATE(1143), + [sym_binary_expression] = STATE(1143), + [sym_assignment_expression] = STATE(1143), + [sym_compound_assignment_expr] = STATE(1143), + [sym_type_cast_expression] = STATE(1143), + [sym_return_expression] = STATE(1143), + [sym_call_expression] = STATE(1143), + [sym_array_expression] = STATE(1143), + [sym_parenthesized_expression] = STATE(1143), + [sym_tuple_expression] = STATE(1143), + [sym_unit_expression] = STATE(1143), + [sym_struct_expression] = STATE(1143), + [sym_if_expression] = STATE(1143), + [sym_if_let_expression] = STATE(1143), + [sym_match_expression] = STATE(1143), + [sym_while_expression] = STATE(1143), + [sym_while_let_expression] = STATE(1143), + [sym_loop_expression] = STATE(1143), + [sym_for_expression] = STATE(1143), + [sym_closure_expression] = STATE(1143), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1143), + [sym_continue_expression] = STATE(1143), + [sym_index_expression] = STATE(1143), + [sym_await_expression] = STATE(1143), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1143), + [sym_async_block] = STATE(1143), + [sym_block] = STATE(1143), + [sym__literal] = STATE(1143), + [sym_string_literal] = STATE(1143), + [sym_boolean_literal] = STATE(1143), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -16465,24 +17002,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), - [anon_sym_let] = ACTIONS(655), + [anon_sym_let] = ACTIONS(753), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(759), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(661), + [sym_char_literal] = ACTIONS(759), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -16490,59 +17027,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(661), - [sym_float_literal] = ACTIONS(661), + [sym_raw_string_literal] = ACTIONS(759), + [sym_float_literal] = ACTIONS(759), [sym_block_comment] = ACTIONS(3), }, - [72] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1207), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(1207), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1207), - [sym_unary_expression] = STATE(1207), - [sym_try_expression] = STATE(1207), - [sym_reference_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_assignment_expression] = STATE(1207), - [sym_compound_assignment_expr] = STATE(1207), - [sym_type_cast_expression] = STATE(1207), - [sym_return_expression] = STATE(1207), - [sym_call_expression] = STATE(1207), - [sym_array_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(1207), - [sym_tuple_expression] = STATE(1207), - [sym_unit_expression] = STATE(1207), - [sym_struct_expression] = STATE(1207), - [sym_if_expression] = STATE(1207), - [sym_if_let_expression] = STATE(1207), - [sym_match_expression] = STATE(1207), - [sym_while_expression] = STATE(1207), - [sym_while_let_expression] = STATE(1207), - [sym_loop_expression] = STATE(1207), - [sym_for_expression] = STATE(1207), - [sym_closure_expression] = STATE(1207), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1207), - [sym_continue_expression] = STATE(1207), - [sym_index_expression] = STATE(1207), - [sym_await_expression] = STATE(1207), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1207), - [sym_async_block] = STATE(1207), - [sym_block] = STATE(1207), - [sym__literal] = STATE(1207), - [sym_string_literal] = STATE(1207), - [sym_boolean_literal] = STATE(1207), + [77] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1141), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(1141), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1141), + [sym_unary_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_reference_expression] = STATE(1141), + [sym_binary_expression] = STATE(1141), + [sym_assignment_expression] = STATE(1141), + [sym_compound_assignment_expr] = STATE(1141), + [sym_type_cast_expression] = STATE(1141), + [sym_return_expression] = STATE(1141), + [sym_call_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_parenthesized_expression] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_unit_expression] = STATE(1141), + [sym_struct_expression] = STATE(1141), + [sym_if_expression] = STATE(1141), + [sym_if_let_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym_while_let_expression] = STATE(1141), + [sym_loop_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_closure_expression] = STATE(1141), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1141), + [sym_continue_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_await_expression] = STATE(1141), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1141), + [sym_async_block] = STATE(1141), + [sym_block] = STATE(1141), + [sym__literal] = STATE(1141), + [sym_string_literal] = STATE(1141), + [sym_boolean_literal] = STATE(1141), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -16567,24 +17104,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), + [anon_sym_let] = ACTIONS(761), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(665), + [sym_integer_literal] = ACTIONS(763), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(665), + [sym_char_literal] = ACTIONS(763), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -16592,157 +17129,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(665), + [sym_raw_string_literal] = ACTIONS(763), + [sym_float_literal] = ACTIONS(763), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1133), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1133), - [sym_macro_invocation] = STATE(1133), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1133), - [sym_unary_expression] = STATE(1133), - [sym_try_expression] = STATE(1133), - [sym_reference_expression] = STATE(1133), - [sym_binary_expression] = STATE(1133), - [sym_assignment_expression] = STATE(1133), - [sym_compound_assignment_expr] = STATE(1133), - [sym_type_cast_expression] = STATE(1133), - [sym_return_expression] = STATE(1133), - [sym_call_expression] = STATE(1133), - [sym_array_expression] = STATE(1133), - [sym_parenthesized_expression] = STATE(1133), - [sym_tuple_expression] = STATE(1133), - [sym_unit_expression] = STATE(1133), - [sym_struct_expression] = STATE(1133), - [sym_if_expression] = STATE(1133), - [sym_if_let_expression] = STATE(1133), - [sym_match_expression] = STATE(1133), - [sym_while_expression] = STATE(1133), - [sym_while_let_expression] = STATE(1133), - [sym_loop_expression] = STATE(1133), - [sym_for_expression] = STATE(1133), - [sym_closure_expression] = STATE(1133), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1133), - [sym_continue_expression] = STATE(1133), - [sym_index_expression] = STATE(1133), - [sym_await_expression] = STATE(1133), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1133), - [sym_async_block] = STATE(1133), - [sym_block] = STATE(1133), - [sym__literal] = STATE(1133), - [sym_string_literal] = STATE(1133), - [sym_boolean_literal] = STATE(1133), - [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(359), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_let] = ACTIONS(667), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(669), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(669), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(669), - [sym_block_comment] = ACTIONS(3), - }, - [74] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1048), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1048), - [sym_macro_invocation] = STATE(1048), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1048), - [sym_unary_expression] = STATE(1048), - [sym_try_expression] = STATE(1048), - [sym_reference_expression] = STATE(1048), - [sym_binary_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1048), - [sym_compound_assignment_expr] = STATE(1048), - [sym_type_cast_expression] = STATE(1048), - [sym_return_expression] = STATE(1048), - [sym_call_expression] = STATE(1048), - [sym_array_expression] = STATE(1048), - [sym_parenthesized_expression] = STATE(1048), - [sym_tuple_expression] = STATE(1048), - [sym_unit_expression] = STATE(1048), - [sym_struct_expression] = STATE(1048), - [sym_if_expression] = STATE(1048), - [sym_if_let_expression] = STATE(1048), - [sym_match_expression] = STATE(1048), - [sym_while_expression] = STATE(1048), - [sym_while_let_expression] = STATE(1048), - [sym_loop_expression] = STATE(1048), - [sym_for_expression] = STATE(1048), - [sym_closure_expression] = STATE(1048), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1048), - [sym_continue_expression] = STATE(1048), - [sym_index_expression] = STATE(1048), - [sym_await_expression] = STATE(1048), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1048), - [sym_async_block] = STATE(1048), - [sym_block] = STATE(1048), - [sym__literal] = STATE(1048), - [sym_string_literal] = STATE(1048), - [sym_boolean_literal] = STATE(1048), - [sym_identifier] = ACTIONS(291), + [78] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(872), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(872), + [sym_macro_invocation] = STATE(872), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(872), + [sym_unary_expression] = STATE(872), + [sym_try_expression] = STATE(872), + [sym_reference_expression] = STATE(872), + [sym_binary_expression] = STATE(872), + [sym_assignment_expression] = STATE(872), + [sym_compound_assignment_expr] = STATE(872), + [sym_type_cast_expression] = STATE(872), + [sym_return_expression] = STATE(872), + [sym_call_expression] = STATE(872), + [sym_array_expression] = STATE(872), + [sym_parenthesized_expression] = STATE(872), + [sym_tuple_expression] = STATE(872), + [sym_unit_expression] = STATE(872), + [sym_struct_expression] = STATE(872), + [sym_if_expression] = STATE(872), + [sym_if_let_expression] = STATE(872), + [sym_match_expression] = STATE(872), + [sym_while_expression] = STATE(872), + [sym_while_let_expression] = STATE(872), + [sym_loop_expression] = STATE(872), + [sym_for_expression] = STATE(872), + [sym_closure_expression] = STATE(872), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(872), + [sym_continue_expression] = STATE(872), + [sym_index_expression] = STATE(872), + [sym_await_expression] = STATE(872), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(872), + [sym_async_block] = STATE(872), + [sym_block] = STATE(872), + [sym__literal] = STATE(872), + [sym_string_literal] = STATE(872), + [sym_boolean_literal] = STATE(872), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), @@ -16778,17 +17213,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(663), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), + [sym_mutable_specifier] = ACTIONS(765), [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(671), + [sym_integer_literal] = ACTIONS(767), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(671), + [sym_char_literal] = ACTIONS(767), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -16796,59 +17231,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(671), - [sym_float_literal] = ACTIONS(671), + [sym_raw_string_literal] = ACTIONS(767), + [sym_float_literal] = ACTIONS(767), [sym_block_comment] = ACTIONS(3), }, - [75] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(860), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(860), - [sym_macro_invocation] = STATE(860), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(860), - [sym_unary_expression] = STATE(860), - [sym_try_expression] = STATE(860), - [sym_reference_expression] = STATE(860), - [sym_binary_expression] = STATE(860), - [sym_assignment_expression] = STATE(860), - [sym_compound_assignment_expr] = STATE(860), - [sym_type_cast_expression] = STATE(860), - [sym_return_expression] = STATE(860), - [sym_call_expression] = STATE(860), - [sym_array_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(860), - [sym_tuple_expression] = STATE(860), - [sym_unit_expression] = STATE(860), - [sym_struct_expression] = STATE(860), - [sym_if_expression] = STATE(860), - [sym_if_let_expression] = STATE(860), - [sym_match_expression] = STATE(860), - [sym_while_expression] = STATE(860), - [sym_while_let_expression] = STATE(860), - [sym_loop_expression] = STATE(860), - [sym_for_expression] = STATE(860), - [sym_closure_expression] = STATE(860), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(860), - [sym_continue_expression] = STATE(860), - [sym_index_expression] = STATE(860), - [sym_await_expression] = STATE(860), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(860), - [sym_async_block] = STATE(860), - [sym_block] = STATE(860), - [sym__literal] = STATE(860), - [sym_string_literal] = STATE(860), - [sym_boolean_literal] = STATE(860), + [79] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1096), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1096), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1096), + [sym_unary_expression] = STATE(1096), + [sym_try_expression] = STATE(1096), + [sym_reference_expression] = STATE(1096), + [sym_binary_expression] = STATE(1096), + [sym_assignment_expression] = STATE(1096), + [sym_compound_assignment_expr] = STATE(1096), + [sym_type_cast_expression] = STATE(1096), + [sym_return_expression] = STATE(1096), + [sym_call_expression] = STATE(1096), + [sym_array_expression] = STATE(1096), + [sym_parenthesized_expression] = STATE(1096), + [sym_tuple_expression] = STATE(1096), + [sym_unit_expression] = STATE(1096), + [sym_struct_expression] = STATE(1096), + [sym_if_expression] = STATE(1096), + [sym_if_let_expression] = STATE(1096), + [sym_match_expression] = STATE(1096), + [sym_while_expression] = STATE(1096), + [sym_while_let_expression] = STATE(1096), + [sym_loop_expression] = STATE(1096), + [sym_for_expression] = STATE(1096), + [sym_closure_expression] = STATE(1096), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1096), + [sym_continue_expression] = STATE(1096), + [sym_index_expression] = STATE(1096), + [sym_await_expression] = STATE(1096), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1096), + [sym_async_block] = STATE(1096), + [sym_block] = STATE(1096), + [sym__literal] = STATE(1096), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -16873,24 +17308,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), + [anon_sym_let] = ACTIONS(769), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [sym_mutable_specifier] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(675), + [sym_integer_literal] = ACTIONS(771), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(675), + [sym_char_literal] = ACTIONS(771), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -16898,365 +17333,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(675), - [sym_float_literal] = ACTIONS(675), - [sym_block_comment] = ACTIONS(3), - }, - [76] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1087), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1087), - [sym_macro_invocation] = STATE(1087), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1087), - [sym_unary_expression] = STATE(1087), - [sym_try_expression] = STATE(1087), - [sym_reference_expression] = STATE(1087), - [sym_binary_expression] = STATE(1087), - [sym_assignment_expression] = STATE(1087), - [sym_compound_assignment_expr] = STATE(1087), - [sym_type_cast_expression] = STATE(1087), - [sym_return_expression] = STATE(1087), - [sym_call_expression] = STATE(1087), - [sym_array_expression] = STATE(1087), - [sym_parenthesized_expression] = STATE(1087), - [sym_tuple_expression] = STATE(1087), - [sym_unit_expression] = STATE(1087), - [sym_struct_expression] = STATE(1087), - [sym_if_expression] = STATE(1087), - [sym_if_let_expression] = STATE(1087), - [sym_match_expression] = STATE(1087), - [sym_while_expression] = STATE(1087), - [sym_while_let_expression] = STATE(1087), - [sym_loop_expression] = STATE(1087), - [sym_for_expression] = STATE(1087), - [sym_closure_expression] = STATE(1087), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1087), - [sym_continue_expression] = STATE(1087), - [sym_index_expression] = STATE(1087), - [sym_await_expression] = STATE(1087), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1087), - [sym_async_block] = STATE(1087), - [sym_block] = STATE(1087), - [sym__literal] = STATE(1087), - [sym_string_literal] = STATE(1087), - [sym_boolean_literal] = STATE(1087), - [sym_identifier] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(677), - [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(301), - [anon_sym_break] = ACTIONS(27), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [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_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(679), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(679), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(679), - [sym_float_literal] = ACTIONS(679), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1087), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1087), - [sym_macro_invocation] = STATE(1087), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1087), - [sym_unary_expression] = STATE(1087), - [sym_try_expression] = STATE(1087), - [sym_reference_expression] = STATE(1087), - [sym_binary_expression] = STATE(1087), - [sym_assignment_expression] = STATE(1087), - [sym_compound_assignment_expr] = STATE(1087), - [sym_type_cast_expression] = STATE(1087), - [sym_return_expression] = STATE(1087), - [sym_call_expression] = STATE(1087), - [sym_array_expression] = STATE(1087), - [sym_parenthesized_expression] = STATE(1087), - [sym_tuple_expression] = STATE(1087), - [sym_unit_expression] = STATE(1087), - [sym_struct_expression] = STATE(1087), - [sym_if_expression] = STATE(1087), - [sym_if_let_expression] = STATE(1087), - [sym_match_expression] = STATE(1087), - [sym_while_expression] = STATE(1087), - [sym_while_let_expression] = STATE(1087), - [sym_loop_expression] = STATE(1087), - [sym_for_expression] = STATE(1087), - [sym_closure_expression] = STATE(1087), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1087), - [sym_continue_expression] = STATE(1087), - [sym_index_expression] = STATE(1087), - [sym_await_expression] = STATE(1087), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1087), - [sym_async_block] = STATE(1087), - [sym_block] = STATE(1087), - [sym__literal] = STATE(1087), - [sym_string_literal] = STATE(1087), - [sym_boolean_literal] = STATE(1087), - [sym_identifier] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(681), - [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(301), - [anon_sym_break] = ACTIONS(27), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [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_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(679), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(679), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(679), - [sym_float_literal] = ACTIONS(679), - [sym_block_comment] = ACTIONS(3), - }, - [78] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1087), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1087), - [sym_macro_invocation] = STATE(1087), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1087), - [sym_unary_expression] = STATE(1087), - [sym_try_expression] = STATE(1087), - [sym_reference_expression] = STATE(1087), - [sym_binary_expression] = STATE(1087), - [sym_assignment_expression] = STATE(1087), - [sym_compound_assignment_expr] = STATE(1087), - [sym_type_cast_expression] = STATE(1087), - [sym_return_expression] = STATE(1087), - [sym_call_expression] = STATE(1087), - [sym_array_expression] = STATE(1087), - [sym_parenthesized_expression] = STATE(1087), - [sym_tuple_expression] = STATE(1087), - [sym_unit_expression] = STATE(1087), - [sym_struct_expression] = STATE(1087), - [sym_if_expression] = STATE(1087), - [sym_if_let_expression] = STATE(1087), - [sym_match_expression] = STATE(1087), - [sym_while_expression] = STATE(1087), - [sym_while_let_expression] = STATE(1087), - [sym_loop_expression] = STATE(1087), - [sym_for_expression] = STATE(1087), - [sym_closure_expression] = STATE(1087), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1087), - [sym_continue_expression] = STATE(1087), - [sym_index_expression] = STATE(1087), - [sym_await_expression] = STATE(1087), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1087), - [sym_async_block] = STATE(1087), - [sym_block] = STATE(1087), - [sym__literal] = STATE(1087), - [sym_string_literal] = STATE(1087), - [sym_boolean_literal] = STATE(1087), - [sym_identifier] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(683), - [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(301), - [anon_sym_break] = ACTIONS(27), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [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_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(679), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(679), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(679), - [sym_float_literal] = ACTIONS(679), + [sym_raw_string_literal] = ACTIONS(771), + [sym_float_literal] = ACTIONS(771), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1094), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1094), - [sym_macro_invocation] = STATE(1094), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_try_expression] = STATE(1094), - [sym_reference_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_assignment_expression] = STATE(1094), - [sym_compound_assignment_expr] = STATE(1094), - [sym_type_cast_expression] = STATE(1094), - [sym_return_expression] = STATE(1094), - [sym_call_expression] = STATE(1094), - [sym_array_expression] = STATE(1094), - [sym_parenthesized_expression] = STATE(1094), - [sym_tuple_expression] = STATE(1094), - [sym_unit_expression] = STATE(1094), - [sym_struct_expression] = STATE(1094), - [sym_if_expression] = STATE(1094), - [sym_if_let_expression] = STATE(1094), - [sym_match_expression] = STATE(1094), - [sym_while_expression] = STATE(1094), - [sym_while_let_expression] = STATE(1094), - [sym_loop_expression] = STATE(1094), - [sym_for_expression] = STATE(1094), - [sym_closure_expression] = STATE(1094), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1094), - [sym_continue_expression] = STATE(1094), - [sym_index_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1094), - [sym_async_block] = STATE(1094), - [sym_block] = STATE(1094), - [sym__literal] = STATE(1094), - [sym_string_literal] = STATE(1094), - [sym_boolean_literal] = STATE(1094), + [80] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1153), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(1153), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1153), + [sym_unary_expression] = STATE(1153), + [sym_try_expression] = STATE(1153), + [sym_reference_expression] = STATE(1153), + [sym_binary_expression] = STATE(1153), + [sym_assignment_expression] = STATE(1153), + [sym_compound_assignment_expr] = STATE(1153), + [sym_type_cast_expression] = STATE(1153), + [sym_return_expression] = STATE(1153), + [sym_call_expression] = STATE(1153), + [sym_array_expression] = STATE(1153), + [sym_parenthesized_expression] = STATE(1153), + [sym_tuple_expression] = STATE(1153), + [sym_unit_expression] = STATE(1153), + [sym_struct_expression] = STATE(1153), + [sym_if_expression] = STATE(1153), + [sym_if_let_expression] = STATE(1153), + [sym_match_expression] = STATE(1153), + [sym_while_expression] = STATE(1153), + [sym_while_let_expression] = STATE(1153), + [sym_loop_expression] = STATE(1153), + [sym_for_expression] = STATE(1153), + [sym_closure_expression] = STATE(1153), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1153), + [sym_continue_expression] = STATE(1153), + [sym_index_expression] = STATE(1153), + [sym_await_expression] = STATE(1153), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1153), + [sym_async_block] = STATE(1153), + [sym_block] = STATE(1153), + [sym__literal] = STATE(1153), + [sym_string_literal] = STATE(1153), + [sym_boolean_literal] = STATE(1153), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -17281,24 +17410,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), - [anon_sym_let] = ACTIONS(685), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_DASH_GT] = ACTIONS(773), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(363), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(687), + [sym_integer_literal] = ACTIONS(775), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(687), + [sym_char_literal] = ACTIONS(775), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -17306,59 +17435,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(687), - [sym_float_literal] = ACTIONS(687), + [sym_raw_string_literal] = ACTIONS(775), + [sym_float_literal] = ACTIONS(775), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1180), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1180), - [sym_macro_invocation] = STATE(1180), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1180), - [sym_unary_expression] = STATE(1180), - [sym_try_expression] = STATE(1180), - [sym_reference_expression] = STATE(1180), - [sym_binary_expression] = STATE(1180), - [sym_assignment_expression] = STATE(1180), - [sym_compound_assignment_expr] = STATE(1180), - [sym_type_cast_expression] = STATE(1180), - [sym_return_expression] = STATE(1180), - [sym_call_expression] = STATE(1180), - [sym_array_expression] = STATE(1180), - [sym_parenthesized_expression] = STATE(1180), - [sym_tuple_expression] = STATE(1180), - [sym_unit_expression] = STATE(1180), - [sym_struct_expression] = STATE(1180), - [sym_if_expression] = STATE(1180), - [sym_if_let_expression] = STATE(1180), - [sym_match_expression] = STATE(1180), - [sym_while_expression] = STATE(1180), - [sym_while_let_expression] = STATE(1180), - [sym_loop_expression] = STATE(1180), - [sym_for_expression] = STATE(1180), - [sym_closure_expression] = STATE(1180), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1180), - [sym_continue_expression] = STATE(1180), - [sym_index_expression] = STATE(1180), - [sym_await_expression] = STATE(1180), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1180), - [sym_async_block] = STATE(1180), - [sym_block] = STATE(1180), - [sym__literal] = STATE(1180), - [sym_string_literal] = STATE(1180), - [sym_boolean_literal] = STATE(1180), + [81] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1142), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(1142), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1142), + [sym_unary_expression] = STATE(1142), + [sym_try_expression] = STATE(1142), + [sym_reference_expression] = STATE(1142), + [sym_binary_expression] = STATE(1142), + [sym_assignment_expression] = STATE(1142), + [sym_compound_assignment_expr] = STATE(1142), + [sym_type_cast_expression] = STATE(1142), + [sym_return_expression] = STATE(1142), + [sym_call_expression] = STATE(1142), + [sym_array_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1142), + [sym_tuple_expression] = STATE(1142), + [sym_unit_expression] = STATE(1142), + [sym_struct_expression] = STATE(1142), + [sym_if_expression] = STATE(1142), + [sym_if_let_expression] = STATE(1142), + [sym_match_expression] = STATE(1142), + [sym_while_expression] = STATE(1142), + [sym_while_let_expression] = STATE(1142), + [sym_loop_expression] = STATE(1142), + [sym_for_expression] = STATE(1142), + [sym_closure_expression] = STATE(1142), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1142), + [sym_continue_expression] = STATE(1142), + [sym_index_expression] = STATE(1142), + [sym_await_expression] = STATE(1142), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1142), + [sym_async_block] = STATE(1142), + [sym_block] = STATE(1142), + [sym__literal] = STATE(1142), + [sym_string_literal] = STATE(1142), + [sym_boolean_literal] = STATE(1142), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -17383,24 +17512,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), + [anon_sym_let] = ACTIONS(777), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_DASH_GT] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(689), + [sym_integer_literal] = ACTIONS(779), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(689), + [sym_char_literal] = ACTIONS(779), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -17408,59 +17537,161 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(689), - [sym_float_literal] = ACTIONS(689), + [sym_raw_string_literal] = ACTIONS(779), + [sym_float_literal] = ACTIONS(779), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1145), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(1145), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1145), - [sym_unary_expression] = STATE(1145), - [sym_try_expression] = STATE(1145), - [sym_reference_expression] = STATE(1145), - [sym_binary_expression] = STATE(1145), - [sym_assignment_expression] = STATE(1145), - [sym_compound_assignment_expr] = STATE(1145), - [sym_type_cast_expression] = STATE(1145), - [sym_return_expression] = STATE(1145), - [sym_call_expression] = STATE(1145), - [sym_array_expression] = STATE(1145), - [sym_parenthesized_expression] = STATE(1145), - [sym_tuple_expression] = STATE(1145), - [sym_unit_expression] = STATE(1145), - [sym_struct_expression] = STATE(1145), - [sym_if_expression] = STATE(1145), - [sym_if_let_expression] = STATE(1145), - [sym_match_expression] = STATE(1145), - [sym_while_expression] = STATE(1145), - [sym_while_let_expression] = STATE(1145), - [sym_loop_expression] = STATE(1145), - [sym_for_expression] = STATE(1145), - [sym_closure_expression] = STATE(1145), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1145), - [sym_continue_expression] = STATE(1145), - [sym_index_expression] = STATE(1145), - [sym_await_expression] = STATE(1145), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1145), - [sym_async_block] = STATE(1145), - [sym_block] = STATE(1145), - [sym__literal] = STATE(1145), - [sym_string_literal] = STATE(1145), - [sym_boolean_literal] = STATE(1145), + [82] = { + [sym_attribute_item] = STATE(185), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(2011), + [sym_variadic_parameter] = STATE(2011), + [sym_parameter] = STATE(2011), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1743), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1743), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1743), + [sym_tuple_type] = STATE(1743), + [sym_unit_type] = STATE(1743), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1743), + [sym_reference_type] = STATE(1743), + [sym_pointer_type] = STATE(1743), + [sym_empty_type] = STATE(1743), + [sym_abstract_type] = STATE(1743), + [sym_dynamic_type] = STATE(1743), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1103), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1103), + [sym_macro_invocation] = STATE(1103), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1103), + [sym_unary_expression] = STATE(1103), + [sym_try_expression] = STATE(1103), + [sym_reference_expression] = STATE(1103), + [sym_binary_expression] = STATE(1103), + [sym_assignment_expression] = STATE(1103), + [sym_compound_assignment_expr] = STATE(1103), + [sym_type_cast_expression] = STATE(1103), + [sym_return_expression] = STATE(1103), + [sym_call_expression] = STATE(1103), + [sym_array_expression] = STATE(1103), + [sym_parenthesized_expression] = STATE(1103), + [sym_tuple_expression] = STATE(1103), + [sym_unit_expression] = STATE(1103), + [sym_struct_expression] = STATE(1103), + [sym_if_expression] = STATE(1103), + [sym_if_let_expression] = STATE(1103), + [sym_match_expression] = STATE(1103), + [sym_while_expression] = STATE(1103), + [sym_while_let_expression] = STATE(1103), + [sym_loop_expression] = STATE(1103), + [sym_for_expression] = STATE(1103), + [sym_closure_expression] = STATE(1103), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1103), + [sym_continue_expression] = STATE(1103), + [sym_index_expression] = STATE(1103), + [sym_await_expression] = STATE(1103), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1103), + [sym_async_block] = STATE(1103), + [sym_block] = STATE(1103), + [sym__literal] = STATE(1103), + [sym_string_literal] = STATE(1103), + [sym_boolean_literal] = STATE(1103), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -17485,24 +17716,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), - [anon_sym_let] = ACTIONS(691), + [anon_sym_let] = ACTIONS(783), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(693), + [sym_integer_literal] = ACTIONS(785), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(693), + [sym_char_literal] = ACTIONS(785), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -17510,59 +17741,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(693), - [sym_float_literal] = ACTIONS(693), + [sym_raw_string_literal] = ACTIONS(785), + [sym_float_literal] = ACTIONS(785), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1084), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1084), - [sym_macro_invocation] = STATE(1084), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1084), - [sym_unary_expression] = STATE(1084), - [sym_try_expression] = STATE(1084), - [sym_reference_expression] = STATE(1084), - [sym_binary_expression] = STATE(1084), - [sym_assignment_expression] = STATE(1084), - [sym_compound_assignment_expr] = STATE(1084), - [sym_type_cast_expression] = STATE(1084), - [sym_return_expression] = STATE(1084), - [sym_call_expression] = STATE(1084), - [sym_array_expression] = STATE(1084), - [sym_parenthesized_expression] = STATE(1084), - [sym_tuple_expression] = STATE(1084), - [sym_unit_expression] = STATE(1084), - [sym_struct_expression] = STATE(1084), - [sym_if_expression] = STATE(1084), - [sym_if_let_expression] = STATE(1084), - [sym_match_expression] = STATE(1084), - [sym_while_expression] = STATE(1084), - [sym_while_let_expression] = STATE(1084), - [sym_loop_expression] = STATE(1084), - [sym_for_expression] = STATE(1084), - [sym_closure_expression] = STATE(1084), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1084), - [sym_continue_expression] = STATE(1084), - [sym_index_expression] = STATE(1084), - [sym_await_expression] = STATE(1084), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1084), - [sym_async_block] = STATE(1084), - [sym_block] = STATE(1084), - [sym__literal] = STATE(1084), - [sym_string_literal] = STATE(1084), - [sym_boolean_literal] = STATE(1084), + [84] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1092), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1092), + [sym_macro_invocation] = STATE(1092), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1092), + [sym_unary_expression] = STATE(1092), + [sym_try_expression] = STATE(1092), + [sym_reference_expression] = STATE(1092), + [sym_binary_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_compound_assignment_expr] = STATE(1092), + [sym_type_cast_expression] = STATE(1092), + [sym_return_expression] = STATE(1092), + [sym_call_expression] = STATE(1092), + [sym_array_expression] = STATE(1092), + [sym_parenthesized_expression] = STATE(1092), + [sym_tuple_expression] = STATE(1092), + [sym_unit_expression] = STATE(1092), + [sym_struct_expression] = STATE(1092), + [sym_if_expression] = STATE(1092), + [sym_if_let_expression] = STATE(1092), + [sym_match_expression] = STATE(1092), + [sym_while_expression] = STATE(1092), + [sym_while_let_expression] = STATE(1092), + [sym_loop_expression] = STATE(1092), + [sym_for_expression] = STATE(1092), + [sym_closure_expression] = STATE(1092), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1092), + [sym_continue_expression] = STATE(1092), + [sym_index_expression] = STATE(1092), + [sym_await_expression] = STATE(1092), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1092), + [sym_async_block] = STATE(1092), + [sym_block] = STATE(1092), + [sym__literal] = STATE(1092), + [sym_string_literal] = STATE(1092), + [sym_boolean_literal] = STATE(1092), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -17587,24 +17818,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), - [anon_sym_let] = ACTIONS(695), + [anon_sym_let] = ACTIONS(787), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(697), + [sym_integer_literal] = ACTIONS(789), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(697), + [sym_char_literal] = ACTIONS(789), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -17612,156 +17843,156 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(697), - [sym_float_literal] = ACTIONS(697), + [sym_raw_string_literal] = ACTIONS(789), + [sym_float_literal] = ACTIONS(789), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1089), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1089), - [sym_macro_invocation] = STATE(1089), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1089), - [sym_unary_expression] = STATE(1089), - [sym_try_expression] = STATE(1089), - [sym_reference_expression] = STATE(1089), - [sym_binary_expression] = STATE(1089), - [sym_assignment_expression] = STATE(1089), - [sym_compound_assignment_expr] = STATE(1089), - [sym_type_cast_expression] = STATE(1089), - [sym_return_expression] = STATE(1089), - [sym_call_expression] = STATE(1089), - [sym_array_expression] = STATE(1089), - [sym_parenthesized_expression] = STATE(1089), - [sym_tuple_expression] = STATE(1089), - [sym_unit_expression] = STATE(1089), - [sym_struct_expression] = STATE(1089), - [sym_if_expression] = STATE(1089), - [sym_if_let_expression] = STATE(1089), - [sym_match_expression] = STATE(1089), - [sym_while_expression] = STATE(1089), - [sym_while_let_expression] = STATE(1089), - [sym_loop_expression] = STATE(1089), - [sym_for_expression] = STATE(1089), - [sym_closure_expression] = STATE(1089), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1089), - [sym_continue_expression] = STATE(1089), - [sym_index_expression] = STATE(1089), - [sym_await_expression] = STATE(1089), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1089), - [sym_async_block] = STATE(1089), - [sym_block] = STATE(1089), - [sym__literal] = STATE(1089), - [sym_string_literal] = STATE(1089), - [sym_boolean_literal] = STATE(1089), - [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(359), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_let] = ACTIONS(699), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [85] = { + [sym_attribute_item] = STATE(185), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(2011), + [sym_variadic_parameter] = STATE(2011), + [sym_parameter] = STATE(2011), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1743), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1743), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1743), + [sym_tuple_type] = STATE(1743), + [sym_unit_type] = STATE(1743), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1743), + [sym_reference_type] = STATE(1743), + [sym_pointer_type] = STATE(1743), + [sym_empty_type] = STATE(1743), + [sym_abstract_type] = STATE(1743), + [sym_dynamic_type] = STATE(1743), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(701), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(701), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(701), - [sym_float_literal] = ACTIONS(701), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(860), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(860), - [sym_macro_invocation] = STATE(860), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(860), - [sym_unary_expression] = STATE(860), - [sym_try_expression] = STATE(860), - [sym_reference_expression] = STATE(860), - [sym_binary_expression] = STATE(860), - [sym_assignment_expression] = STATE(860), - [sym_compound_assignment_expr] = STATE(860), - [sym_type_cast_expression] = STATE(860), - [sym_return_expression] = STATE(860), - [sym_call_expression] = STATE(860), - [sym_array_expression] = STATE(860), - [sym_parenthesized_expression] = STATE(860), - [sym_tuple_expression] = STATE(860), - [sym_unit_expression] = STATE(860), - [sym_struct_expression] = STATE(860), - [sym_if_expression] = STATE(860), - [sym_if_let_expression] = STATE(860), - [sym_match_expression] = STATE(860), - [sym_while_expression] = STATE(860), - [sym_while_let_expression] = STATE(860), - [sym_loop_expression] = STATE(860), - [sym_for_expression] = STATE(860), - [sym_closure_expression] = STATE(860), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(860), - [sym_continue_expression] = STATE(860), - [sym_index_expression] = STATE(860), - [sym_await_expression] = STATE(860), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(860), - [sym_async_block] = STATE(860), - [sym_block] = STATE(860), - [sym__literal] = STATE(860), - [sym_string_literal] = STATE(860), - [sym_boolean_literal] = STATE(860), + [86] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(981), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(981), + [sym_macro_invocation] = STATE(981), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(981), + [sym_unary_expression] = STATE(981), + [sym_try_expression] = STATE(981), + [sym_reference_expression] = STATE(981), + [sym_binary_expression] = STATE(981), + [sym_assignment_expression] = STATE(981), + [sym_compound_assignment_expr] = STATE(981), + [sym_type_cast_expression] = STATE(981), + [sym_return_expression] = STATE(981), + [sym_call_expression] = STATE(981), + [sym_array_expression] = STATE(981), + [sym_parenthesized_expression] = STATE(981), + [sym_tuple_expression] = STATE(981), + [sym_unit_expression] = STATE(981), + [sym_struct_expression] = STATE(981), + [sym_if_expression] = STATE(981), + [sym_if_let_expression] = STATE(981), + [sym_match_expression] = STATE(981), + [sym_while_expression] = STATE(981), + [sym_while_let_expression] = STATE(981), + [sym_loop_expression] = STATE(981), + [sym_for_expression] = STATE(981), + [sym_closure_expression] = STATE(981), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(981), + [sym_continue_expression] = STATE(981), + [sym_index_expression] = STATE(981), + [sym_await_expression] = STATE(981), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(981), + [sym_async_block] = STATE(981), + [sym_block] = STATE(981), + [sym__literal] = STATE(981), + [sym_string_literal] = STATE(981), + [sym_boolean_literal] = STATE(981), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -17798,17 +18029,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(793), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(317), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(675), + [sym_integer_literal] = ACTIONS(795), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(675), + [sym_char_literal] = ACTIONS(795), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -17816,59 +18047,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(675), - [sym_float_literal] = ACTIONS(675), + [sym_raw_string_literal] = ACTIONS(795), + [sym_float_literal] = ACTIONS(795), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1113), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1113), - [sym_macro_invocation] = STATE(1113), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1113), - [sym_unary_expression] = STATE(1113), - [sym_try_expression] = STATE(1113), - [sym_reference_expression] = STATE(1113), - [sym_binary_expression] = STATE(1113), - [sym_assignment_expression] = STATE(1113), - [sym_compound_assignment_expr] = STATE(1113), - [sym_type_cast_expression] = STATE(1113), - [sym_return_expression] = STATE(1113), - [sym_call_expression] = STATE(1113), - [sym_array_expression] = STATE(1113), - [sym_parenthesized_expression] = STATE(1113), - [sym_tuple_expression] = STATE(1113), - [sym_unit_expression] = STATE(1113), - [sym_struct_expression] = STATE(1113), - [sym_if_expression] = STATE(1113), - [sym_if_let_expression] = STATE(1113), - [sym_match_expression] = STATE(1113), - [sym_while_expression] = STATE(1113), - [sym_while_let_expression] = STATE(1113), - [sym_loop_expression] = STATE(1113), - [sym_for_expression] = STATE(1113), - [sym_closure_expression] = STATE(1113), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1113), - [sym_continue_expression] = STATE(1113), - [sym_index_expression] = STATE(1113), - [sym_await_expression] = STATE(1113), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1113), - [sym_async_block] = STATE(1113), - [sym_block] = STATE(1113), - [sym__literal] = STATE(1113), - [sym_string_literal] = STATE(1113), - [sym_boolean_literal] = STATE(1113), + [87] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1140), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1140), + [sym_macro_invocation] = STATE(1140), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1140), + [sym_unary_expression] = STATE(1140), + [sym_try_expression] = STATE(1140), + [sym_reference_expression] = STATE(1140), + [sym_binary_expression] = STATE(1140), + [sym_assignment_expression] = STATE(1140), + [sym_compound_assignment_expr] = STATE(1140), + [sym_type_cast_expression] = STATE(1140), + [sym_return_expression] = STATE(1140), + [sym_call_expression] = STATE(1140), + [sym_array_expression] = STATE(1140), + [sym_parenthesized_expression] = STATE(1140), + [sym_tuple_expression] = STATE(1140), + [sym_unit_expression] = STATE(1140), + [sym_struct_expression] = STATE(1140), + [sym_if_expression] = STATE(1140), + [sym_if_let_expression] = STATE(1140), + [sym_match_expression] = STATE(1140), + [sym_while_expression] = STATE(1140), + [sym_while_let_expression] = STATE(1140), + [sym_loop_expression] = STATE(1140), + [sym_for_expression] = STATE(1140), + [sym_closure_expression] = STATE(1140), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1140), + [sym_continue_expression] = STATE(1140), + [sym_index_expression] = STATE(1140), + [sym_await_expression] = STATE(1140), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1140), + [sym_async_block] = STATE(1140), + [sym_block] = STATE(1140), + [sym__literal] = STATE(1140), + [sym_string_literal] = STATE(1140), + [sym_boolean_literal] = STATE(1140), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -17893,24 +18124,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), - [anon_sym_let] = ACTIONS(705), + [anon_sym_let] = ACTIONS(797), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(707), + [sym_integer_literal] = ACTIONS(799), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(707), + [sym_char_literal] = ACTIONS(799), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -17918,263 +18149,365 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(707), - [sym_float_literal] = ACTIONS(707), + [sym_raw_string_literal] = ACTIONS(799), + [sym_float_literal] = ACTIONS(799), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1127), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(1127), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1127), - [sym_unary_expression] = STATE(1127), - [sym_try_expression] = STATE(1127), - [sym_reference_expression] = STATE(1127), - [sym_binary_expression] = STATE(1127), - [sym_assignment_expression] = STATE(1127), - [sym_compound_assignment_expr] = STATE(1127), - [sym_type_cast_expression] = STATE(1127), - [sym_return_expression] = STATE(1127), - [sym_call_expression] = STATE(1127), - [sym_array_expression] = STATE(1127), - [sym_parenthesized_expression] = STATE(1127), - [sym_tuple_expression] = STATE(1127), - [sym_unit_expression] = STATE(1127), - [sym_struct_expression] = STATE(1127), - [sym_if_expression] = STATE(1127), - [sym_if_let_expression] = STATE(1127), - [sym_match_expression] = STATE(1127), - [sym_while_expression] = STATE(1127), - [sym_while_let_expression] = STATE(1127), - [sym_loop_expression] = STATE(1127), - [sym_for_expression] = STATE(1127), - [sym_closure_expression] = STATE(1127), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1127), - [sym_continue_expression] = STATE(1127), - [sym_index_expression] = STATE(1127), - [sym_await_expression] = STATE(1127), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1127), - [sym_async_block] = STATE(1127), - [sym_block] = STATE(1127), - [sym__literal] = STATE(1127), - [sym_string_literal] = STATE(1127), - [sym_boolean_literal] = STATE(1127), - [sym_identifier] = ACTIONS(355), + [88] = { + [sym_attribute_item] = STATE(185), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(2011), + [sym_variadic_parameter] = STATE(2011), + [sym_parameter] = STATE(2011), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1743), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1743), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1743), + [sym_tuple_type] = STATE(1743), + [sym_unit_type] = STATE(1743), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1743), + [sym_reference_type] = STATE(1743), + [sym_pointer_type] = STATE(1743), + [sym_empty_type] = STATE(1743), + [sym_abstract_type] = STATE(1743), + [sym_dynamic_type] = STATE(1743), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [89] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1125), + [sym_macro_invocation] = STATE(1125), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1125), + [sym_unary_expression] = STATE(1125), + [sym_try_expression] = STATE(1125), + [sym_reference_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1125), + [sym_compound_assignment_expr] = STATE(1125), + [sym_type_cast_expression] = STATE(1125), + [sym_return_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_array_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_tuple_expression] = STATE(1125), + [sym_unit_expression] = STATE(1125), + [sym_struct_expression] = STATE(1125), + [sym_if_expression] = STATE(1125), + [sym_if_let_expression] = STATE(1125), + [sym_match_expression] = STATE(1125), + [sym_while_expression] = STATE(1125), + [sym_while_let_expression] = STATE(1125), + [sym_loop_expression] = STATE(1125), + [sym_for_expression] = STATE(1125), + [sym_closure_expression] = STATE(1125), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1125), + [sym_continue_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_await_expression] = STATE(1125), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1125), + [sym_async_block] = STATE(1125), + [sym_block] = STATE(1125), + [sym__literal] = STATE(1125), + [sym_string_literal] = STATE(1125), + [sym_boolean_literal] = STATE(1125), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [anon_sym_RBRACK] = ACTIONS(803), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), - [anon_sym_let] = ACTIONS(709), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(711), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(805), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(711), + [sym_char_literal] = ACTIONS(805), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(711), - [sym_float_literal] = ACTIONS(711), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(805), + [sym_float_literal] = ACTIONS(805), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1102), - [sym_macro_invocation] = STATE(1102), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1102), - [sym_unary_expression] = STATE(1102), - [sym_try_expression] = STATE(1102), - [sym_reference_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_assignment_expression] = STATE(1102), - [sym_compound_assignment_expr] = STATE(1102), - [sym_type_cast_expression] = STATE(1102), - [sym_return_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_array_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_tuple_expression] = STATE(1102), - [sym_unit_expression] = STATE(1102), - [sym_struct_expression] = STATE(1102), - [sym_if_expression] = STATE(1102), - [sym_if_let_expression] = STATE(1102), - [sym_match_expression] = STATE(1102), - [sym_while_expression] = STATE(1102), - [sym_while_let_expression] = STATE(1102), - [sym_loop_expression] = STATE(1102), - [sym_for_expression] = STATE(1102), - [sym_closure_expression] = STATE(1102), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1102), - [sym_continue_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_await_expression] = STATE(1102), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1102), - [sym_async_block] = STATE(1102), - [sym_block] = STATE(1102), - [sym__literal] = STATE(1102), - [sym_string_literal] = STATE(1102), - [sym_boolean_literal] = STATE(1102), - [sym_identifier] = ACTIONS(355), + [90] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1125), + [sym_macro_invocation] = STATE(1125), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1125), + [sym_unary_expression] = STATE(1125), + [sym_try_expression] = STATE(1125), + [sym_reference_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1125), + [sym_compound_assignment_expr] = STATE(1125), + [sym_type_cast_expression] = STATE(1125), + [sym_return_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_array_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_tuple_expression] = STATE(1125), + [sym_unit_expression] = STATE(1125), + [sym_struct_expression] = STATE(1125), + [sym_if_expression] = STATE(1125), + [sym_if_let_expression] = STATE(1125), + [sym_match_expression] = STATE(1125), + [sym_while_expression] = STATE(1125), + [sym_while_let_expression] = STATE(1125), + [sym_loop_expression] = STATE(1125), + [sym_for_expression] = STATE(1125), + [sym_closure_expression] = STATE(1125), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1125), + [sym_continue_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_await_expression] = STATE(1125), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1125), + [sym_async_block] = STATE(1125), + [sym_block] = STATE(1125), + [sym__literal] = STATE(1125), + [sym_string_literal] = STATE(1125), + [sym_boolean_literal] = STATE(1125), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [anon_sym_RBRACK] = ACTIONS(807), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), - [anon_sym_let] = ACTIONS(713), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(715), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(805), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(715), + [sym_char_literal] = ACTIONS(805), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(715), - [sym_float_literal] = ACTIONS(715), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(805), + [sym_float_literal] = ACTIONS(805), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(735), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(735), - [sym_macro_invocation] = STATE(735), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(735), - [sym_unary_expression] = STATE(735), - [sym_try_expression] = STATE(735), - [sym_reference_expression] = STATE(735), - [sym_binary_expression] = STATE(735), - [sym_assignment_expression] = STATE(735), - [sym_compound_assignment_expr] = STATE(735), - [sym_type_cast_expression] = STATE(735), - [sym_return_expression] = STATE(735), - [sym_call_expression] = STATE(735), - [sym_array_expression] = STATE(735), - [sym_parenthesized_expression] = STATE(735), - [sym_tuple_expression] = STATE(735), - [sym_unit_expression] = STATE(735), - [sym_struct_expression] = STATE(735), - [sym_if_expression] = STATE(735), - [sym_if_let_expression] = STATE(735), - [sym_match_expression] = STATE(735), - [sym_while_expression] = STATE(735), - [sym_while_let_expression] = STATE(735), - [sym_loop_expression] = STATE(735), - [sym_for_expression] = STATE(735), - [sym_closure_expression] = STATE(735), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(735), - [sym_continue_expression] = STATE(735), - [sym_index_expression] = STATE(735), - [sym_await_expression] = STATE(735), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(735), - [sym_async_block] = STATE(735), - [sym_block] = STATE(735), - [sym__literal] = STATE(735), - [sym_string_literal] = STATE(735), - [sym_boolean_literal] = STATE(735), + [91] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1134), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1134), + [sym_macro_invocation] = STATE(1134), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1134), + [sym_unary_expression] = STATE(1134), + [sym_try_expression] = STATE(1134), + [sym_reference_expression] = STATE(1134), + [sym_binary_expression] = STATE(1134), + [sym_assignment_expression] = STATE(1134), + [sym_compound_assignment_expr] = STATE(1134), + [sym_type_cast_expression] = STATE(1134), + [sym_return_expression] = STATE(1134), + [sym_call_expression] = STATE(1134), + [sym_array_expression] = STATE(1134), + [sym_parenthesized_expression] = STATE(1134), + [sym_tuple_expression] = STATE(1134), + [sym_unit_expression] = STATE(1134), + [sym_struct_expression] = STATE(1134), + [sym_if_expression] = STATE(1134), + [sym_if_let_expression] = STATE(1134), + [sym_match_expression] = STATE(1134), + [sym_while_expression] = STATE(1134), + [sym_while_let_expression] = STATE(1134), + [sym_loop_expression] = STATE(1134), + [sym_for_expression] = STATE(1134), + [sym_closure_expression] = STATE(1134), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1134), + [sym_continue_expression] = STATE(1134), + [sym_index_expression] = STATE(1134), + [sym_await_expression] = STATE(1134), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1134), + [sym_async_block] = STATE(1134), + [sym_block] = STATE(1134), + [sym__literal] = STATE(1134), + [sym_string_literal] = STATE(1134), + [sym_boolean_literal] = STATE(1134), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -18199,23 +18532,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), + [anon_sym_let] = ACTIONS(809), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(811), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(717), + [sym_char_literal] = ACTIONS(811), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -18223,59 +18557,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(717), - [sym_float_literal] = ACTIONS(717), + [sym_raw_string_literal] = ACTIONS(811), + [sym_float_literal] = ACTIONS(811), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1083), - [sym_macro_invocation] = STATE(1083), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1083), - [sym_unary_expression] = STATE(1083), - [sym_try_expression] = STATE(1083), - [sym_reference_expression] = STATE(1083), - [sym_binary_expression] = STATE(1083), - [sym_assignment_expression] = STATE(1083), - [sym_compound_assignment_expr] = STATE(1083), - [sym_type_cast_expression] = STATE(1083), - [sym_return_expression] = STATE(1083), - [sym_call_expression] = STATE(1083), - [sym_array_expression] = STATE(1083), - [sym_parenthesized_expression] = STATE(1083), - [sym_tuple_expression] = STATE(1083), - [sym_unit_expression] = STATE(1083), - [sym_struct_expression] = STATE(1083), - [sym_if_expression] = STATE(1083), - [sym_if_let_expression] = STATE(1083), - [sym_match_expression] = STATE(1083), - [sym_while_expression] = STATE(1083), - [sym_while_let_expression] = STATE(1083), - [sym_loop_expression] = STATE(1083), - [sym_for_expression] = STATE(1083), - [sym_closure_expression] = STATE(1083), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1083), - [sym_continue_expression] = STATE(1083), - [sym_index_expression] = STATE(1083), - [sym_await_expression] = STATE(1083), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1083), - [sym_async_block] = STATE(1083), - [sym_block] = STATE(1083), - [sym__literal] = STATE(1083), - [sym_string_literal] = STATE(1083), - [sym_boolean_literal] = STATE(1083), + [92] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(872), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(872), + [sym_macro_invocation] = STATE(872), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(872), + [sym_unary_expression] = STATE(872), + [sym_try_expression] = STATE(872), + [sym_reference_expression] = STATE(872), + [sym_binary_expression] = STATE(872), + [sym_assignment_expression] = STATE(872), + [sym_compound_assignment_expr] = STATE(872), + [sym_type_cast_expression] = STATE(872), + [sym_return_expression] = STATE(872), + [sym_call_expression] = STATE(872), + [sym_array_expression] = STATE(872), + [sym_parenthesized_expression] = STATE(872), + [sym_tuple_expression] = STATE(872), + [sym_unit_expression] = STATE(872), + [sym_struct_expression] = STATE(872), + [sym_if_expression] = STATE(872), + [sym_if_let_expression] = STATE(872), + [sym_match_expression] = STATE(872), + [sym_while_expression] = STATE(872), + [sym_while_let_expression] = STATE(872), + [sym_loop_expression] = STATE(872), + [sym_for_expression] = STATE(872), + [sym_closure_expression] = STATE(872), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(872), + [sym_continue_expression] = STATE(872), + [sym_index_expression] = STATE(872), + [sym_await_expression] = STATE(872), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(872), + [sym_async_block] = STATE(872), + [sym_block] = STATE(872), + [sym__literal] = STATE(872), + [sym_string_literal] = STATE(872), + [sym_boolean_literal] = STATE(872), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -18306,17 +18640,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [sym_mutable_specifier] = ACTIONS(813), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(719), + [sym_integer_literal] = ACTIONS(767), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(719), + [sym_char_literal] = ACTIONS(767), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -18324,58 +18659,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(719), - [sym_float_literal] = ACTIONS(719), + [sym_raw_string_literal] = ACTIONS(767), + [sym_float_literal] = ACTIONS(767), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1157), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(1157), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1157), - [sym_unary_expression] = STATE(1157), - [sym_try_expression] = STATE(1157), - [sym_reference_expression] = STATE(1157), - [sym_binary_expression] = STATE(1157), - [sym_assignment_expression] = STATE(1157), - [sym_compound_assignment_expr] = STATE(1157), - [sym_type_cast_expression] = STATE(1157), - [sym_return_expression] = STATE(1157), - [sym_call_expression] = STATE(1157), - [sym_array_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_tuple_expression] = STATE(1157), - [sym_unit_expression] = STATE(1157), - [sym_struct_expression] = STATE(1157), - [sym_if_expression] = STATE(1157), - [sym_if_let_expression] = STATE(1157), - [sym_match_expression] = STATE(1157), - [sym_while_expression] = STATE(1157), - [sym_while_let_expression] = STATE(1157), - [sym_loop_expression] = STATE(1157), - [sym_for_expression] = STATE(1157), - [sym_closure_expression] = STATE(1157), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1157), - [sym_continue_expression] = STATE(1157), - [sym_index_expression] = STATE(1157), - [sym_await_expression] = STATE(1157), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1157), - [sym_async_block] = STATE(1157), - [sym_block] = STATE(1157), - [sym__literal] = STATE(1157), - [sym_string_literal] = STATE(1157), - [sym_boolean_literal] = STATE(1157), + [93] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1125), + [sym_macro_invocation] = STATE(1125), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1125), + [sym_unary_expression] = STATE(1125), + [sym_try_expression] = STATE(1125), + [sym_reference_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1125), + [sym_compound_assignment_expr] = STATE(1125), + [sym_type_cast_expression] = STATE(1125), + [sym_return_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_array_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_tuple_expression] = STATE(1125), + [sym_unit_expression] = STATE(1125), + [sym_struct_expression] = STATE(1125), + [sym_if_expression] = STATE(1125), + [sym_if_let_expression] = STATE(1125), + [sym_match_expression] = STATE(1125), + [sym_while_expression] = STATE(1125), + [sym_while_let_expression] = STATE(1125), + [sym_loop_expression] = STATE(1125), + [sym_for_expression] = STATE(1125), + [sym_closure_expression] = STATE(1125), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1125), + [sym_continue_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_await_expression] = STATE(1125), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1125), + [sym_async_block] = STATE(1125), + [sym_block] = STATE(1125), + [sym__literal] = STATE(1125), + [sym_string_literal] = STATE(1125), + [sym_boolean_literal] = STATE(1125), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(815), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -18415,9 +18751,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(721), + [sym_integer_literal] = ACTIONS(805), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(721), + [sym_char_literal] = ACTIONS(805), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -18425,155 +18761,156 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(721), + [sym_raw_string_literal] = ACTIONS(805), + [sym_float_literal] = ACTIONS(805), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1174), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(1174), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1174), - [sym_unary_expression] = STATE(1174), - [sym_try_expression] = STATE(1174), - [sym_reference_expression] = STATE(1174), - [sym_binary_expression] = STATE(1174), - [sym_assignment_expression] = STATE(1174), - [sym_compound_assignment_expr] = STATE(1174), - [sym_type_cast_expression] = STATE(1174), - [sym_return_expression] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_array_expression] = STATE(1174), - [sym_parenthesized_expression] = STATE(1174), - [sym_tuple_expression] = STATE(1174), - [sym_unit_expression] = STATE(1174), - [sym_struct_expression] = STATE(1174), - [sym_if_expression] = STATE(1174), - [sym_if_let_expression] = STATE(1174), - [sym_match_expression] = STATE(1174), - [sym_while_expression] = STATE(1174), - [sym_while_let_expression] = STATE(1174), - [sym_loop_expression] = STATE(1174), - [sym_for_expression] = STATE(1174), - [sym_closure_expression] = STATE(1174), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1174), - [sym_continue_expression] = STATE(1174), - [sym_index_expression] = STATE(1174), - [sym_await_expression] = STATE(1174), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1174), - [sym_async_block] = STATE(1174), - [sym_block] = STATE(1174), - [sym__literal] = STATE(1174), - [sym_string_literal] = STATE(1174), - [sym_boolean_literal] = STATE(1174), - [sym_identifier] = ACTIONS(291), + [94] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1212), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1212), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1212), + [sym_unary_expression] = STATE(1212), + [sym_try_expression] = STATE(1212), + [sym_reference_expression] = STATE(1212), + [sym_binary_expression] = STATE(1212), + [sym_assignment_expression] = STATE(1212), + [sym_compound_assignment_expr] = STATE(1212), + [sym_type_cast_expression] = STATE(1212), + [sym_return_expression] = STATE(1212), + [sym_call_expression] = STATE(1212), + [sym_array_expression] = STATE(1212), + [sym_parenthesized_expression] = STATE(1212), + [sym_tuple_expression] = STATE(1212), + [sym_unit_expression] = STATE(1212), + [sym_struct_expression] = STATE(1212), + [sym_if_expression] = STATE(1212), + [sym_if_let_expression] = STATE(1212), + [sym_match_expression] = STATE(1212), + [sym_while_expression] = STATE(1212), + [sym_while_let_expression] = STATE(1212), + [sym_loop_expression] = STATE(1212), + [sym_for_expression] = STATE(1212), + [sym_closure_expression] = STATE(1212), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1212), + [sym_continue_expression] = STATE(1212), + [sym_index_expression] = STATE(1212), + [sym_await_expression] = STATE(1212), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1212), + [sym_async_block] = STATE(1212), + [sym_block] = STATE(1212), + [sym__literal] = STATE(1212), + [sym_string_literal] = STATE(1212), + [sym_boolean_literal] = STATE(1212), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_DASH_GT] = ACTIONS(793), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(363), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(723), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(817), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(723), + [sym_char_literal] = ACTIONS(817), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(723), - [sym_float_literal] = ACTIONS(723), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(817), + [sym_float_literal] = ACTIONS(817), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1114), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1114), - [sym_macro_invocation] = STATE(1114), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1114), - [sym_unary_expression] = STATE(1114), - [sym_try_expression] = STATE(1114), - [sym_reference_expression] = STATE(1114), - [sym_binary_expression] = STATE(1114), - [sym_assignment_expression] = STATE(1114), - [sym_compound_assignment_expr] = STATE(1114), - [sym_type_cast_expression] = STATE(1114), - [sym_return_expression] = STATE(1114), - [sym_call_expression] = STATE(1114), - [sym_array_expression] = STATE(1114), - [sym_parenthesized_expression] = STATE(1114), - [sym_tuple_expression] = STATE(1114), - [sym_unit_expression] = STATE(1114), - [sym_struct_expression] = STATE(1114), - [sym_if_expression] = STATE(1114), - [sym_if_let_expression] = STATE(1114), - [sym_match_expression] = STATE(1114), - [sym_while_expression] = STATE(1114), - [sym_while_let_expression] = STATE(1114), - [sym_loop_expression] = STATE(1114), - [sym_for_expression] = STATE(1114), - [sym_closure_expression] = STATE(1114), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1114), - [sym_continue_expression] = STATE(1114), - [sym_index_expression] = STATE(1114), - [sym_await_expression] = STATE(1114), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1114), - [sym_async_block] = STATE(1114), - [sym_block] = STATE(1114), - [sym__literal] = STATE(1114), - [sym_string_literal] = STATE(1114), - [sym_boolean_literal] = STATE(1114), + [95] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1007), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1007), + [sym_macro_invocation] = STATE(1007), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1007), + [sym_unary_expression] = STATE(1007), + [sym_try_expression] = STATE(1007), + [sym_reference_expression] = STATE(1007), + [sym_binary_expression] = STATE(1007), + [sym_assignment_expression] = STATE(1007), + [sym_compound_assignment_expr] = STATE(1007), + [sym_type_cast_expression] = STATE(1007), + [sym_return_expression] = STATE(1007), + [sym_call_expression] = STATE(1007), + [sym_array_expression] = STATE(1007), + [sym_parenthesized_expression] = STATE(1007), + [sym_tuple_expression] = STATE(1007), + [sym_unit_expression] = STATE(1007), + [sym_struct_expression] = STATE(1007), + [sym_if_expression] = STATE(1007), + [sym_if_let_expression] = STATE(1007), + [sym_match_expression] = STATE(1007), + [sym_while_expression] = STATE(1007), + [sym_while_let_expression] = STATE(1007), + [sym_loop_expression] = STATE(1007), + [sym_for_expression] = STATE(1007), + [sym_closure_expression] = STATE(1007), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1007), + [sym_continue_expression] = STATE(1007), + [sym_index_expression] = STATE(1007), + [sym_await_expression] = STATE(1007), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1007), + [sym_async_block] = STATE(1007), + [sym_block] = STATE(1007), + [sym__literal] = STATE(1007), + [sym_string_literal] = STATE(1007), + [sym_boolean_literal] = STATE(1007), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -18610,16 +18947,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(773), [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_DASH] = ACTIONS(317), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(725), + [sym_integer_literal] = ACTIONS(819), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(725), + [sym_char_literal] = ACTIONS(819), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -18627,54 +18965,562 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(725), - [sym_float_literal] = ACTIONS(725), + [sym_raw_string_literal] = ACTIONS(819), + [sym_float_literal] = ACTIONS(819), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1184), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1184), - [sym_macro_invocation] = STATE(1184), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1184), - [sym_unary_expression] = STATE(1184), - [sym_try_expression] = STATE(1184), - [sym_reference_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_assignment_expression] = STATE(1184), - [sym_compound_assignment_expr] = STATE(1184), - [sym_type_cast_expression] = STATE(1184), - [sym_return_expression] = STATE(1184), - [sym_call_expression] = STATE(1184), - [sym_array_expression] = STATE(1184), - [sym_parenthesized_expression] = STATE(1184), - [sym_tuple_expression] = STATE(1184), - [sym_unit_expression] = STATE(1184), - [sym_struct_expression] = STATE(1184), - [sym_if_expression] = STATE(1184), - [sym_if_let_expression] = STATE(1184), - [sym_match_expression] = STATE(1184), - [sym_while_expression] = STATE(1184), - [sym_while_let_expression] = STATE(1184), - [sym_loop_expression] = STATE(1184), - [sym_for_expression] = STATE(1184), - [sym_closure_expression] = STATE(1184), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1184), - [sym_continue_expression] = STATE(1184), - [sym_index_expression] = STATE(1184), - [sym_await_expression] = STATE(1184), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1184), - [sym_async_block] = STATE(1184), - [sym_block] = STATE(1184), - [sym__literal] = STATE(1184), - [sym_string_literal] = STATE(1184), - [sym_boolean_literal] = STATE(1184), + [96] = { + [sym_attribute_item] = STATE(185), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(2011), + [sym_variadic_parameter] = STATE(2011), + [sym_parameter] = STATE(2011), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1743), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1743), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1743), + [sym_tuple_type] = STATE(1743), + [sym_unit_type] = STATE(1743), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1743), + [sym_reference_type] = STATE(1743), + [sym_pointer_type] = STATE(1743), + [sym_empty_type] = STATE(1743), + [sym_abstract_type] = STATE(1743), + [sym_dynamic_type] = STATE(1743), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [97] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1129), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1129), + [sym_macro_invocation] = STATE(1129), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1129), + [sym_unary_expression] = STATE(1129), + [sym_try_expression] = STATE(1129), + [sym_reference_expression] = STATE(1129), + [sym_binary_expression] = STATE(1129), + [sym_assignment_expression] = STATE(1129), + [sym_compound_assignment_expr] = STATE(1129), + [sym_type_cast_expression] = STATE(1129), + [sym_return_expression] = STATE(1129), + [sym_call_expression] = STATE(1129), + [sym_array_expression] = STATE(1129), + [sym_parenthesized_expression] = STATE(1129), + [sym_tuple_expression] = STATE(1129), + [sym_unit_expression] = STATE(1129), + [sym_struct_expression] = STATE(1129), + [sym_if_expression] = STATE(1129), + [sym_if_let_expression] = STATE(1129), + [sym_match_expression] = STATE(1129), + [sym_while_expression] = STATE(1129), + [sym_while_let_expression] = STATE(1129), + [sym_loop_expression] = STATE(1129), + [sym_for_expression] = STATE(1129), + [sym_closure_expression] = STATE(1129), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1129), + [sym_continue_expression] = STATE(1129), + [sym_index_expression] = STATE(1129), + [sym_await_expression] = STATE(1129), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1129), + [sym_async_block] = STATE(1129), + [sym_block] = STATE(1129), + [sym__literal] = STATE(1129), + [sym_string_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym_identifier] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(301), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_let] = ACTIONS(823), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(361), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(825), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(825), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(825), + [sym_float_literal] = ACTIONS(825), + [sym_block_comment] = ACTIONS(3), + }, + [98] = { + [sym_attribute_item] = STATE(185), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(2011), + [sym_variadic_parameter] = STATE(2011), + [sym_parameter] = STATE(2011), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1743), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1743), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1743), + [sym_tuple_type] = STATE(1743), + [sym_unit_type] = STATE(1743), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1743), + [sym_reference_type] = STATE(1743), + [sym_pointer_type] = STATE(1743), + [sym_empty_type] = STATE(1743), + [sym_abstract_type] = STATE(1743), + [sym_dynamic_type] = STATE(1743), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [99] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1157), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(1157), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1157), + [sym_unary_expression] = STATE(1157), + [sym_try_expression] = STATE(1157), + [sym_reference_expression] = STATE(1157), + [sym_binary_expression] = STATE(1157), + [sym_assignment_expression] = STATE(1157), + [sym_compound_assignment_expr] = STATE(1157), + [sym_type_cast_expression] = STATE(1157), + [sym_return_expression] = STATE(1157), + [sym_call_expression] = STATE(1157), + [sym_array_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(1157), + [sym_tuple_expression] = STATE(1157), + [sym_unit_expression] = STATE(1157), + [sym_struct_expression] = STATE(1157), + [sym_if_expression] = STATE(1157), + [sym_if_let_expression] = STATE(1157), + [sym_match_expression] = STATE(1157), + [sym_while_expression] = STATE(1157), + [sym_while_let_expression] = STATE(1157), + [sym_loop_expression] = STATE(1157), + [sym_for_expression] = STATE(1157), + [sym_closure_expression] = STATE(1157), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1157), + [sym_continue_expression] = STATE(1157), + [sym_index_expression] = STATE(1157), + [sym_await_expression] = STATE(1157), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1157), + [sym_async_block] = STATE(1157), + [sym_block] = STATE(1157), + [sym__literal] = STATE(1157), + [sym_string_literal] = STATE(1157), + [sym_boolean_literal] = STATE(1157), + [sym_identifier] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(301), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(361), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(829), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(829), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(829), + [sym_float_literal] = ACTIONS(829), + [sym_block_comment] = ACTIONS(3), + }, + [100] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1161), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(1161), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1161), + [sym_unary_expression] = STATE(1161), + [sym_try_expression] = STATE(1161), + [sym_reference_expression] = STATE(1161), + [sym_binary_expression] = STATE(1161), + [sym_assignment_expression] = STATE(1161), + [sym_compound_assignment_expr] = STATE(1161), + [sym_type_cast_expression] = STATE(1161), + [sym_return_expression] = STATE(1161), + [sym_call_expression] = STATE(1161), + [sym_array_expression] = STATE(1161), + [sym_parenthesized_expression] = STATE(1161), + [sym_tuple_expression] = STATE(1161), + [sym_unit_expression] = STATE(1161), + [sym_struct_expression] = STATE(1161), + [sym_if_expression] = STATE(1161), + [sym_if_let_expression] = STATE(1161), + [sym_match_expression] = STATE(1161), + [sym_while_expression] = STATE(1161), + [sym_while_let_expression] = STATE(1161), + [sym_loop_expression] = STATE(1161), + [sym_for_expression] = STATE(1161), + [sym_closure_expression] = STATE(1161), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1161), + [sym_continue_expression] = STATE(1161), + [sym_index_expression] = STATE(1161), + [sym_await_expression] = STATE(1161), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1161), + [sym_async_block] = STATE(1161), + [sym_block] = STATE(1161), + [sym__literal] = STATE(1161), + [sym_string_literal] = STATE(1161), + [sym_boolean_literal] = STATE(1161), + [sym_identifier] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(301), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(361), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(831), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(831), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(831), + [sym_float_literal] = ACTIONS(831), + [sym_block_comment] = ACTIONS(3), + }, + [101] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1101), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1101), + [sym_macro_invocation] = STATE(1101), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1101), + [sym_unary_expression] = STATE(1101), + [sym_try_expression] = STATE(1101), + [sym_reference_expression] = STATE(1101), + [sym_binary_expression] = STATE(1101), + [sym_assignment_expression] = STATE(1101), + [sym_compound_assignment_expr] = STATE(1101), + [sym_type_cast_expression] = STATE(1101), + [sym_return_expression] = STATE(1101), + [sym_call_expression] = STATE(1101), + [sym_array_expression] = STATE(1101), + [sym_parenthesized_expression] = STATE(1101), + [sym_tuple_expression] = STATE(1101), + [sym_unit_expression] = STATE(1101), + [sym_struct_expression] = STATE(1101), + [sym_if_expression] = STATE(1101), + [sym_if_let_expression] = STATE(1101), + [sym_match_expression] = STATE(1101), + [sym_while_expression] = STATE(1101), + [sym_while_let_expression] = STATE(1101), + [sym_loop_expression] = STATE(1101), + [sym_for_expression] = STATE(1101), + [sym_closure_expression] = STATE(1101), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1101), + [sym_continue_expression] = STATE(1101), + [sym_index_expression] = STATE(1101), + [sym_await_expression] = STATE(1101), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1101), + [sym_async_block] = STATE(1101), + [sym_block] = STATE(1101), + [sym__literal] = STATE(1101), + [sym_string_literal] = STATE(1101), + [sym_boolean_literal] = STATE(1101), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -18718,9 +19564,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(727), + [sym_integer_literal] = ACTIONS(833), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(727), + [sym_char_literal] = ACTIONS(833), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -18728,54 +19574,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(727), + [sym_raw_string_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(833), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1173), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(1173), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1173), - [sym_unary_expression] = STATE(1173), - [sym_try_expression] = STATE(1173), - [sym_reference_expression] = STATE(1173), - [sym_binary_expression] = STATE(1173), - [sym_assignment_expression] = STATE(1173), - [sym_compound_assignment_expr] = STATE(1173), - [sym_type_cast_expression] = STATE(1173), - [sym_return_expression] = STATE(1173), - [sym_call_expression] = STATE(1173), - [sym_array_expression] = STATE(1173), - [sym_parenthesized_expression] = STATE(1173), - [sym_tuple_expression] = STATE(1173), - [sym_unit_expression] = STATE(1173), - [sym_struct_expression] = STATE(1173), - [sym_if_expression] = STATE(1173), - [sym_if_let_expression] = STATE(1173), - [sym_match_expression] = STATE(1173), - [sym_while_expression] = STATE(1173), - [sym_while_let_expression] = STATE(1173), - [sym_loop_expression] = STATE(1173), - [sym_for_expression] = STATE(1173), - [sym_closure_expression] = STATE(1173), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1173), - [sym_continue_expression] = STATE(1173), - [sym_index_expression] = STATE(1173), - [sym_await_expression] = STATE(1173), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1173), - [sym_async_block] = STATE(1173), - [sym_block] = STATE(1173), - [sym__literal] = STATE(1173), - [sym_string_literal] = STATE(1173), - [sym_boolean_literal] = STATE(1173), + [102] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1198), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(1198), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1198), + [sym_unary_expression] = STATE(1198), + [sym_try_expression] = STATE(1198), + [sym_reference_expression] = STATE(1198), + [sym_binary_expression] = STATE(1198), + [sym_assignment_expression] = STATE(1198), + [sym_compound_assignment_expr] = STATE(1198), + [sym_type_cast_expression] = STATE(1198), + [sym_return_expression] = STATE(1198), + [sym_call_expression] = STATE(1198), + [sym_array_expression] = STATE(1198), + [sym_parenthesized_expression] = STATE(1198), + [sym_tuple_expression] = STATE(1198), + [sym_unit_expression] = STATE(1198), + [sym_struct_expression] = STATE(1198), + [sym_if_expression] = STATE(1198), + [sym_if_let_expression] = STATE(1198), + [sym_match_expression] = STATE(1198), + [sym_while_expression] = STATE(1198), + [sym_while_let_expression] = STATE(1198), + [sym_loop_expression] = STATE(1198), + [sym_for_expression] = STATE(1198), + [sym_closure_expression] = STATE(1198), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1198), + [sym_continue_expression] = STATE(1198), + [sym_index_expression] = STATE(1198), + [sym_await_expression] = STATE(1198), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1198), + [sym_async_block] = STATE(1198), + [sym_block] = STATE(1198), + [sym__literal] = STATE(1198), + [sym_string_literal] = STATE(1198), + [sym_boolean_literal] = STATE(1198), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -18819,9 +19665,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(729), + [sym_integer_literal] = ACTIONS(835), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(729), + [sym_char_literal] = ACTIONS(835), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -18829,59 +19675,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(729), + [sym_raw_string_literal] = ACTIONS(835), + [sym_float_literal] = ACTIONS(835), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1104), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1104), - [sym_macro_invocation] = STATE(1104), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1104), - [sym_unary_expression] = STATE(1104), - [sym_try_expression] = STATE(1104), - [sym_reference_expression] = STATE(1104), - [sym_binary_expression] = STATE(1104), - [sym_assignment_expression] = STATE(1104), - [sym_compound_assignment_expr] = STATE(1104), - [sym_type_cast_expression] = STATE(1104), - [sym_return_expression] = STATE(1104), - [sym_call_expression] = STATE(1104), - [sym_array_expression] = STATE(1104), - [sym_parenthesized_expression] = STATE(1104), - [sym_tuple_expression] = STATE(1104), - [sym_unit_expression] = STATE(1104), - [sym_struct_expression] = STATE(1104), - [sym_if_expression] = STATE(1104), - [sym_if_let_expression] = STATE(1104), - [sym_match_expression] = STATE(1104), - [sym_while_expression] = STATE(1104), - [sym_while_let_expression] = STATE(1104), - [sym_loop_expression] = STATE(1104), - [sym_for_expression] = STATE(1104), - [sym_closure_expression] = STATE(1104), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1104), - [sym_continue_expression] = STATE(1104), - [sym_index_expression] = STATE(1104), - [sym_await_expression] = STATE(1104), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1104), - [sym_async_block] = STATE(1104), - [sym_block] = STATE(1104), - [sym__literal] = STATE(1104), - [sym_string_literal] = STATE(1104), - [sym_boolean_literal] = STATE(1104), + [103] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1117), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1117), + [sym_macro_invocation] = STATE(1117), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1117), + [sym_unary_expression] = STATE(1117), + [sym_try_expression] = STATE(1117), + [sym_reference_expression] = STATE(1117), + [sym_binary_expression] = STATE(1117), + [sym_assignment_expression] = STATE(1117), + [sym_compound_assignment_expr] = STATE(1117), + [sym_type_cast_expression] = STATE(1117), + [sym_return_expression] = STATE(1117), + [sym_call_expression] = STATE(1117), + [sym_array_expression] = STATE(1117), + [sym_parenthesized_expression] = STATE(1117), + [sym_tuple_expression] = STATE(1117), + [sym_unit_expression] = STATE(1117), + [sym_struct_expression] = STATE(1117), + [sym_if_expression] = STATE(1117), + [sym_if_let_expression] = STATE(1117), + [sym_match_expression] = STATE(1117), + [sym_while_expression] = STATE(1117), + [sym_while_let_expression] = STATE(1117), + [sym_loop_expression] = STATE(1117), + [sym_for_expression] = STATE(1117), + [sym_closure_expression] = STATE(1117), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1117), + [sym_continue_expression] = STATE(1117), + [sym_index_expression] = STATE(1117), + [sym_await_expression] = STATE(1117), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1117), + [sym_async_block] = STATE(1117), + [sym_block] = STATE(1117), + [sym__literal] = STATE(1117), + [sym_string_literal] = STATE(1117), + [sym_boolean_literal] = STATE(1117), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -18912,17 +19758,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(731), + [sym_integer_literal] = ACTIONS(837), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(731), + [sym_char_literal] = ACTIONS(837), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -18930,155 +19776,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(731), - [sym_float_literal] = ACTIONS(731), - [sym_block_comment] = ACTIONS(3), - }, - [96] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(1742), - [sym_variadic_parameter] = STATE(1742), - [sym_parameter] = STATE(1742), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1728), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1728), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1728), - [sym_tuple_type] = STATE(1728), - [sym_unit_type] = STATE(1728), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1728), - [sym_reference_type] = STATE(1728), - [sym_pointer_type] = STATE(1728), - [sym_empty_type] = STATE(1728), - [sym_abstract_type] = STATE(1728), - [sym_dynamic_type] = STATE(1728), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1683), - [sym_tuple_pattern] = STATE(1683), - [sym_slice_pattern] = STATE(1683), - [sym_tuple_struct_pattern] = STATE(1683), - [sym_struct_pattern] = STATE(1683), - [sym_remaining_field_pattern] = STATE(1683), - [sym_mut_pattern] = STATE(1683), - [sym_range_pattern] = STATE(1683), - [sym_ref_pattern] = STATE(1683), - [sym_captured_pattern] = STATE(1683), - [sym_reference_pattern] = STATE(1683), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(787), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_raw_string_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(837), [sym_block_comment] = ACTIONS(3), }, - [97] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(774), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(774), - [sym_macro_invocation] = STATE(774), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(774), - [sym_unary_expression] = STATE(774), - [sym_try_expression] = STATE(774), - [sym_reference_expression] = STATE(774), - [sym_binary_expression] = STATE(774), - [sym_assignment_expression] = STATE(774), - [sym_compound_assignment_expr] = STATE(774), - [sym_type_cast_expression] = STATE(774), - [sym_return_expression] = STATE(774), - [sym_call_expression] = STATE(774), - [sym_array_expression] = STATE(774), - [sym_parenthesized_expression] = STATE(774), - [sym_tuple_expression] = STATE(774), - [sym_unit_expression] = STATE(774), - [sym_struct_expression] = STATE(774), - [sym_if_expression] = STATE(774), - [sym_if_let_expression] = STATE(774), - [sym_match_expression] = STATE(774), - [sym_while_expression] = STATE(774), - [sym_while_let_expression] = STATE(774), - [sym_loop_expression] = STATE(774), - [sym_for_expression] = STATE(774), - [sym_closure_expression] = STATE(774), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(774), - [sym_continue_expression] = STATE(774), - [sym_index_expression] = STATE(774), - [sym_await_expression] = STATE(774), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(774), - [sym_async_block] = STATE(774), - [sym_block] = STATE(774), - [sym__literal] = STATE(774), - [sym_string_literal] = STATE(774), - [sym_boolean_literal] = STATE(774), + [104] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1125), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1125), + [sym_macro_invocation] = STATE(1125), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1125), + [sym_unary_expression] = STATE(1125), + [sym_try_expression] = STATE(1125), + [sym_reference_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_assignment_expression] = STATE(1125), + [sym_compound_assignment_expr] = STATE(1125), + [sym_type_cast_expression] = STATE(1125), + [sym_return_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_array_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_tuple_expression] = STATE(1125), + [sym_unit_expression] = STATE(1125), + [sym_struct_expression] = STATE(1125), + [sym_if_expression] = STATE(1125), + [sym_if_let_expression] = STATE(1125), + [sym_match_expression] = STATE(1125), + [sym_while_expression] = STATE(1125), + [sym_while_let_expression] = STATE(1125), + [sym_loop_expression] = STATE(1125), + [sym_for_expression] = STATE(1125), + [sym_closure_expression] = STATE(1125), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1125), + [sym_continue_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_await_expression] = STATE(1125), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1125), + [sym_async_block] = STATE(1125), + [sym_block] = STATE(1125), + [sym__literal] = STATE(1125), + [sym_string_literal] = STATE(1125), + [sym_boolean_literal] = STATE(1125), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -19122,9 +19867,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(793), + [sym_integer_literal] = ACTIONS(805), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(793), + [sym_char_literal] = ACTIONS(805), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -19132,463 +19877,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(793), - [sym_float_literal] = ACTIONS(793), - [sym_block_comment] = ACTIONS(3), - }, - [98] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(1742), - [sym_variadic_parameter] = STATE(1742), - [sym_parameter] = STATE(1742), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1728), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1728), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1728), - [sym_tuple_type] = STATE(1728), - [sym_unit_type] = STATE(1728), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1728), - [sym_reference_type] = STATE(1728), - [sym_pointer_type] = STATE(1728), - [sym_empty_type] = STATE(1728), - [sym_abstract_type] = STATE(1728), - [sym_dynamic_type] = STATE(1728), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1683), - [sym_tuple_pattern] = STATE(1683), - [sym_slice_pattern] = STATE(1683), - [sym_tuple_struct_pattern] = STATE(1683), - [sym_struct_pattern] = STATE(1683), - [sym_remaining_field_pattern] = STATE(1683), - [sym_mut_pattern] = STATE(1683), - [sym_range_pattern] = STATE(1683), - [sym_ref_pattern] = STATE(1683), - [sym_captured_pattern] = STATE(1683), - [sym_reference_pattern] = STATE(1683), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(797), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(787), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_raw_string_literal] = ACTIONS(805), + [sym_float_literal] = ACTIONS(805), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1171), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(1171), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1171), - [sym_unary_expression] = STATE(1171), - [sym_try_expression] = STATE(1171), - [sym_reference_expression] = STATE(1171), - [sym_binary_expression] = STATE(1171), - [sym_assignment_expression] = STATE(1171), - [sym_compound_assignment_expr] = STATE(1171), - [sym_type_cast_expression] = STATE(1171), - [sym_return_expression] = STATE(1171), - [sym_call_expression] = STATE(1171), - [sym_array_expression] = STATE(1171), - [sym_parenthesized_expression] = STATE(1171), - [sym_tuple_expression] = STATE(1171), - [sym_unit_expression] = STATE(1171), - [sym_struct_expression] = STATE(1171), - [sym_if_expression] = STATE(1171), - [sym_if_let_expression] = STATE(1171), - [sym_match_expression] = STATE(1171), - [sym_while_expression] = STATE(1171), - [sym_while_let_expression] = STATE(1171), - [sym_loop_expression] = STATE(1171), - [sym_for_expression] = STATE(1171), - [sym_closure_expression] = STATE(1171), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1171), - [sym_continue_expression] = STATE(1171), - [sym_index_expression] = STATE(1171), - [sym_await_expression] = STATE(1171), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1171), - [sym_async_block] = STATE(1171), - [sym_block] = STATE(1171), - [sym__literal] = STATE(1171), - [sym_string_literal] = STATE(1171), - [sym_boolean_literal] = STATE(1171), - [sym_identifier] = ACTIONS(291), + [105] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1119), + [sym_macro_invocation] = STATE(1119), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1119), + [sym_unary_expression] = STATE(1119), + [sym_try_expression] = STATE(1119), + [sym_reference_expression] = STATE(1119), + [sym_binary_expression] = STATE(1119), + [sym_assignment_expression] = STATE(1119), + [sym_compound_assignment_expr] = STATE(1119), + [sym_type_cast_expression] = STATE(1119), + [sym_return_expression] = STATE(1119), + [sym_call_expression] = STATE(1119), + [sym_array_expression] = STATE(1119), + [sym_parenthesized_expression] = STATE(1119), + [sym_tuple_expression] = STATE(1119), + [sym_unit_expression] = STATE(1119), + [sym_struct_expression] = STATE(1119), + [sym_if_expression] = STATE(1119), + [sym_if_let_expression] = STATE(1119), + [sym_match_expression] = STATE(1119), + [sym_while_expression] = STATE(1119), + [sym_while_let_expression] = STATE(1119), + [sym_loop_expression] = STATE(1119), + [sym_for_expression] = STATE(1119), + [sym_closure_expression] = STATE(1119), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1119), + [sym_continue_expression] = STATE(1119), + [sym_index_expression] = STATE(1119), + [sym_await_expression] = STATE(1119), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1119), + [sym_async_block] = STATE(1119), + [sym_block] = STATE(1119), + [sym__literal] = STATE(1119), + [sym_string_literal] = STATE(1119), + [sym_boolean_literal] = STATE(1119), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [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_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(799), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(799), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(799), - [sym_block_comment] = ACTIONS(3), - }, - [100] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1170), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(1170), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1170), - [sym_unary_expression] = STATE(1170), - [sym_try_expression] = STATE(1170), - [sym_reference_expression] = STATE(1170), - [sym_binary_expression] = STATE(1170), - [sym_assignment_expression] = STATE(1170), - [sym_compound_assignment_expr] = STATE(1170), - [sym_type_cast_expression] = STATE(1170), - [sym_return_expression] = STATE(1170), - [sym_call_expression] = STATE(1170), - [sym_array_expression] = STATE(1170), - [sym_parenthesized_expression] = STATE(1170), - [sym_tuple_expression] = STATE(1170), - [sym_unit_expression] = STATE(1170), - [sym_struct_expression] = STATE(1170), - [sym_if_expression] = STATE(235), - [sym_if_let_expression] = STATE(235), - [sym_match_expression] = STATE(235), - [sym_while_expression] = STATE(235), - [sym_while_let_expression] = STATE(235), - [sym_loop_expression] = STATE(235), - [sym_for_expression] = STATE(235), - [sym_closure_expression] = STATE(1170), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2384), - [sym_break_expression] = STATE(1170), - [sym_continue_expression] = STATE(1170), - [sym_index_expression] = STATE(1170), - [sym_await_expression] = STATE(1170), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(235), - [sym_async_block] = STATE(235), - [sym_block] = STATE(235), - [sym__literal] = STATE(1170), - [sym_string_literal] = STATE(1170), - [sym_boolean_literal] = STATE(1170), - [sym_identifier] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(801), - [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(803), - [anon_sym_break] = ACTIONS(27), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(805), - [anon_sym_if] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(809), - [anon_sym_match] = ACTIONS(811), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_while] = ACTIONS(815), - [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_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(817), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(817), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(817), - [sym_float_literal] = ACTIONS(817), - [sym_block_comment] = ACTIONS(3), - }, - [101] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1095), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1095), - [sym_macro_invocation] = STATE(1095), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1095), - [sym_unary_expression] = STATE(1095), - [sym_try_expression] = STATE(1095), - [sym_reference_expression] = STATE(1095), - [sym_binary_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1095), - [sym_compound_assignment_expr] = STATE(1095), - [sym_type_cast_expression] = STATE(1095), - [sym_return_expression] = STATE(1095), - [sym_call_expression] = STATE(1095), - [sym_array_expression] = STATE(1095), - [sym_parenthesized_expression] = STATE(1095), - [sym_tuple_expression] = STATE(1095), - [sym_unit_expression] = STATE(1095), - [sym_struct_expression] = STATE(1095), - [sym_if_expression] = STATE(235), - [sym_if_let_expression] = STATE(235), - [sym_match_expression] = STATE(235), - [sym_while_expression] = STATE(235), - [sym_while_let_expression] = STATE(235), - [sym_loop_expression] = STATE(235), - [sym_for_expression] = STATE(235), - [sym_closure_expression] = STATE(1095), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2384), - [sym_break_expression] = STATE(1095), - [sym_continue_expression] = STATE(1095), - [sym_index_expression] = STATE(1095), - [sym_await_expression] = STATE(1095), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(235), - [sym_async_block] = STATE(235), - [sym_block] = STATE(235), - [sym__literal] = STATE(1095), - [sym_string_literal] = STATE(1095), - [sym_boolean_literal] = STATE(1095), - [sym_identifier] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(801), - [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(803), - [anon_sym_break] = ACTIONS(27), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(805), - [anon_sym_if] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(809), - [anon_sym_match] = ACTIONS(811), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_while] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(819), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(839), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(819), + [sym_char_literal] = ACTIONS(839), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(819), - [sym_float_literal] = ACTIONS(819), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(839), + [sym_float_literal] = ACTIONS(839), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1112), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1112), - [sym_macro_invocation] = STATE(1112), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1112), - [sym_unary_expression] = STATE(1112), - [sym_try_expression] = STATE(1112), - [sym_reference_expression] = STATE(1112), - [sym_binary_expression] = STATE(1112), - [sym_assignment_expression] = STATE(1112), - [sym_compound_assignment_expr] = STATE(1112), - [sym_type_cast_expression] = STATE(1112), - [sym_return_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_array_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_tuple_expression] = STATE(1112), - [sym_unit_expression] = STATE(1112), - [sym_struct_expression] = STATE(1112), - [sym_if_expression] = STATE(1112), - [sym_if_let_expression] = STATE(1112), - [sym_match_expression] = STATE(1112), - [sym_while_expression] = STATE(1112), - [sym_while_let_expression] = STATE(1112), - [sym_loop_expression] = STATE(1112), - [sym_for_expression] = STATE(1112), - [sym_closure_expression] = STATE(1112), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1112), - [sym_continue_expression] = STATE(1112), - [sym_index_expression] = STATE(1112), - [sym_await_expression] = STATE(1112), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1112), - [sym_async_block] = STATE(1112), - [sym_block] = STATE(1112), - [sym__literal] = STATE(1112), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [106] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1136), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1136), + [sym_macro_invocation] = STATE(1136), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(1136), + [sym_try_expression] = STATE(1136), + [sym_reference_expression] = STATE(1136), + [sym_binary_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1136), + [sym_compound_assignment_expr] = STATE(1136), + [sym_type_cast_expression] = STATE(1136), + [sym_return_expression] = STATE(1136), + [sym_call_expression] = STATE(1136), + [sym_array_expression] = STATE(1136), + [sym_parenthesized_expression] = STATE(1136), + [sym_tuple_expression] = STATE(1136), + [sym_unit_expression] = STATE(1136), + [sym_struct_expression] = STATE(1136), + [sym_if_expression] = STATE(1136), + [sym_if_let_expression] = STATE(1136), + [sym_match_expression] = STATE(1136), + [sym_while_expression] = STATE(1136), + [sym_while_let_expression] = STATE(1136), + [sym_loop_expression] = STATE(1136), + [sym_for_expression] = STATE(1136), + [sym_closure_expression] = STATE(1136), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1136), + [sym_continue_expression] = STATE(1136), + [sym_index_expression] = STATE(1136), + [sym_await_expression] = STATE(1136), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1136), + [sym_async_block] = STATE(1136), + [sym_block] = STATE(1136), + [sym__literal] = STATE(1136), + [sym_string_literal] = STATE(1136), + [sym_boolean_literal] = STATE(1136), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -19619,17 +20061,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(841), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(821), + [sym_char_literal] = ACTIONS(841), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -19637,155 +20079,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(821), - [sym_float_literal] = ACTIONS(821), + [sym_raw_string_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(841), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1186), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1186), - [sym_macro_invocation] = STATE(1186), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1186), - [sym_unary_expression] = STATE(1186), - [sym_try_expression] = STATE(1186), - [sym_reference_expression] = STATE(1186), - [sym_binary_expression] = STATE(1186), - [sym_assignment_expression] = STATE(1186), - [sym_compound_assignment_expr] = STATE(1186), - [sym_type_cast_expression] = STATE(1186), - [sym_return_expression] = STATE(1186), - [sym_call_expression] = STATE(1186), - [sym_array_expression] = STATE(1186), - [sym_parenthesized_expression] = STATE(1186), - [sym_tuple_expression] = STATE(1186), - [sym_unit_expression] = STATE(1186), - [sym_struct_expression] = STATE(1186), - [sym_if_expression] = STATE(1186), - [sym_if_let_expression] = STATE(1186), - [sym_match_expression] = STATE(1186), - [sym_while_expression] = STATE(1186), - [sym_while_let_expression] = STATE(1186), - [sym_loop_expression] = STATE(1186), - [sym_for_expression] = STATE(1186), - [sym_closure_expression] = STATE(1186), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1186), - [sym_continue_expression] = STATE(1186), - [sym_index_expression] = STATE(1186), - [sym_await_expression] = STATE(1186), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1186), - [sym_async_block] = STATE(1186), - [sym_block] = STATE(1186), - [sym__literal] = STATE(1186), - [sym_string_literal] = STATE(1186), - [sym_boolean_literal] = STATE(1186), - [sym_identifier] = ACTIONS(291), + [107] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1121), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1121), + [sym_macro_invocation] = STATE(1121), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1121), + [sym_unary_expression] = STATE(1121), + [sym_try_expression] = STATE(1121), + [sym_reference_expression] = STATE(1121), + [sym_binary_expression] = STATE(1121), + [sym_assignment_expression] = STATE(1121), + [sym_compound_assignment_expr] = STATE(1121), + [sym_type_cast_expression] = STATE(1121), + [sym_return_expression] = STATE(1121), + [sym_call_expression] = STATE(1121), + [sym_array_expression] = STATE(1121), + [sym_parenthesized_expression] = STATE(1121), + [sym_tuple_expression] = STATE(1121), + [sym_unit_expression] = STATE(1121), + [sym_struct_expression] = STATE(1121), + [sym_if_expression] = STATE(1121), + [sym_if_let_expression] = STATE(1121), + [sym_match_expression] = STATE(1121), + [sym_while_expression] = STATE(1121), + [sym_while_let_expression] = STATE(1121), + [sym_loop_expression] = STATE(1121), + [sym_for_expression] = STATE(1121), + [sym_closure_expression] = STATE(1121), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1121), + [sym_continue_expression] = STATE(1121), + [sym_index_expression] = STATE(1121), + [sym_await_expression] = STATE(1121), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1121), + [sym_async_block] = STATE(1121), + [sym_block] = STATE(1121), + [sym__literal] = STATE(1121), + [sym_string_literal] = STATE(1121), + [sym_boolean_literal] = STATE(1121), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(823), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(843), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(823), + [sym_char_literal] = ACTIONS(843), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(823), - [sym_float_literal] = ACTIONS(823), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(843), + [sym_float_literal] = ACTIONS(843), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1190), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(1190), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1190), - [sym_unary_expression] = STATE(1190), - [sym_try_expression] = STATE(1190), - [sym_reference_expression] = STATE(1190), - [sym_binary_expression] = STATE(1190), - [sym_assignment_expression] = STATE(1190), - [sym_compound_assignment_expr] = STATE(1190), - [sym_type_cast_expression] = STATE(1190), - [sym_return_expression] = STATE(1190), - [sym_call_expression] = STATE(1190), - [sym_array_expression] = STATE(1190), - [sym_parenthesized_expression] = STATE(1190), - [sym_tuple_expression] = STATE(1190), - [sym_unit_expression] = STATE(1190), - [sym_struct_expression] = STATE(1190), - [sym_if_expression] = STATE(1190), - [sym_if_let_expression] = STATE(1190), - [sym_match_expression] = STATE(1190), - [sym_while_expression] = STATE(1190), - [sym_while_let_expression] = STATE(1190), - [sym_loop_expression] = STATE(1190), - [sym_for_expression] = STATE(1190), - [sym_closure_expression] = STATE(1190), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1190), - [sym_continue_expression] = STATE(1190), - [sym_index_expression] = STATE(1190), - [sym_await_expression] = STATE(1190), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1190), - [sym_async_block] = STATE(1190), - [sym_block] = STATE(1190), - [sym__literal] = STATE(1190), - [sym_string_literal] = STATE(1190), - [sym_boolean_literal] = STATE(1190), + [108] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1137), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1137), + [sym_macro_invocation] = STATE(1137), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1137), + [sym_unary_expression] = STATE(1137), + [sym_try_expression] = STATE(1137), + [sym_reference_expression] = STATE(1137), + [sym_binary_expression] = STATE(1137), + [sym_assignment_expression] = STATE(1137), + [sym_compound_assignment_expr] = STATE(1137), + [sym_type_cast_expression] = STATE(1137), + [sym_return_expression] = STATE(1137), + [sym_call_expression] = STATE(1137), + [sym_array_expression] = STATE(1137), + [sym_parenthesized_expression] = STATE(1137), + [sym_tuple_expression] = STATE(1137), + [sym_unit_expression] = STATE(1137), + [sym_struct_expression] = STATE(1137), + [sym_if_expression] = STATE(1137), + [sym_if_let_expression] = STATE(1137), + [sym_match_expression] = STATE(1137), + [sym_while_expression] = STATE(1137), + [sym_while_let_expression] = STATE(1137), + [sym_loop_expression] = STATE(1137), + [sym_for_expression] = STATE(1137), + [sym_closure_expression] = STATE(1137), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1137), + [sym_continue_expression] = STATE(1137), + [sym_index_expression] = STATE(1137), + [sym_await_expression] = STATE(1137), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1137), + [sym_async_block] = STATE(1137), + [sym_block] = STATE(1137), + [sym__literal] = STATE(1137), + [sym_string_literal] = STATE(1137), + [sym_boolean_literal] = STATE(1137), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -19829,9 +20271,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(825), + [sym_integer_literal] = ACTIONS(845), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(825), + [sym_char_literal] = ACTIONS(845), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -19839,54 +20281,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(825), - [sym_float_literal] = ACTIONS(825), + [sym_raw_string_literal] = ACTIONS(845), + [sym_float_literal] = ACTIONS(845), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1187), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(1187), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1187), - [sym_unary_expression] = STATE(1187), - [sym_try_expression] = STATE(1187), - [sym_reference_expression] = STATE(1187), - [sym_binary_expression] = STATE(1187), - [sym_assignment_expression] = STATE(1187), - [sym_compound_assignment_expr] = STATE(1187), - [sym_type_cast_expression] = STATE(1187), - [sym_return_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_array_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_tuple_expression] = STATE(1187), - [sym_unit_expression] = STATE(1187), - [sym_struct_expression] = STATE(1187), - [sym_if_expression] = STATE(1187), - [sym_if_let_expression] = STATE(1187), - [sym_match_expression] = STATE(1187), - [sym_while_expression] = STATE(1187), - [sym_while_let_expression] = STATE(1187), - [sym_loop_expression] = STATE(1187), - [sym_for_expression] = STATE(1187), - [sym_closure_expression] = STATE(1187), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1187), - [sym_continue_expression] = STATE(1187), - [sym_index_expression] = STATE(1187), - [sym_await_expression] = STATE(1187), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1187), - [sym_async_block] = STATE(1187), - [sym_block] = STATE(1187), - [sym__literal] = STATE(1187), - [sym_string_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), + [109] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1122), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1122), + [sym_macro_invocation] = STATE(1122), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_try_expression] = STATE(1122), + [sym_reference_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_assignment_expression] = STATE(1122), + [sym_compound_assignment_expr] = STATE(1122), + [sym_type_cast_expression] = STATE(1122), + [sym_return_expression] = STATE(1122), + [sym_call_expression] = STATE(1122), + [sym_array_expression] = STATE(1122), + [sym_parenthesized_expression] = STATE(1122), + [sym_tuple_expression] = STATE(1122), + [sym_unit_expression] = STATE(1122), + [sym_struct_expression] = STATE(1122), + [sym_if_expression] = STATE(1122), + [sym_if_let_expression] = STATE(1122), + [sym_match_expression] = STATE(1122), + [sym_while_expression] = STATE(1122), + [sym_while_let_expression] = STATE(1122), + [sym_loop_expression] = STATE(1122), + [sym_for_expression] = STATE(1122), + [sym_closure_expression] = STATE(1122), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1122), + [sym_continue_expression] = STATE(1122), + [sym_index_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1122), + [sym_async_block] = STATE(1122), + [sym_block] = STATE(1122), + [sym__literal] = STATE(1122), + [sym_string_literal] = STATE(1122), + [sym_boolean_literal] = STATE(1122), + [sym_identifier] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(301), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(361), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(847), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(847), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(847), + [sym_float_literal] = ACTIONS(847), + [sym_block_comment] = ACTIONS(3), + }, + [110] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(824), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(824), + [sym_macro_invocation] = STATE(824), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(824), + [sym_unary_expression] = STATE(824), + [sym_try_expression] = STATE(824), + [sym_reference_expression] = STATE(824), + [sym_binary_expression] = STATE(824), + [sym_assignment_expression] = STATE(824), + [sym_compound_assignment_expr] = STATE(824), + [sym_type_cast_expression] = STATE(824), + [sym_return_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_array_expression] = STATE(824), + [sym_parenthesized_expression] = STATE(824), + [sym_tuple_expression] = STATE(824), + [sym_unit_expression] = STATE(824), + [sym_struct_expression] = STATE(824), + [sym_if_expression] = STATE(824), + [sym_if_let_expression] = STATE(824), + [sym_match_expression] = STATE(824), + [sym_while_expression] = STATE(824), + [sym_while_let_expression] = STATE(824), + [sym_loop_expression] = STATE(824), + [sym_for_expression] = STATE(824), + [sym_closure_expression] = STATE(824), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(824), + [sym_continue_expression] = STATE(824), + [sym_index_expression] = STATE(824), + [sym_await_expression] = STATE(824), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(824), + [sym_async_block] = STATE(824), + [sym_block] = STATE(824), + [sym__literal] = STATE(824), + [sym_string_literal] = STATE(824), + [sym_boolean_literal] = STATE(824), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -19930,9 +20473,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(827), + [sym_integer_literal] = ACTIONS(849), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(827), + [sym_char_literal] = ACTIONS(849), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -19940,59 +20483,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(827), + [sym_raw_string_literal] = ACTIONS(849), + [sym_float_literal] = ACTIONS(849), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1101), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1101), - [sym_macro_invocation] = STATE(1101), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1101), - [sym_unary_expression] = STATE(1101), - [sym_try_expression] = STATE(1101), - [sym_reference_expression] = STATE(1101), - [sym_binary_expression] = STATE(1101), - [sym_assignment_expression] = STATE(1101), - [sym_compound_assignment_expr] = STATE(1101), - [sym_type_cast_expression] = STATE(1101), - [sym_return_expression] = STATE(1101), - [sym_call_expression] = STATE(1101), - [sym_array_expression] = STATE(1101), - [sym_parenthesized_expression] = STATE(1101), - [sym_tuple_expression] = STATE(1101), - [sym_unit_expression] = STATE(1101), - [sym_struct_expression] = STATE(1101), - [sym_if_expression] = STATE(1101), - [sym_if_let_expression] = STATE(1101), - [sym_match_expression] = STATE(1101), - [sym_while_expression] = STATE(1101), - [sym_while_let_expression] = STATE(1101), - [sym_loop_expression] = STATE(1101), - [sym_for_expression] = STATE(1101), - [sym_closure_expression] = STATE(1101), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1101), - [sym_continue_expression] = STATE(1101), - [sym_index_expression] = STATE(1101), - [sym_await_expression] = STATE(1101), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1101), - [sym_async_block] = STATE(1101), - [sym_block] = STATE(1101), - [sym__literal] = STATE(1101), - [sym_string_literal] = STATE(1101), - [sym_boolean_literal] = STATE(1101), + [111] = { + [sym_attribute_item] = STATE(185), + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(2011), + [sym_variadic_parameter] = STATE(2011), + [sym_parameter] = STATE(2011), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1743), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1743), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1743), + [sym_tuple_type] = STATE(1743), + [sym_unit_type] = STATE(1743), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1743), + [sym_reference_type] = STATE(1743), + [sym_pointer_type] = STATE(1743), + [sym_empty_type] = STATE(1743), + [sym_abstract_type] = STATE(1743), + [sym_dynamic_type] = STATE(1743), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [112] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1131), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1131), + [sym_macro_invocation] = STATE(1131), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1131), + [sym_unary_expression] = STATE(1131), + [sym_try_expression] = STATE(1131), + [sym_reference_expression] = STATE(1131), + [sym_binary_expression] = STATE(1131), + [sym_assignment_expression] = STATE(1131), + [sym_compound_assignment_expr] = STATE(1131), + [sym_type_cast_expression] = STATE(1131), + [sym_return_expression] = STATE(1131), + [sym_call_expression] = STATE(1131), + [sym_array_expression] = STATE(1131), + [sym_parenthesized_expression] = STATE(1131), + [sym_tuple_expression] = STATE(1131), + [sym_unit_expression] = STATE(1131), + [sym_struct_expression] = STATE(1131), + [sym_if_expression] = STATE(1131), + [sym_if_let_expression] = STATE(1131), + [sym_match_expression] = STATE(1131), + [sym_while_expression] = STATE(1131), + [sym_while_let_expression] = STATE(1131), + [sym_loop_expression] = STATE(1131), + [sym_for_expression] = STATE(1131), + [sym_closure_expression] = STATE(1131), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1131), + [sym_continue_expression] = STATE(1131), + [sym_index_expression] = STATE(1131), + [sym_await_expression] = STATE(1131), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1131), + [sym_async_block] = STATE(1131), + [sym_block] = STATE(1131), + [sym__literal] = STATE(1131), + [sym_string_literal] = STATE(1131), + [sym_boolean_literal] = STATE(1131), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -20023,17 +20667,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(829), + [sym_integer_literal] = ACTIONS(851), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(829), + [sym_char_literal] = ACTIONS(851), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -20041,54 +20685,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(829), - [sym_float_literal] = ACTIONS(829), + [sym_raw_string_literal] = ACTIONS(851), + [sym_float_literal] = ACTIONS(851), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1189), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(1189), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1189), - [sym_unary_expression] = STATE(1189), - [sym_try_expression] = STATE(1189), - [sym_reference_expression] = STATE(1189), - [sym_binary_expression] = STATE(1189), - [sym_assignment_expression] = STATE(1189), - [sym_compound_assignment_expr] = STATE(1189), - [sym_type_cast_expression] = STATE(1189), - [sym_return_expression] = STATE(1189), - [sym_call_expression] = STATE(1189), - [sym_array_expression] = STATE(1189), - [sym_parenthesized_expression] = STATE(1189), - [sym_tuple_expression] = STATE(1189), - [sym_unit_expression] = STATE(1189), - [sym_struct_expression] = STATE(1189), - [sym_if_expression] = STATE(1189), - [sym_if_let_expression] = STATE(1189), - [sym_match_expression] = STATE(1189), - [sym_while_expression] = STATE(1189), - [sym_while_let_expression] = STATE(1189), - [sym_loop_expression] = STATE(1189), - [sym_for_expression] = STATE(1189), - [sym_closure_expression] = STATE(1189), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1189), - [sym_continue_expression] = STATE(1189), - [sym_index_expression] = STATE(1189), - [sym_await_expression] = STATE(1189), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1189), - [sym_async_block] = STATE(1189), - [sym_block] = STATE(1189), - [sym__literal] = STATE(1189), - [sym_string_literal] = STATE(1189), - [sym_boolean_literal] = STATE(1189), + [113] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1185), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1185), + [sym_macro_invocation] = STATE(1185), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1185), + [sym_unary_expression] = STATE(1185), + [sym_try_expression] = STATE(1185), + [sym_reference_expression] = STATE(1185), + [sym_binary_expression] = STATE(1185), + [sym_assignment_expression] = STATE(1185), + [sym_compound_assignment_expr] = STATE(1185), + [sym_type_cast_expression] = STATE(1185), + [sym_return_expression] = STATE(1185), + [sym_call_expression] = STATE(1185), + [sym_array_expression] = STATE(1185), + [sym_parenthesized_expression] = STATE(1185), + [sym_tuple_expression] = STATE(1185), + [sym_unit_expression] = STATE(1185), + [sym_struct_expression] = STATE(1185), + [sym_if_expression] = STATE(1185), + [sym_if_let_expression] = STATE(1185), + [sym_match_expression] = STATE(1185), + [sym_while_expression] = STATE(1185), + [sym_while_let_expression] = STATE(1185), + [sym_loop_expression] = STATE(1185), + [sym_for_expression] = STATE(1185), + [sym_closure_expression] = STATE(1185), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1185), + [sym_continue_expression] = STATE(1185), + [sym_index_expression] = STATE(1185), + [sym_await_expression] = STATE(1185), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1185), + [sym_async_block] = STATE(1185), + [sym_block] = STATE(1185), + [sym__literal] = STATE(1185), + [sym_string_literal] = STATE(1185), + [sym_boolean_literal] = STATE(1185), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -20132,9 +20776,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(831), + [sym_integer_literal] = ACTIONS(853), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(831), + [sym_char_literal] = ACTIONS(853), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -20142,65 +20786,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(831), - [sym_float_literal] = ACTIONS(831), + [sym_raw_string_literal] = ACTIONS(853), + [sym_float_literal] = ACTIONS(853), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(999), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(999), - [sym_macro_invocation] = STATE(999), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(999), - [sym_unary_expression] = STATE(999), - [sym_try_expression] = STATE(999), - [sym_reference_expression] = STATE(999), - [sym_binary_expression] = STATE(999), - [sym_assignment_expression] = STATE(999), - [sym_compound_assignment_expr] = STATE(999), - [sym_type_cast_expression] = STATE(999), - [sym_return_expression] = STATE(999), - [sym_call_expression] = STATE(999), - [sym_array_expression] = STATE(999), - [sym_parenthesized_expression] = STATE(999), - [sym_tuple_expression] = STATE(999), - [sym_unit_expression] = STATE(999), - [sym_struct_expression] = STATE(999), - [sym_if_expression] = STATE(999), - [sym_if_let_expression] = STATE(999), - [sym_match_expression] = STATE(999), - [sym_while_expression] = STATE(999), - [sym_while_let_expression] = STATE(999), - [sym_loop_expression] = STATE(999), - [sym_for_expression] = STATE(999), - [sym_closure_expression] = STATE(999), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(999), - [sym_continue_expression] = STATE(999), - [sym_index_expression] = STATE(999), - [sym_await_expression] = STATE(999), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(999), - [sym_async_block] = STATE(999), - [sym_block] = STATE(999), - [sym__literal] = STATE(999), - [sym_string_literal] = STATE(999), - [sym_boolean_literal] = STATE(999), - [sym_identifier] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [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), + [114] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1124), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(1124), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1124), + [sym_unary_expression] = STATE(1124), + [sym_try_expression] = STATE(1124), + [sym_reference_expression] = STATE(1124), + [sym_binary_expression] = STATE(1124), + [sym_assignment_expression] = STATE(1124), + [sym_compound_assignment_expr] = STATE(1124), + [sym_type_cast_expression] = STATE(1124), + [sym_return_expression] = STATE(1124), + [sym_call_expression] = STATE(1124), + [sym_array_expression] = STATE(1124), + [sym_parenthesized_expression] = STATE(1124), + [sym_tuple_expression] = STATE(1124), + [sym_unit_expression] = STATE(1124), + [sym_struct_expression] = STATE(1124), + [sym_if_expression] = STATE(1124), + [sym_if_let_expression] = STATE(1124), + [sym_match_expression] = STATE(1124), + [sym_while_expression] = STATE(1124), + [sym_while_let_expression] = STATE(1124), + [sym_loop_expression] = STATE(1124), + [sym_for_expression] = STATE(1124), + [sym_closure_expression] = STATE(1124), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1124), + [sym_continue_expression] = STATE(1124), + [sym_index_expression] = STATE(1124), + [sym_await_expression] = STATE(1124), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1124), + [sym_async_block] = STATE(1124), + [sym_block] = STATE(1124), + [sym__literal] = STATE(1124), + [sym_string_literal] = STATE(1124), + [sym_boolean_literal] = STATE(1124), + [sym_identifier] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [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), @@ -20233,9 +20877,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(833), + [sym_integer_literal] = ACTIONS(855), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(833), + [sym_char_literal] = ACTIONS(855), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -20243,54 +20887,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(833), + [sym_raw_string_literal] = ACTIONS(855), + [sym_float_literal] = ACTIONS(855), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1007), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1007), - [sym_macro_invocation] = STATE(1007), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1007), - [sym_unary_expression] = STATE(1007), - [sym_try_expression] = STATE(1007), - [sym_reference_expression] = STATE(1007), - [sym_binary_expression] = STATE(1007), - [sym_assignment_expression] = STATE(1007), - [sym_compound_assignment_expr] = STATE(1007), - [sym_type_cast_expression] = STATE(1007), - [sym_return_expression] = STATE(1007), - [sym_call_expression] = STATE(1007), - [sym_array_expression] = STATE(1007), - [sym_parenthesized_expression] = STATE(1007), - [sym_tuple_expression] = STATE(1007), - [sym_unit_expression] = STATE(1007), - [sym_struct_expression] = STATE(1007), - [sym_if_expression] = STATE(1007), - [sym_if_let_expression] = STATE(1007), - [sym_match_expression] = STATE(1007), - [sym_while_expression] = STATE(1007), - [sym_while_let_expression] = STATE(1007), - [sym_loop_expression] = STATE(1007), - [sym_for_expression] = STATE(1007), - [sym_closure_expression] = STATE(1007), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1007), - [sym_continue_expression] = STATE(1007), - [sym_index_expression] = STATE(1007), - [sym_await_expression] = STATE(1007), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1007), - [sym_async_block] = STATE(1007), - [sym_block] = STATE(1007), - [sym__literal] = STATE(1007), - [sym_string_literal] = STATE(1007), - [sym_boolean_literal] = STATE(1007), + [115] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1094), + [sym_macro_invocation] = STATE(1094), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1094), + [sym_unary_expression] = STATE(1094), + [sym_try_expression] = STATE(1094), + [sym_reference_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_assignment_expression] = STATE(1094), + [sym_compound_assignment_expr] = STATE(1094), + [sym_type_cast_expression] = STATE(1094), + [sym_return_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_array_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_tuple_expression] = STATE(1094), + [sym_unit_expression] = STATE(1094), + [sym_struct_expression] = STATE(1094), + [sym_if_expression] = STATE(1094), + [sym_if_let_expression] = STATE(1094), + [sym_match_expression] = STATE(1094), + [sym_while_expression] = STATE(1094), + [sym_while_let_expression] = STATE(1094), + [sym_loop_expression] = STATE(1094), + [sym_for_expression] = STATE(1094), + [sym_closure_expression] = STATE(1094), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1094), + [sym_continue_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_await_expression] = STATE(1094), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1094), + [sym_async_block] = STATE(1094), + [sym_block] = STATE(1094), + [sym__literal] = STATE(1094), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -20334,9 +20978,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(835), + [sym_integer_literal] = ACTIONS(857), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(835), + [sym_char_literal] = ACTIONS(857), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -20344,59 +20988,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(835), - [sym_float_literal] = ACTIONS(835), + [sym_raw_string_literal] = ACTIONS(857), + [sym_float_literal] = ACTIONS(857), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1119), - [sym_macro_invocation] = STATE(1119), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1119), - [sym_unary_expression] = STATE(1119), - [sym_try_expression] = STATE(1119), - [sym_reference_expression] = STATE(1119), - [sym_binary_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1119), - [sym_compound_assignment_expr] = STATE(1119), - [sym_type_cast_expression] = STATE(1119), - [sym_return_expression] = STATE(1119), - [sym_call_expression] = STATE(1119), - [sym_array_expression] = STATE(1119), - [sym_parenthesized_expression] = STATE(1119), - [sym_tuple_expression] = STATE(1119), - [sym_unit_expression] = STATE(1119), - [sym_struct_expression] = STATE(1119), - [sym_if_expression] = STATE(1119), - [sym_if_let_expression] = STATE(1119), - [sym_match_expression] = STATE(1119), - [sym_while_expression] = STATE(1119), - [sym_while_let_expression] = STATE(1119), - [sym_loop_expression] = STATE(1119), - [sym_for_expression] = STATE(1119), - [sym_closure_expression] = STATE(1119), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1119), - [sym_continue_expression] = STATE(1119), - [sym_index_expression] = STATE(1119), - [sym_await_expression] = STATE(1119), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1119), - [sym_async_block] = STATE(1119), - [sym_block] = STATE(1119), - [sym__literal] = STATE(1119), - [sym_string_literal] = STATE(1119), - [sym_boolean_literal] = STATE(1119), + [116] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1095), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1095), + [sym_macro_invocation] = STATE(1095), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1095), + [sym_unary_expression] = STATE(1095), + [sym_try_expression] = STATE(1095), + [sym_reference_expression] = STATE(1095), + [sym_binary_expression] = STATE(1095), + [sym_assignment_expression] = STATE(1095), + [sym_compound_assignment_expr] = STATE(1095), + [sym_type_cast_expression] = STATE(1095), + [sym_return_expression] = STATE(1095), + [sym_call_expression] = STATE(1095), + [sym_array_expression] = STATE(1095), + [sym_parenthesized_expression] = STATE(1095), + [sym_tuple_expression] = STATE(1095), + [sym_unit_expression] = STATE(1095), + [sym_struct_expression] = STATE(1095), + [sym_if_expression] = STATE(1095), + [sym_if_let_expression] = STATE(1095), + [sym_match_expression] = STATE(1095), + [sym_while_expression] = STATE(1095), + [sym_while_let_expression] = STATE(1095), + [sym_loop_expression] = STATE(1095), + [sym_for_expression] = STATE(1095), + [sym_closure_expression] = STATE(1095), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1095), + [sym_continue_expression] = STATE(1095), + [sym_index_expression] = STATE(1095), + [sym_await_expression] = STATE(1095), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1095), + [sym_async_block] = STATE(1095), + [sym_block] = STATE(1095), + [sym__literal] = STATE(1095), + [sym_string_literal] = STATE(1095), + [sym_boolean_literal] = STATE(1095), + [sym_identifier] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [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(301), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [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_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(859), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(859), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(859), + [sym_float_literal] = ACTIONS(859), + [sym_block_comment] = ACTIONS(3), + }, + [117] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1147), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(1147), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1147), + [sym_unary_expression] = STATE(1147), + [sym_try_expression] = STATE(1147), + [sym_reference_expression] = STATE(1147), + [sym_binary_expression] = STATE(1147), + [sym_assignment_expression] = STATE(1147), + [sym_compound_assignment_expr] = STATE(1147), + [sym_type_cast_expression] = STATE(1147), + [sym_return_expression] = STATE(1147), + [sym_call_expression] = STATE(1147), + [sym_array_expression] = STATE(1147), + [sym_parenthesized_expression] = STATE(1147), + [sym_tuple_expression] = STATE(1147), + [sym_unit_expression] = STATE(1147), + [sym_struct_expression] = STATE(1147), + [sym_if_expression] = STATE(1147), + [sym_if_let_expression] = STATE(1147), + [sym_match_expression] = STATE(1147), + [sym_while_expression] = STATE(1147), + [sym_while_let_expression] = STATE(1147), + [sym_loop_expression] = STATE(1147), + [sym_for_expression] = STATE(1147), + [sym_closure_expression] = STATE(1147), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1147), + [sym_continue_expression] = STATE(1147), + [sym_index_expression] = STATE(1147), + [sym_await_expression] = STATE(1147), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1147), + [sym_async_block] = STATE(1147), + [sym_block] = STATE(1147), + [sym__literal] = STATE(1147), + [sym_string_literal] = STATE(1147), + [sym_boolean_literal] = STATE(1147), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -20427,17 +21172,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(837), + [sym_integer_literal] = ACTIONS(861), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(837), + [sym_char_literal] = ACTIONS(861), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -20445,155 +21190,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(837), + [sym_raw_string_literal] = ACTIONS(861), + [sym_float_literal] = ACTIONS(861), [sym_block_comment] = ACTIONS(3), }, - [111] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1012), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1012), - [sym_macro_invocation] = STATE(1012), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1012), - [sym_unary_expression] = STATE(1012), - [sym_try_expression] = STATE(1012), - [sym_reference_expression] = STATE(1012), - [sym_binary_expression] = STATE(1012), - [sym_assignment_expression] = STATE(1012), - [sym_compound_assignment_expr] = STATE(1012), - [sym_type_cast_expression] = STATE(1012), - [sym_return_expression] = STATE(1012), - [sym_call_expression] = STATE(1012), - [sym_array_expression] = STATE(1012), - [sym_parenthesized_expression] = STATE(1012), - [sym_tuple_expression] = STATE(1012), - [sym_unit_expression] = STATE(1012), - [sym_struct_expression] = STATE(1012), - [sym_if_expression] = STATE(1012), - [sym_if_let_expression] = STATE(1012), - [sym_match_expression] = STATE(1012), - [sym_while_expression] = STATE(1012), - [sym_while_let_expression] = STATE(1012), - [sym_loop_expression] = STATE(1012), - [sym_for_expression] = STATE(1012), - [sym_closure_expression] = STATE(1012), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1012), - [sym_continue_expression] = STATE(1012), - [sym_index_expression] = STATE(1012), - [sym_await_expression] = STATE(1012), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1012), - [sym_async_block] = STATE(1012), - [sym_block] = STATE(1012), - [sym__literal] = STATE(1012), - [sym_string_literal] = STATE(1012), - [sym_boolean_literal] = STATE(1012), - [sym_identifier] = ACTIONS(291), + [118] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1128), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1128), + [sym_macro_invocation] = STATE(1128), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1128), + [sym_unary_expression] = STATE(1128), + [sym_try_expression] = STATE(1128), + [sym_reference_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1128), + [sym_compound_assignment_expr] = STATE(1128), + [sym_type_cast_expression] = STATE(1128), + [sym_return_expression] = STATE(1128), + [sym_call_expression] = STATE(1128), + [sym_array_expression] = STATE(1128), + [sym_parenthesized_expression] = STATE(1128), + [sym_tuple_expression] = STATE(1128), + [sym_unit_expression] = STATE(1128), + [sym_struct_expression] = STATE(1128), + [sym_if_expression] = STATE(1128), + [sym_if_let_expression] = STATE(1128), + [sym_match_expression] = STATE(1128), + [sym_while_expression] = STATE(1128), + [sym_while_let_expression] = STATE(1128), + [sym_loop_expression] = STATE(1128), + [sym_for_expression] = STATE(1128), + [sym_closure_expression] = STATE(1128), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1128), + [sym_continue_expression] = STATE(1128), + [sym_index_expression] = STATE(1128), + [sym_await_expression] = STATE(1128), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1128), + [sym_async_block] = STATE(1128), + [sym_block] = STATE(1128), + [sym__literal] = STATE(1128), + [sym_string_literal] = STATE(1128), + [sym_boolean_literal] = STATE(1128), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(839), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(863), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(839), + [sym_char_literal] = ACTIONS(863), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(839), - [sym_float_literal] = ACTIONS(839), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(863), + [sym_float_literal] = ACTIONS(863), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1013), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1013), - [sym_macro_invocation] = STATE(1013), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1013), - [sym_unary_expression] = STATE(1013), - [sym_try_expression] = STATE(1013), - [sym_reference_expression] = STATE(1013), - [sym_binary_expression] = STATE(1013), - [sym_assignment_expression] = STATE(1013), - [sym_compound_assignment_expr] = STATE(1013), - [sym_type_cast_expression] = STATE(1013), - [sym_return_expression] = STATE(1013), - [sym_call_expression] = STATE(1013), - [sym_array_expression] = STATE(1013), - [sym_parenthesized_expression] = STATE(1013), - [sym_tuple_expression] = STATE(1013), - [sym_unit_expression] = STATE(1013), - [sym_struct_expression] = STATE(1013), - [sym_if_expression] = STATE(1013), - [sym_if_let_expression] = STATE(1013), - [sym_match_expression] = STATE(1013), - [sym_while_expression] = STATE(1013), - [sym_while_let_expression] = STATE(1013), - [sym_loop_expression] = STATE(1013), - [sym_for_expression] = STATE(1013), - [sym_closure_expression] = STATE(1013), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1013), - [sym_continue_expression] = STATE(1013), - [sym_index_expression] = STATE(1013), - [sym_await_expression] = STATE(1013), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1013), - [sym_async_block] = STATE(1013), - [sym_block] = STATE(1013), - [sym__literal] = STATE(1013), - [sym_string_literal] = STATE(1013), - [sym_boolean_literal] = STATE(1013), + [119] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1149), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1149), + [sym_macro_invocation] = STATE(1149), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1149), + [sym_unary_expression] = STATE(1149), + [sym_try_expression] = STATE(1149), + [sym_reference_expression] = STATE(1149), + [sym_binary_expression] = STATE(1149), + [sym_assignment_expression] = STATE(1149), + [sym_compound_assignment_expr] = STATE(1149), + [sym_type_cast_expression] = STATE(1149), + [sym_return_expression] = STATE(1149), + [sym_call_expression] = STATE(1149), + [sym_array_expression] = STATE(1149), + [sym_parenthesized_expression] = STATE(1149), + [sym_tuple_expression] = STATE(1149), + [sym_unit_expression] = STATE(1149), + [sym_struct_expression] = STATE(1149), + [sym_if_expression] = STATE(1149), + [sym_if_let_expression] = STATE(1149), + [sym_match_expression] = STATE(1149), + [sym_while_expression] = STATE(1149), + [sym_while_let_expression] = STATE(1149), + [sym_loop_expression] = STATE(1149), + [sym_for_expression] = STATE(1149), + [sym_closure_expression] = STATE(1149), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1149), + [sym_continue_expression] = STATE(1149), + [sym_index_expression] = STATE(1149), + [sym_await_expression] = STATE(1149), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1149), + [sym_async_block] = STATE(1149), + [sym_block] = STATE(1149), + [sym__literal] = STATE(1149), + [sym_string_literal] = STATE(1149), + [sym_boolean_literal] = STATE(1149), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -20637,9 +21382,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(841), + [sym_integer_literal] = ACTIONS(865), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(841), + [sym_char_literal] = ACTIONS(865), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -20647,54 +21392,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(841), + [sym_raw_string_literal] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(963), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(963), - [sym_macro_invocation] = STATE(963), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(963), - [sym_unary_expression] = STATE(963), - [sym_try_expression] = STATE(963), - [sym_reference_expression] = STATE(963), - [sym_binary_expression] = STATE(963), - [sym_assignment_expression] = STATE(963), - [sym_compound_assignment_expr] = STATE(963), - [sym_type_cast_expression] = STATE(963), - [sym_return_expression] = STATE(963), - [sym_call_expression] = STATE(963), - [sym_array_expression] = STATE(963), - [sym_parenthesized_expression] = STATE(963), - [sym_tuple_expression] = STATE(963), - [sym_unit_expression] = STATE(963), - [sym_struct_expression] = STATE(963), - [sym_if_expression] = STATE(963), - [sym_if_let_expression] = STATE(963), - [sym_match_expression] = STATE(963), - [sym_while_expression] = STATE(963), - [sym_while_let_expression] = STATE(963), - [sym_loop_expression] = STATE(963), - [sym_for_expression] = STATE(963), - [sym_closure_expression] = STATE(963), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(963), - [sym_continue_expression] = STATE(963), - [sym_index_expression] = STATE(963), - [sym_await_expression] = STATE(963), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(963), - [sym_async_block] = STATE(963), - [sym_block] = STATE(963), - [sym__literal] = STATE(963), - [sym_string_literal] = STATE(963), - [sym_boolean_literal] = STATE(963), + [120] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1155), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(1155), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1155), + [sym_unary_expression] = STATE(1155), + [sym_try_expression] = STATE(1155), + [sym_reference_expression] = STATE(1155), + [sym_binary_expression] = STATE(1155), + [sym_assignment_expression] = STATE(1155), + [sym_compound_assignment_expr] = STATE(1155), + [sym_type_cast_expression] = STATE(1155), + [sym_return_expression] = STATE(1155), + [sym_call_expression] = STATE(1155), + [sym_array_expression] = STATE(1155), + [sym_parenthesized_expression] = STATE(1155), + [sym_tuple_expression] = STATE(1155), + [sym_unit_expression] = STATE(1155), + [sym_struct_expression] = STATE(1155), + [sym_if_expression] = STATE(1155), + [sym_if_let_expression] = STATE(1155), + [sym_match_expression] = STATE(1155), + [sym_while_expression] = STATE(1155), + [sym_while_let_expression] = STATE(1155), + [sym_loop_expression] = STATE(1155), + [sym_for_expression] = STATE(1155), + [sym_closure_expression] = STATE(1155), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1155), + [sym_continue_expression] = STATE(1155), + [sym_index_expression] = STATE(1155), + [sym_await_expression] = STATE(1155), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1155), + [sym_async_block] = STATE(1155), + [sym_block] = STATE(1155), + [sym__literal] = STATE(1155), + [sym_string_literal] = STATE(1155), + [sym_boolean_literal] = STATE(1155), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -20738,9 +21483,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(843), + [sym_integer_literal] = ACTIONS(867), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(843), + [sym_char_literal] = ACTIONS(867), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -20748,256 +21493,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(843), - [sym_float_literal] = ACTIONS(843), + [sym_raw_string_literal] = ACTIONS(867), + [sym_float_literal] = ACTIONS(867), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1016), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1016), - [sym_macro_invocation] = STATE(1016), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1016), - [sym_unary_expression] = STATE(1016), - [sym_try_expression] = STATE(1016), - [sym_reference_expression] = STATE(1016), - [sym_binary_expression] = STATE(1016), - [sym_assignment_expression] = STATE(1016), - [sym_compound_assignment_expr] = STATE(1016), - [sym_type_cast_expression] = STATE(1016), - [sym_return_expression] = STATE(1016), - [sym_call_expression] = STATE(1016), - [sym_array_expression] = STATE(1016), - [sym_parenthesized_expression] = STATE(1016), - [sym_tuple_expression] = STATE(1016), - [sym_unit_expression] = STATE(1016), - [sym_struct_expression] = STATE(1016), - [sym_if_expression] = STATE(1016), - [sym_if_let_expression] = STATE(1016), - [sym_match_expression] = STATE(1016), - [sym_while_expression] = STATE(1016), - [sym_while_let_expression] = STATE(1016), - [sym_loop_expression] = STATE(1016), - [sym_for_expression] = STATE(1016), - [sym_closure_expression] = STATE(1016), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1016), - [sym_continue_expression] = STATE(1016), - [sym_index_expression] = STATE(1016), - [sym_await_expression] = STATE(1016), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1016), - [sym_async_block] = STATE(1016), - [sym_block] = STATE(1016), - [sym__literal] = STATE(1016), - [sym_string_literal] = STATE(1016), - [sym_boolean_literal] = STATE(1016), - [sym_identifier] = ACTIONS(291), + [121] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1148), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(1148), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1148), + [sym_unary_expression] = STATE(1148), + [sym_try_expression] = STATE(1148), + [sym_reference_expression] = STATE(1148), + [sym_binary_expression] = STATE(1148), + [sym_assignment_expression] = STATE(1148), + [sym_compound_assignment_expr] = STATE(1148), + [sym_type_cast_expression] = STATE(1148), + [sym_return_expression] = STATE(1148), + [sym_call_expression] = STATE(1148), + [sym_array_expression] = STATE(1148), + [sym_parenthesized_expression] = STATE(1148), + [sym_tuple_expression] = STATE(1148), + [sym_unit_expression] = STATE(1148), + [sym_struct_expression] = STATE(1148), + [sym_if_expression] = STATE(1148), + [sym_if_let_expression] = STATE(1148), + [sym_match_expression] = STATE(1148), + [sym_while_expression] = STATE(1148), + [sym_while_let_expression] = STATE(1148), + [sym_loop_expression] = STATE(1148), + [sym_for_expression] = STATE(1148), + [sym_closure_expression] = STATE(1148), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1148), + [sym_continue_expression] = STATE(1148), + [sym_index_expression] = STATE(1148), + [sym_await_expression] = STATE(1148), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1148), + [sym_async_block] = STATE(1148), + [sym_block] = STATE(1148), + [sym__literal] = STATE(1148), + [sym_string_literal] = STATE(1148), + [sym_boolean_literal] = STATE(1148), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(845), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(869), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(845), + [sym_char_literal] = ACTIONS(869), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(845), - [sym_float_literal] = ACTIONS(845), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(869), + [sym_float_literal] = ACTIONS(869), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1087), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1087), - [sym_macro_invocation] = STATE(1087), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1087), - [sym_unary_expression] = STATE(1087), - [sym_try_expression] = STATE(1087), - [sym_reference_expression] = STATE(1087), - [sym_binary_expression] = STATE(1087), - [sym_assignment_expression] = STATE(1087), - [sym_compound_assignment_expr] = STATE(1087), - [sym_type_cast_expression] = STATE(1087), - [sym_return_expression] = STATE(1087), - [sym_call_expression] = STATE(1087), - [sym_array_expression] = STATE(1087), - [sym_parenthesized_expression] = STATE(1087), - [sym_tuple_expression] = STATE(1087), - [sym_unit_expression] = STATE(1087), - [sym_struct_expression] = STATE(1087), - [sym_if_expression] = STATE(1087), - [sym_if_let_expression] = STATE(1087), - [sym_match_expression] = STATE(1087), - [sym_while_expression] = STATE(1087), - [sym_while_let_expression] = STATE(1087), - [sym_loop_expression] = STATE(1087), - [sym_for_expression] = STATE(1087), - [sym_closure_expression] = STATE(1087), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1087), - [sym_continue_expression] = STATE(1087), - [sym_index_expression] = STATE(1087), - [sym_await_expression] = STATE(1087), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1087), - [sym_async_block] = STATE(1087), - [sym_block] = STATE(1087), - [sym__literal] = STATE(1087), - [sym_string_literal] = STATE(1087), - [sym_boolean_literal] = STATE(1087), - [sym_identifier] = ACTIONS(291), + [122] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1105), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(1105), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1105), + [sym_unary_expression] = STATE(1105), + [sym_try_expression] = STATE(1105), + [sym_reference_expression] = STATE(1105), + [sym_binary_expression] = STATE(1105), + [sym_assignment_expression] = STATE(1105), + [sym_compound_assignment_expr] = STATE(1105), + [sym_type_cast_expression] = STATE(1105), + [sym_return_expression] = STATE(1105), + [sym_call_expression] = STATE(1105), + [sym_array_expression] = STATE(1105), + [sym_parenthesized_expression] = STATE(1105), + [sym_tuple_expression] = STATE(1105), + [sym_unit_expression] = STATE(1105), + [sym_struct_expression] = STATE(1105), + [sym_if_expression] = STATE(1105), + [sym_if_let_expression] = STATE(1105), + [sym_match_expression] = STATE(1105), + [sym_while_expression] = STATE(1105), + [sym_while_let_expression] = STATE(1105), + [sym_loop_expression] = STATE(1105), + [sym_for_expression] = STATE(1105), + [sym_closure_expression] = STATE(1105), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1105), + [sym_continue_expression] = STATE(1105), + [sym_index_expression] = STATE(1105), + [sym_await_expression] = STATE(1105), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1105), + [sym_async_block] = STATE(1105), + [sym_block] = STATE(1105), + [sym__literal] = STATE(1105), + [sym_string_literal] = STATE(1105), + [sym_boolean_literal] = STATE(1105), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(679), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(871), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(679), + [sym_char_literal] = ACTIONS(871), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(679), - [sym_float_literal] = ACTIONS(679), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(871), + [sym_float_literal] = ACTIONS(871), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1017), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1017), - [sym_macro_invocation] = STATE(1017), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1017), - [sym_unary_expression] = STATE(1017), - [sym_try_expression] = STATE(1017), - [sym_reference_expression] = STATE(1017), - [sym_binary_expression] = STATE(1017), - [sym_assignment_expression] = STATE(1017), - [sym_compound_assignment_expr] = STATE(1017), - [sym_type_cast_expression] = STATE(1017), - [sym_return_expression] = STATE(1017), - [sym_call_expression] = STATE(1017), - [sym_array_expression] = STATE(1017), - [sym_parenthesized_expression] = STATE(1017), - [sym_tuple_expression] = STATE(1017), - [sym_unit_expression] = STATE(1017), - [sym_struct_expression] = STATE(1017), - [sym_if_expression] = STATE(1017), - [sym_if_let_expression] = STATE(1017), - [sym_match_expression] = STATE(1017), - [sym_while_expression] = STATE(1017), - [sym_while_let_expression] = STATE(1017), - [sym_loop_expression] = STATE(1017), - [sym_for_expression] = STATE(1017), - [sym_closure_expression] = STATE(1017), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1017), - [sym_continue_expression] = STATE(1017), - [sym_index_expression] = STATE(1017), - [sym_await_expression] = STATE(1017), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1017), - [sym_async_block] = STATE(1017), - [sym_block] = STATE(1017), - [sym__literal] = STATE(1017), - [sym_string_literal] = STATE(1017), - [sym_boolean_literal] = STATE(1017), + [123] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1188), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1188), + [sym_macro_invocation] = STATE(1188), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1188), + [sym_unary_expression] = STATE(1188), + [sym_try_expression] = STATE(1188), + [sym_reference_expression] = STATE(1188), + [sym_binary_expression] = STATE(1188), + [sym_assignment_expression] = STATE(1188), + [sym_compound_assignment_expr] = STATE(1188), + [sym_type_cast_expression] = STATE(1188), + [sym_return_expression] = STATE(1188), + [sym_call_expression] = STATE(1188), + [sym_array_expression] = STATE(1188), + [sym_parenthesized_expression] = STATE(1188), + [sym_tuple_expression] = STATE(1188), + [sym_unit_expression] = STATE(1188), + [sym_struct_expression] = STATE(1188), + [sym_if_expression] = STATE(1188), + [sym_if_let_expression] = STATE(1188), + [sym_match_expression] = STATE(1188), + [sym_while_expression] = STATE(1188), + [sym_while_let_expression] = STATE(1188), + [sym_loop_expression] = STATE(1188), + [sym_for_expression] = STATE(1188), + [sym_closure_expression] = STATE(1188), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1188), + [sym_continue_expression] = STATE(1188), + [sym_index_expression] = STATE(1188), + [sym_await_expression] = STATE(1188), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1188), + [sym_async_block] = STATE(1188), + [sym_block] = STATE(1188), + [sym__literal] = STATE(1188), + [sym_string_literal] = STATE(1188), + [sym_boolean_literal] = STATE(1188), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -21041,9 +21786,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(353), + [sym_integer_literal] = ACTIONS(873), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(353), + [sym_char_literal] = ACTIONS(873), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -21051,357 +21796,357 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(353), - [sym_float_literal] = ACTIONS(353), + [sym_raw_string_literal] = ACTIONS(873), + [sym_float_literal] = ACTIONS(873), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1144), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(1144), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1144), - [sym_unary_expression] = STATE(1144), - [sym_try_expression] = STATE(1144), - [sym_reference_expression] = STATE(1144), - [sym_binary_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1144), - [sym_compound_assignment_expr] = STATE(1144), - [sym_type_cast_expression] = STATE(1144), - [sym_return_expression] = STATE(1144), - [sym_call_expression] = STATE(1144), - [sym_array_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1144), - [sym_unit_expression] = STATE(1144), - [sym_struct_expression] = STATE(1144), - [sym_if_expression] = STATE(1144), - [sym_if_let_expression] = STATE(1144), - [sym_match_expression] = STATE(1144), - [sym_while_expression] = STATE(1144), - [sym_while_let_expression] = STATE(1144), - [sym_loop_expression] = STATE(1144), - [sym_for_expression] = STATE(1144), - [sym_closure_expression] = STATE(1144), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1144), - [sym_continue_expression] = STATE(1144), - [sym_index_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1144), - [sym_async_block] = STATE(1144), - [sym_block] = STATE(1144), - [sym__literal] = STATE(1144), - [sym_string_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym_identifier] = ACTIONS(291), + [124] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1088), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1088), + [sym_macro_invocation] = STATE(1088), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1088), + [sym_unary_expression] = STATE(1088), + [sym_try_expression] = STATE(1088), + [sym_reference_expression] = STATE(1088), + [sym_binary_expression] = STATE(1088), + [sym_assignment_expression] = STATE(1088), + [sym_compound_assignment_expr] = STATE(1088), + [sym_type_cast_expression] = STATE(1088), + [sym_return_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_array_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_tuple_expression] = STATE(1088), + [sym_unit_expression] = STATE(1088), + [sym_struct_expression] = STATE(1088), + [sym_if_expression] = STATE(1088), + [sym_if_let_expression] = STATE(1088), + [sym_match_expression] = STATE(1088), + [sym_while_expression] = STATE(1088), + [sym_while_let_expression] = STATE(1088), + [sym_loop_expression] = STATE(1088), + [sym_for_expression] = STATE(1088), + [sym_closure_expression] = STATE(1088), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1088), + [sym_continue_expression] = STATE(1088), + [sym_index_expression] = STATE(1088), + [sym_await_expression] = STATE(1088), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1088), + [sym_async_block] = STATE(1088), + [sym_block] = STATE(1088), + [sym__literal] = STATE(1088), + [sym_string_literal] = STATE(1088), + [sym_boolean_literal] = STATE(1088), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(847), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(875), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(847), + [sym_char_literal] = ACTIONS(875), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(847), - [sym_float_literal] = ACTIONS(847), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(875), + [sym_float_literal] = ACTIONS(875), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1018), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1018), - [sym_macro_invocation] = STATE(1018), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1018), - [sym_unary_expression] = STATE(1018), - [sym_try_expression] = STATE(1018), - [sym_reference_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_assignment_expression] = STATE(1018), - [sym_compound_assignment_expr] = STATE(1018), - [sym_type_cast_expression] = STATE(1018), - [sym_return_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_array_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_tuple_expression] = STATE(1018), - [sym_unit_expression] = STATE(1018), - [sym_struct_expression] = STATE(1018), - [sym_if_expression] = STATE(1018), - [sym_if_let_expression] = STATE(1018), - [sym_match_expression] = STATE(1018), - [sym_while_expression] = STATE(1018), - [sym_while_let_expression] = STATE(1018), - [sym_loop_expression] = STATE(1018), - [sym_for_expression] = STATE(1018), - [sym_closure_expression] = STATE(1018), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1018), - [sym_continue_expression] = STATE(1018), - [sym_index_expression] = STATE(1018), - [sym_await_expression] = STATE(1018), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1018), - [sym_async_block] = STATE(1018), - [sym_block] = STATE(1018), - [sym__literal] = STATE(1018), - [sym_string_literal] = STATE(1018), - [sym_boolean_literal] = STATE(1018), - [sym_identifier] = ACTIONS(291), + [125] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1098), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(1098), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1098), + [sym_unary_expression] = STATE(1098), + [sym_try_expression] = STATE(1098), + [sym_reference_expression] = STATE(1098), + [sym_binary_expression] = STATE(1098), + [sym_assignment_expression] = STATE(1098), + [sym_compound_assignment_expr] = STATE(1098), + [sym_type_cast_expression] = STATE(1098), + [sym_return_expression] = STATE(1098), + [sym_call_expression] = STATE(1098), + [sym_array_expression] = STATE(1098), + [sym_parenthesized_expression] = STATE(1098), + [sym_tuple_expression] = STATE(1098), + [sym_unit_expression] = STATE(1098), + [sym_struct_expression] = STATE(1098), + [sym_if_expression] = STATE(1098), + [sym_if_let_expression] = STATE(1098), + [sym_match_expression] = STATE(1098), + [sym_while_expression] = STATE(1098), + [sym_while_let_expression] = STATE(1098), + [sym_loop_expression] = STATE(1098), + [sym_for_expression] = STATE(1098), + [sym_closure_expression] = STATE(1098), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1098), + [sym_continue_expression] = STATE(1098), + [sym_index_expression] = STATE(1098), + [sym_await_expression] = STATE(1098), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1098), + [sym_async_block] = STATE(1098), + [sym_block] = STATE(1098), + [sym__literal] = STATE(1098), + [sym_string_literal] = STATE(1098), + [sym_boolean_literal] = STATE(1098), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(849), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(877), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(849), + [sym_char_literal] = ACTIONS(877), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(849), - [sym_float_literal] = ACTIONS(849), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(877), + [sym_float_literal] = ACTIONS(877), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1019), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1019), - [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_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_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1019), - [sym_boolean_literal] = STATE(1019), - [sym_identifier] = ACTIONS(291), + [126] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(824), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(824), + [sym_macro_invocation] = STATE(824), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(824), + [sym_unary_expression] = STATE(824), + [sym_try_expression] = STATE(824), + [sym_reference_expression] = STATE(824), + [sym_binary_expression] = STATE(824), + [sym_assignment_expression] = STATE(824), + [sym_compound_assignment_expr] = STATE(824), + [sym_type_cast_expression] = STATE(824), + [sym_return_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_array_expression] = STATE(824), + [sym_parenthesized_expression] = STATE(824), + [sym_tuple_expression] = STATE(824), + [sym_unit_expression] = STATE(824), + [sym_struct_expression] = STATE(824), + [sym_if_expression] = STATE(824), + [sym_if_let_expression] = STATE(824), + [sym_match_expression] = STATE(824), + [sym_while_expression] = STATE(824), + [sym_while_let_expression] = STATE(824), + [sym_loop_expression] = STATE(824), + [sym_for_expression] = STATE(824), + [sym_closure_expression] = STATE(824), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(824), + [sym_continue_expression] = STATE(824), + [sym_index_expression] = STATE(824), + [sym_await_expression] = STATE(824), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(824), + [sym_async_block] = STATE(824), + [sym_block] = STATE(824), + [sym__literal] = STATE(824), + [sym_string_literal] = STATE(824), + [sym_boolean_literal] = STATE(824), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(851), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(849), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(851), + [sym_char_literal] = ACTIONS(849), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(851), - [sym_float_literal] = ACTIONS(851), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(849), + [sym_float_literal] = ACTIONS(849), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1204), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(1204), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1204), - [sym_unary_expression] = STATE(1204), - [sym_try_expression] = STATE(1204), - [sym_reference_expression] = STATE(1204), - [sym_binary_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1204), - [sym_compound_assignment_expr] = STATE(1204), - [sym_type_cast_expression] = STATE(1204), - [sym_return_expression] = STATE(1204), - [sym_call_expression] = STATE(1204), - [sym_array_expression] = STATE(1204), - [sym_parenthesized_expression] = STATE(1204), - [sym_tuple_expression] = STATE(1204), - [sym_unit_expression] = STATE(1204), - [sym_struct_expression] = STATE(1204), - [sym_if_expression] = STATE(1204), - [sym_if_let_expression] = STATE(1204), - [sym_match_expression] = STATE(1204), - [sym_while_expression] = STATE(1204), - [sym_while_let_expression] = STATE(1204), - [sym_loop_expression] = STATE(1204), - [sym_for_expression] = STATE(1204), - [sym_closure_expression] = STATE(1204), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1204), - [sym_continue_expression] = STATE(1204), - [sym_index_expression] = STATE(1204), - [sym_await_expression] = STATE(1204), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1204), - [sym_async_block] = STATE(1204), - [sym_block] = STATE(1204), - [sym__literal] = STATE(1204), - [sym_string_literal] = STATE(1204), - [sym_boolean_literal] = STATE(1204), + [127] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1190), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1190), + [sym_macro_invocation] = STATE(1190), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1190), + [sym_unary_expression] = STATE(1190), + [sym_try_expression] = STATE(1190), + [sym_reference_expression] = STATE(1190), + [sym_binary_expression] = STATE(1190), + [sym_assignment_expression] = STATE(1190), + [sym_compound_assignment_expr] = STATE(1190), + [sym_type_cast_expression] = STATE(1190), + [sym_return_expression] = STATE(1190), + [sym_call_expression] = STATE(1190), + [sym_array_expression] = STATE(1190), + [sym_parenthesized_expression] = STATE(1190), + [sym_tuple_expression] = STATE(1190), + [sym_unit_expression] = STATE(1190), + [sym_struct_expression] = STATE(1190), + [sym_if_expression] = STATE(1190), + [sym_if_let_expression] = STATE(1190), + [sym_match_expression] = STATE(1190), + [sym_while_expression] = STATE(1190), + [sym_while_let_expression] = STATE(1190), + [sym_loop_expression] = STATE(1190), + [sym_for_expression] = STATE(1190), + [sym_closure_expression] = STATE(1190), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1190), + [sym_continue_expression] = STATE(1190), + [sym_index_expression] = STATE(1190), + [sym_await_expression] = STATE(1190), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1190), + [sym_async_block] = STATE(1190), + [sym_block] = STATE(1190), + [sym__literal] = STATE(1190), + [sym_string_literal] = STATE(1190), + [sym_boolean_literal] = STATE(1190), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -21445,9 +22190,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(853), + [sym_integer_literal] = ACTIONS(879), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(853), + [sym_char_literal] = ACTIONS(879), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -21455,54 +22200,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(853), - [sym_float_literal] = ACTIONS(853), + [sym_raw_string_literal] = ACTIONS(879), + [sym_float_literal] = ACTIONS(879), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1196), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1196), - [sym_macro_invocation] = STATE(1196), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1196), - [sym_unary_expression] = STATE(1196), - [sym_try_expression] = STATE(1196), - [sym_reference_expression] = STATE(1196), - [sym_binary_expression] = STATE(1196), - [sym_assignment_expression] = STATE(1196), - [sym_compound_assignment_expr] = STATE(1196), - [sym_type_cast_expression] = STATE(1196), - [sym_return_expression] = STATE(1196), - [sym_call_expression] = STATE(1196), - [sym_array_expression] = STATE(1196), - [sym_parenthesized_expression] = STATE(1196), - [sym_tuple_expression] = STATE(1196), - [sym_unit_expression] = STATE(1196), - [sym_struct_expression] = STATE(1196), - [sym_if_expression] = STATE(1196), - [sym_if_let_expression] = STATE(1196), - [sym_match_expression] = STATE(1196), - [sym_while_expression] = STATE(1196), - [sym_while_let_expression] = STATE(1196), - [sym_loop_expression] = STATE(1196), - [sym_for_expression] = STATE(1196), - [sym_closure_expression] = STATE(1196), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1196), - [sym_continue_expression] = STATE(1196), - [sym_index_expression] = STATE(1196), - [sym_await_expression] = STATE(1196), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1196), - [sym_async_block] = STATE(1196), - [sym_block] = STATE(1196), - [sym__literal] = STATE(1196), - [sym_string_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), + [128] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1189), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1189), + [sym_macro_invocation] = STATE(1189), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1189), + [sym_unary_expression] = STATE(1189), + [sym_try_expression] = STATE(1189), + [sym_reference_expression] = STATE(1189), + [sym_binary_expression] = STATE(1189), + [sym_assignment_expression] = STATE(1189), + [sym_compound_assignment_expr] = STATE(1189), + [sym_type_cast_expression] = STATE(1189), + [sym_return_expression] = STATE(1189), + [sym_call_expression] = STATE(1189), + [sym_array_expression] = STATE(1189), + [sym_parenthesized_expression] = STATE(1189), + [sym_tuple_expression] = STATE(1189), + [sym_unit_expression] = STATE(1189), + [sym_struct_expression] = STATE(1189), + [sym_if_expression] = STATE(1189), + [sym_if_let_expression] = STATE(1189), + [sym_match_expression] = STATE(1189), + [sym_while_expression] = STATE(1189), + [sym_while_let_expression] = STATE(1189), + [sym_loop_expression] = STATE(1189), + [sym_for_expression] = STATE(1189), + [sym_closure_expression] = STATE(1189), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1189), + [sym_continue_expression] = STATE(1189), + [sym_index_expression] = STATE(1189), + [sym_await_expression] = STATE(1189), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1189), + [sym_async_block] = STATE(1189), + [sym_block] = STATE(1189), + [sym__literal] = STATE(1189), + [sym_string_literal] = STATE(1189), + [sym_boolean_literal] = STATE(1189), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -21546,9 +22291,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(855), + [sym_integer_literal] = ACTIONS(881), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(855), + [sym_char_literal] = ACTIONS(881), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -21556,57 +22301,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(855), - [sym_float_literal] = ACTIONS(855), + [sym_raw_string_literal] = ACTIONS(881), + [sym_float_literal] = ACTIONS(881), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1197), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(1197), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1197), - [sym_unary_expression] = STATE(1197), - [sym_try_expression] = STATE(1197), - [sym_reference_expression] = STATE(1197), - [sym_binary_expression] = STATE(1197), - [sym_assignment_expression] = STATE(1197), - [sym_compound_assignment_expr] = STATE(1197), - [sym_type_cast_expression] = STATE(1197), - [sym_return_expression] = STATE(1197), - [sym_call_expression] = STATE(1197), - [sym_array_expression] = STATE(1197), - [sym_parenthesized_expression] = STATE(1197), - [sym_tuple_expression] = STATE(1197), - [sym_unit_expression] = STATE(1197), - [sym_struct_expression] = STATE(1197), - [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_closure_expression] = STATE(1197), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2384), - [sym_break_expression] = STATE(1197), - [sym_continue_expression] = STATE(1197), - [sym_index_expression] = STATE(1197), - [sym_await_expression] = STATE(1197), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(234), - [sym_async_block] = STATE(234), - [sym_block] = STATE(234), - [sym__literal] = STATE(1197), - [sym_string_literal] = STATE(1197), - [sym_boolean_literal] = STATE(1197), + [129] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1183), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1183), + [sym_macro_invocation] = STATE(1183), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1183), + [sym_unary_expression] = STATE(1183), + [sym_try_expression] = STATE(1183), + [sym_reference_expression] = STATE(1183), + [sym_binary_expression] = STATE(1183), + [sym_assignment_expression] = STATE(1183), + [sym_compound_assignment_expr] = STATE(1183), + [sym_type_cast_expression] = STATE(1183), + [sym_return_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_array_expression] = STATE(1183), + [sym_parenthesized_expression] = STATE(1183), + [sym_tuple_expression] = STATE(1183), + [sym_unit_expression] = STATE(1183), + [sym_struct_expression] = STATE(1183), + [sym_if_expression] = STATE(1183), + [sym_if_let_expression] = STATE(1183), + [sym_match_expression] = STATE(1183), + [sym_while_expression] = STATE(1183), + [sym_while_let_expression] = STATE(1183), + [sym_loop_expression] = STATE(1183), + [sym_for_expression] = STATE(1183), + [sym_closure_expression] = STATE(1183), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1183), + [sym_continue_expression] = STATE(1183), + [sym_index_expression] = STATE(1183), + [sym_await_expression] = STATE(1183), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1183), + [sym_async_block] = STATE(1183), + [sym_block] = STATE(1183), + [sym__literal] = STATE(1183), + [sym_string_literal] = STATE(1183), + [sym_boolean_literal] = STATE(1183), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -21627,18 +22372,18 @@ static 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(803), + [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(805), - [anon_sym_if] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(809), - [anon_sym_match] = ACTIONS(811), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_while] = ACTIONS(815), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -21647,9 +22392,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(857), + [sym_integer_literal] = ACTIONS(883), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(857), + [sym_char_literal] = ACTIONS(883), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -21657,57 +22402,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(857), - [sym_float_literal] = ACTIONS(857), + [sym_raw_string_literal] = ACTIONS(883), + [sym_float_literal] = ACTIONS(883), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1120), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(1120), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1120), - [sym_unary_expression] = STATE(1120), - [sym_try_expression] = STATE(1120), - [sym_reference_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_assignment_expression] = STATE(1120), - [sym_compound_assignment_expr] = STATE(1120), - [sym_type_cast_expression] = STATE(1120), - [sym_return_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_array_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_tuple_expression] = STATE(1120), - [sym_unit_expression] = STATE(1120), - [sym_struct_expression] = STATE(1120), - [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_closure_expression] = STATE(1120), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2384), - [sym_break_expression] = STATE(1120), - [sym_continue_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_await_expression] = STATE(1120), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(234), - [sym_async_block] = STATE(234), - [sym_block] = STATE(234), - [sym__literal] = STATE(1120), - [sym_string_literal] = STATE(1120), - [sym_boolean_literal] = STATE(1120), + [130] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1016), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1016), + [sym_macro_invocation] = STATE(1016), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1016), + [sym_unary_expression] = STATE(1016), + [sym_try_expression] = STATE(1016), + [sym_reference_expression] = STATE(1016), + [sym_binary_expression] = STATE(1016), + [sym_assignment_expression] = STATE(1016), + [sym_compound_assignment_expr] = STATE(1016), + [sym_type_cast_expression] = STATE(1016), + [sym_return_expression] = STATE(1016), + [sym_call_expression] = STATE(1016), + [sym_array_expression] = STATE(1016), + [sym_parenthesized_expression] = STATE(1016), + [sym_tuple_expression] = STATE(1016), + [sym_unit_expression] = STATE(1016), + [sym_struct_expression] = STATE(1016), + [sym_if_expression] = STATE(1016), + [sym_if_let_expression] = STATE(1016), + [sym_match_expression] = STATE(1016), + [sym_while_expression] = STATE(1016), + [sym_while_let_expression] = STATE(1016), + [sym_loop_expression] = STATE(1016), + [sym_for_expression] = STATE(1016), + [sym_closure_expression] = STATE(1016), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1016), + [sym_continue_expression] = STATE(1016), + [sym_index_expression] = STATE(1016), + [sym_await_expression] = STATE(1016), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1016), + [sym_async_block] = STATE(1016), + [sym_block] = STATE(1016), + [sym__literal] = STATE(1016), + [sym_string_literal] = STATE(1016), + [sym_boolean_literal] = STATE(1016), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -21728,18 +22473,18 @@ static 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(803), + [anon_sym_async] = ACTIONS(301), [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(805), - [anon_sym_if] = ACTIONS(807), - [anon_sym_loop] = ACTIONS(809), - [anon_sym_match] = ACTIONS(811), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_while] = ACTIONS(815), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -21748,9 +22493,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(859), + [sym_integer_literal] = ACTIONS(885), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(859), + [sym_char_literal] = ACTIONS(885), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -21758,54 +22503,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(859), - [sym_float_literal] = ACTIONS(859), + [sym_raw_string_literal] = ACTIONS(885), + [sym_float_literal] = ACTIONS(885), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1199), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(1199), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1199), - [sym_unary_expression] = STATE(1199), - [sym_try_expression] = STATE(1199), - [sym_reference_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_compound_assignment_expr] = STATE(1199), - [sym_type_cast_expression] = STATE(1199), - [sym_return_expression] = STATE(1199), - [sym_call_expression] = STATE(1199), - [sym_array_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1199), - [sym_tuple_expression] = STATE(1199), - [sym_unit_expression] = STATE(1199), - [sym_struct_expression] = STATE(1199), - [sym_if_expression] = STATE(1199), - [sym_if_let_expression] = STATE(1199), - [sym_match_expression] = STATE(1199), - [sym_while_expression] = STATE(1199), - [sym_while_let_expression] = STATE(1199), - [sym_loop_expression] = STATE(1199), - [sym_for_expression] = STATE(1199), - [sym_closure_expression] = STATE(1199), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1199), - [sym_continue_expression] = STATE(1199), - [sym_index_expression] = STATE(1199), - [sym_await_expression] = STATE(1199), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1199), - [sym_async_block] = STATE(1199), - [sym_block] = STATE(1199), - [sym__literal] = STATE(1199), - [sym_string_literal] = STATE(1199), - [sym_boolean_literal] = STATE(1199), + [131] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1175), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(1175), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1175), + [sym_unary_expression] = STATE(1175), + [sym_try_expression] = STATE(1175), + [sym_reference_expression] = STATE(1175), + [sym_binary_expression] = STATE(1175), + [sym_assignment_expression] = STATE(1175), + [sym_compound_assignment_expr] = STATE(1175), + [sym_type_cast_expression] = STATE(1175), + [sym_return_expression] = STATE(1175), + [sym_call_expression] = STATE(1175), + [sym_array_expression] = STATE(1175), + [sym_parenthesized_expression] = STATE(1175), + [sym_tuple_expression] = STATE(1175), + [sym_unit_expression] = STATE(1175), + [sym_struct_expression] = STATE(1175), + [sym_if_expression] = STATE(1175), + [sym_if_let_expression] = STATE(1175), + [sym_match_expression] = STATE(1175), + [sym_while_expression] = STATE(1175), + [sym_while_let_expression] = STATE(1175), + [sym_loop_expression] = STATE(1175), + [sym_for_expression] = STATE(1175), + [sym_closure_expression] = STATE(1175), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1175), + [sym_continue_expression] = STATE(1175), + [sym_index_expression] = STATE(1175), + [sym_await_expression] = STATE(1175), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1175), + [sym_async_block] = STATE(1175), + [sym_block] = STATE(1175), + [sym__literal] = STATE(1175), + [sym_string_literal] = STATE(1175), + [sym_boolean_literal] = STATE(1175), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -21849,9 +22594,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(861), + [sym_integer_literal] = ACTIONS(887), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(861), + [sym_char_literal] = ACTIONS(887), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -21859,54 +22604,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(861), - [sym_float_literal] = ACTIONS(861), + [sym_raw_string_literal] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1155), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(1155), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1155), - [sym_try_expression] = STATE(1155), - [sym_reference_expression] = STATE(1155), - [sym_binary_expression] = STATE(1155), - [sym_assignment_expression] = STATE(1155), - [sym_compound_assignment_expr] = STATE(1155), - [sym_type_cast_expression] = STATE(1155), - [sym_return_expression] = STATE(1155), - [sym_call_expression] = STATE(1155), - [sym_array_expression] = STATE(1155), - [sym_parenthesized_expression] = STATE(1155), - [sym_tuple_expression] = STATE(1155), - [sym_unit_expression] = STATE(1155), - [sym_struct_expression] = STATE(1155), - [sym_if_expression] = STATE(1155), - [sym_if_let_expression] = STATE(1155), - [sym_match_expression] = STATE(1155), - [sym_while_expression] = STATE(1155), - [sym_while_let_expression] = STATE(1155), - [sym_loop_expression] = STATE(1155), - [sym_for_expression] = STATE(1155), - [sym_closure_expression] = STATE(1155), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1155), - [sym_continue_expression] = STATE(1155), - [sym_index_expression] = STATE(1155), - [sym_await_expression] = STATE(1155), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1155), - [sym_async_block] = STATE(1155), - [sym_block] = STATE(1155), - [sym__literal] = STATE(1155), - [sym_string_literal] = STATE(1155), - [sym_boolean_literal] = STATE(1155), + [132] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1015), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1015), + [sym_macro_invocation] = STATE(1015), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1015), + [sym_unary_expression] = STATE(1015), + [sym_try_expression] = STATE(1015), + [sym_reference_expression] = STATE(1015), + [sym_binary_expression] = STATE(1015), + [sym_assignment_expression] = STATE(1015), + [sym_compound_assignment_expr] = STATE(1015), + [sym_type_cast_expression] = STATE(1015), + [sym_return_expression] = STATE(1015), + [sym_call_expression] = STATE(1015), + [sym_array_expression] = STATE(1015), + [sym_parenthesized_expression] = STATE(1015), + [sym_tuple_expression] = STATE(1015), + [sym_unit_expression] = STATE(1015), + [sym_struct_expression] = STATE(1015), + [sym_if_expression] = STATE(1015), + [sym_if_let_expression] = STATE(1015), + [sym_match_expression] = STATE(1015), + [sym_while_expression] = STATE(1015), + [sym_while_let_expression] = STATE(1015), + [sym_loop_expression] = STATE(1015), + [sym_for_expression] = STATE(1015), + [sym_closure_expression] = STATE(1015), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1015), + [sym_continue_expression] = STATE(1015), + [sym_index_expression] = STATE(1015), + [sym_await_expression] = STATE(1015), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1015), + [sym_async_block] = STATE(1015), + [sym_block] = STATE(1015), + [sym__literal] = STATE(1015), + [sym_string_literal] = STATE(1015), + [sym_boolean_literal] = STATE(1015), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -21950,9 +22695,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(889), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(863), + [sym_char_literal] = ACTIONS(889), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -21960,155 +22705,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(863), - [sym_float_literal] = ACTIONS(863), + [sym_raw_string_literal] = ACTIONS(889), + [sym_float_literal] = ACTIONS(889), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1212), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(1212), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1212), - [sym_unary_expression] = STATE(1212), - [sym_try_expression] = STATE(1212), - [sym_reference_expression] = STATE(1212), - [sym_binary_expression] = STATE(1212), - [sym_assignment_expression] = STATE(1212), - [sym_compound_assignment_expr] = STATE(1212), - [sym_type_cast_expression] = STATE(1212), - [sym_return_expression] = STATE(1212), - [sym_call_expression] = STATE(1212), - [sym_array_expression] = STATE(1212), - [sym_parenthesized_expression] = STATE(1212), - [sym_tuple_expression] = STATE(1212), - [sym_unit_expression] = STATE(1212), - [sym_struct_expression] = STATE(1212), - [sym_if_expression] = STATE(1212), - [sym_if_let_expression] = STATE(1212), - [sym_match_expression] = STATE(1212), - [sym_while_expression] = STATE(1212), - [sym_while_let_expression] = STATE(1212), - [sym_loop_expression] = STATE(1212), - [sym_for_expression] = STATE(1212), - [sym_closure_expression] = STATE(1212), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1212), - [sym_continue_expression] = STATE(1212), - [sym_index_expression] = STATE(1212), - [sym_await_expression] = STATE(1212), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1212), - [sym_async_block] = STATE(1212), - [sym_block] = STATE(1212), - [sym__literal] = STATE(1212), - [sym_string_literal] = STATE(1212), - [sym_boolean_literal] = STATE(1212), - [sym_identifier] = ACTIONS(291), + [133] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1135), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1135), + [sym_macro_invocation] = STATE(1135), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1135), + [sym_unary_expression] = STATE(1135), + [sym_try_expression] = STATE(1135), + [sym_reference_expression] = STATE(1135), + [sym_binary_expression] = STATE(1135), + [sym_assignment_expression] = STATE(1135), + [sym_compound_assignment_expr] = STATE(1135), + [sym_type_cast_expression] = STATE(1135), + [sym_return_expression] = STATE(1135), + [sym_call_expression] = STATE(1135), + [sym_array_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(1135), + [sym_tuple_expression] = STATE(1135), + [sym_unit_expression] = STATE(1135), + [sym_struct_expression] = STATE(1135), + [sym_if_expression] = STATE(1135), + [sym_if_let_expression] = STATE(1135), + [sym_match_expression] = STATE(1135), + [sym_while_expression] = STATE(1135), + [sym_while_let_expression] = STATE(1135), + [sym_loop_expression] = STATE(1135), + [sym_for_expression] = STATE(1135), + [sym_closure_expression] = STATE(1135), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1135), + [sym_continue_expression] = STATE(1135), + [sym_index_expression] = STATE(1135), + [sym_await_expression] = STATE(1135), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1135), + [sym_async_block] = STATE(1135), + [sym_block] = STATE(1135), + [sym__literal] = STATE(1135), + [sym_string_literal] = STATE(1135), + [sym_boolean_literal] = STATE(1135), + [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [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(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(359), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(361), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(751), [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(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(865), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(891), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(865), + [sym_char_literal] = ACTIONS(891), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(865), - [sym_float_literal] = ACTIONS(865), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(891), + [sym_float_literal] = ACTIONS(891), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1021), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1021), - [sym_macro_invocation] = STATE(1021), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1021), - [sym_unary_expression] = STATE(1021), - [sym_try_expression] = STATE(1021), - [sym_reference_expression] = STATE(1021), - [sym_binary_expression] = STATE(1021), - [sym_assignment_expression] = STATE(1021), - [sym_compound_assignment_expr] = STATE(1021), - [sym_type_cast_expression] = STATE(1021), - [sym_return_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_array_expression] = STATE(1021), - [sym_parenthesized_expression] = STATE(1021), - [sym_tuple_expression] = STATE(1021), - [sym_unit_expression] = STATE(1021), - [sym_struct_expression] = STATE(1021), - [sym_if_expression] = STATE(1021), - [sym_if_let_expression] = STATE(1021), - [sym_match_expression] = STATE(1021), - [sym_while_expression] = STATE(1021), - [sym_while_let_expression] = STATE(1021), - [sym_loop_expression] = STATE(1021), - [sym_for_expression] = STATE(1021), - [sym_closure_expression] = STATE(1021), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1021), - [sym_continue_expression] = STATE(1021), - [sym_index_expression] = STATE(1021), - [sym_await_expression] = STATE(1021), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1021), - [sym_async_block] = STATE(1021), - [sym_block] = STATE(1021), - [sym__literal] = STATE(1021), - [sym_string_literal] = STATE(1021), - [sym_boolean_literal] = STATE(1021), + [134] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1210), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(1210), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1210), + [sym_unary_expression] = STATE(1210), + [sym_try_expression] = STATE(1210), + [sym_reference_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_assignment_expression] = STATE(1210), + [sym_compound_assignment_expr] = STATE(1210), + [sym_type_cast_expression] = STATE(1210), + [sym_return_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_array_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_tuple_expression] = STATE(1210), + [sym_unit_expression] = STATE(1210), + [sym_struct_expression] = STATE(1210), + [sym_if_expression] = STATE(1210), + [sym_if_let_expression] = STATE(1210), + [sym_match_expression] = STATE(1210), + [sym_while_expression] = STATE(1210), + [sym_while_let_expression] = STATE(1210), + [sym_loop_expression] = STATE(1210), + [sym_for_expression] = STATE(1210), + [sym_closure_expression] = STATE(1210), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1210), + [sym_continue_expression] = STATE(1210), + [sym_index_expression] = STATE(1210), + [sym_await_expression] = STATE(1210), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1210), + [sym_async_block] = STATE(1210), + [sym_block] = STATE(1210), + [sym__literal] = STATE(1210), + [sym_string_literal] = STATE(1210), + [sym_boolean_literal] = STATE(1210), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -22152,9 +22897,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(893), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(867), + [sym_char_literal] = ACTIONS(893), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -22162,54 +22907,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(867), - [sym_float_literal] = ACTIONS(867), + [sym_raw_string_literal] = ACTIONS(893), + [sym_float_literal] = ACTIONS(893), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1172), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(1172), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_try_expression] = STATE(1172), - [sym_reference_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_assignment_expression] = STATE(1172), - [sym_compound_assignment_expr] = STATE(1172), - [sym_type_cast_expression] = STATE(1172), - [sym_return_expression] = STATE(1172), - [sym_call_expression] = STATE(1172), - [sym_array_expression] = STATE(1172), - [sym_parenthesized_expression] = STATE(1172), - [sym_tuple_expression] = STATE(1172), - [sym_unit_expression] = STATE(1172), - [sym_struct_expression] = STATE(1172), - [sym_if_expression] = STATE(1172), - [sym_if_let_expression] = STATE(1172), - [sym_match_expression] = STATE(1172), - [sym_while_expression] = STATE(1172), - [sym_while_let_expression] = STATE(1172), - [sym_loop_expression] = STATE(1172), - [sym_for_expression] = STATE(1172), - [sym_closure_expression] = STATE(1172), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1172), - [sym_continue_expression] = STATE(1172), - [sym_index_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1172), - [sym_async_block] = STATE(1172), - [sym_block] = STATE(1172), - [sym__literal] = STATE(1172), - [sym_string_literal] = STATE(1172), - [sym_boolean_literal] = STATE(1172), + [135] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1186), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1186), + [sym_macro_invocation] = STATE(1186), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1186), + [sym_unary_expression] = STATE(1186), + [sym_try_expression] = STATE(1186), + [sym_reference_expression] = STATE(1186), + [sym_binary_expression] = STATE(1186), + [sym_assignment_expression] = STATE(1186), + [sym_compound_assignment_expr] = STATE(1186), + [sym_type_cast_expression] = STATE(1186), + [sym_return_expression] = STATE(1186), + [sym_call_expression] = STATE(1186), + [sym_array_expression] = STATE(1186), + [sym_parenthesized_expression] = STATE(1186), + [sym_tuple_expression] = STATE(1186), + [sym_unit_expression] = STATE(1186), + [sym_struct_expression] = STATE(1186), + [sym_if_expression] = STATE(1186), + [sym_if_let_expression] = STATE(1186), + [sym_match_expression] = STATE(1186), + [sym_while_expression] = STATE(1186), + [sym_while_let_expression] = STATE(1186), + [sym_loop_expression] = STATE(1186), + [sym_for_expression] = STATE(1186), + [sym_closure_expression] = STATE(1186), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1186), + [sym_continue_expression] = STATE(1186), + [sym_index_expression] = STATE(1186), + [sym_await_expression] = STATE(1186), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1186), + [sym_async_block] = STATE(1186), + [sym_block] = STATE(1186), + [sym__literal] = STATE(1186), + [sym_string_literal] = STATE(1186), + [sym_boolean_literal] = STATE(1186), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -22253,9 +22998,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(869), + [sym_integer_literal] = ACTIONS(895), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(869), + [sym_char_literal] = ACTIONS(895), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -22263,54 +23008,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), + [sym_raw_string_literal] = ACTIONS(895), + [sym_float_literal] = ACTIONS(895), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1183), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1183), - [sym_macro_invocation] = STATE(1183), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1183), - [sym_unary_expression] = STATE(1183), - [sym_try_expression] = STATE(1183), - [sym_reference_expression] = STATE(1183), - [sym_binary_expression] = STATE(1183), - [sym_assignment_expression] = STATE(1183), - [sym_compound_assignment_expr] = STATE(1183), - [sym_type_cast_expression] = STATE(1183), - [sym_return_expression] = STATE(1183), - [sym_call_expression] = STATE(1183), - [sym_array_expression] = STATE(1183), - [sym_parenthesized_expression] = STATE(1183), - [sym_tuple_expression] = STATE(1183), - [sym_unit_expression] = STATE(1183), - [sym_struct_expression] = STATE(1183), - [sym_if_expression] = STATE(1183), - [sym_if_let_expression] = STATE(1183), - [sym_match_expression] = STATE(1183), - [sym_while_expression] = STATE(1183), - [sym_while_let_expression] = STATE(1183), - [sym_loop_expression] = STATE(1183), - [sym_for_expression] = STATE(1183), - [sym_closure_expression] = STATE(1183), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1183), - [sym_continue_expression] = STATE(1183), - [sym_index_expression] = STATE(1183), - [sym_await_expression] = STATE(1183), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1183), - [sym_async_block] = STATE(1183), - [sym_block] = STATE(1183), - [sym__literal] = STATE(1183), - [sym_string_literal] = STATE(1183), - [sym_boolean_literal] = STATE(1183), + [136] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1014), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1014), + [sym_macro_invocation] = STATE(1014), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1014), + [sym_unary_expression] = STATE(1014), + [sym_try_expression] = STATE(1014), + [sym_reference_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_assignment_expression] = STATE(1014), + [sym_compound_assignment_expr] = STATE(1014), + [sym_type_cast_expression] = STATE(1014), + [sym_return_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_array_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_tuple_expression] = STATE(1014), + [sym_unit_expression] = STATE(1014), + [sym_struct_expression] = STATE(1014), + [sym_if_expression] = STATE(1014), + [sym_if_let_expression] = STATE(1014), + [sym_match_expression] = STATE(1014), + [sym_while_expression] = STATE(1014), + [sym_while_let_expression] = STATE(1014), + [sym_loop_expression] = STATE(1014), + [sym_for_expression] = STATE(1014), + [sym_closure_expression] = STATE(1014), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1014), + [sym_continue_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_await_expression] = STATE(1014), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1014), + [sym_async_block] = STATE(1014), + [sym_block] = STATE(1014), + [sym__literal] = STATE(1014), + [sym_string_literal] = STATE(1014), + [sym_boolean_literal] = STATE(1014), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -22354,9 +23099,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(871), + [sym_integer_literal] = ACTIONS(897), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(871), + [sym_char_literal] = ACTIONS(897), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -22364,59 +23109,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(871), - [sym_float_literal] = ACTIONS(871), + [sym_raw_string_literal] = ACTIONS(897), + [sym_float_literal] = ACTIONS(897), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1135), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(1135), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1135), - [sym_unary_expression] = STATE(1135), - [sym_try_expression] = STATE(1135), - [sym_reference_expression] = STATE(1135), - [sym_binary_expression] = STATE(1135), - [sym_assignment_expression] = STATE(1135), - [sym_compound_assignment_expr] = STATE(1135), - [sym_type_cast_expression] = STATE(1135), - [sym_return_expression] = STATE(1135), - [sym_call_expression] = STATE(1135), - [sym_array_expression] = STATE(1135), - [sym_parenthesized_expression] = STATE(1135), - [sym_tuple_expression] = STATE(1135), - [sym_unit_expression] = STATE(1135), - [sym_struct_expression] = STATE(1135), - [sym_if_expression] = STATE(1135), - [sym_if_let_expression] = STATE(1135), - [sym_match_expression] = STATE(1135), - [sym_while_expression] = STATE(1135), - [sym_while_let_expression] = STATE(1135), - [sym_loop_expression] = STATE(1135), - [sym_for_expression] = STATE(1135), - [sym_closure_expression] = STATE(1135), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1135), - [sym_continue_expression] = STATE(1135), - [sym_index_expression] = STATE(1135), - [sym_await_expression] = STATE(1135), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1135), - [sym_async_block] = STATE(1135), - [sym_block] = STATE(1135), - [sym__literal] = STATE(1135), - [sym_string_literal] = STATE(1135), - [sym_boolean_literal] = STATE(1135), + [137] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1013), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1013), + [sym_macro_invocation] = STATE(1013), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1013), + [sym_unary_expression] = STATE(1013), + [sym_try_expression] = STATE(1013), + [sym_reference_expression] = STATE(1013), + [sym_binary_expression] = STATE(1013), + [sym_assignment_expression] = STATE(1013), + [sym_compound_assignment_expr] = STATE(1013), + [sym_type_cast_expression] = STATE(1013), + [sym_return_expression] = STATE(1013), + [sym_call_expression] = STATE(1013), + [sym_array_expression] = STATE(1013), + [sym_parenthesized_expression] = STATE(1013), + [sym_tuple_expression] = STATE(1013), + [sym_unit_expression] = STATE(1013), + [sym_struct_expression] = STATE(1013), + [sym_if_expression] = STATE(1013), + [sym_if_let_expression] = STATE(1013), + [sym_match_expression] = STATE(1013), + [sym_while_expression] = STATE(1013), + [sym_while_let_expression] = STATE(1013), + [sym_loop_expression] = STATE(1013), + [sym_for_expression] = STATE(1013), + [sym_closure_expression] = STATE(1013), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1013), + [sym_continue_expression] = STATE(1013), + [sym_index_expression] = STATE(1013), + [sym_await_expression] = STATE(1013), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1013), + [sym_async_block] = STATE(1013), + [sym_block] = STATE(1013), + [sym__literal] = STATE(1013), + [sym_string_literal] = STATE(1013), + [sym_boolean_literal] = STATE(1013), + [sym_identifier] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [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(301), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [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_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(899), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(899), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(899), + [sym_float_literal] = ACTIONS(899), + [sym_block_comment] = ACTIONS(3), + }, + [138] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1114), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1114), + [sym_macro_invocation] = STATE(1114), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1114), + [sym_unary_expression] = STATE(1114), + [sym_try_expression] = STATE(1114), + [sym_reference_expression] = STATE(1114), + [sym_binary_expression] = STATE(1114), + [sym_assignment_expression] = STATE(1114), + [sym_compound_assignment_expr] = STATE(1114), + [sym_type_cast_expression] = STATE(1114), + [sym_return_expression] = STATE(1114), + [sym_call_expression] = STATE(1114), + [sym_array_expression] = STATE(1114), + [sym_parenthesized_expression] = STATE(1114), + [sym_tuple_expression] = STATE(1114), + [sym_unit_expression] = STATE(1114), + [sym_struct_expression] = STATE(1114), + [sym_if_expression] = STATE(1114), + [sym_if_let_expression] = STATE(1114), + [sym_match_expression] = STATE(1114), + [sym_while_expression] = STATE(1114), + [sym_while_let_expression] = STATE(1114), + [sym_loop_expression] = STATE(1114), + [sym_for_expression] = STATE(1114), + [sym_closure_expression] = STATE(1114), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1114), + [sym_continue_expression] = STATE(1114), + [sym_index_expression] = STATE(1114), + [sym_await_expression] = STATE(1114), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1114), + [sym_async_block] = STATE(1114), + [sym_block] = STATE(1114), + [sym__literal] = STATE(1114), + [sym_string_literal] = STATE(1114), + [sym_boolean_literal] = STATE(1114), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -22447,17 +23293,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(873), + [sym_integer_literal] = ACTIONS(901), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(873), + [sym_char_literal] = ACTIONS(901), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -22465,54 +23311,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(873), - [sym_float_literal] = ACTIONS(873), + [sym_raw_string_literal] = ACTIONS(901), + [sym_float_literal] = ACTIONS(901), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1169), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(1169), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1169), - [sym_unary_expression] = STATE(1169), - [sym_try_expression] = STATE(1169), - [sym_reference_expression] = STATE(1169), - [sym_binary_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1169), - [sym_compound_assignment_expr] = STATE(1169), - [sym_type_cast_expression] = STATE(1169), - [sym_return_expression] = STATE(1169), - [sym_call_expression] = STATE(1169), - [sym_array_expression] = STATE(1169), - [sym_parenthesized_expression] = STATE(1169), - [sym_tuple_expression] = STATE(1169), - [sym_unit_expression] = STATE(1169), - [sym_struct_expression] = STATE(1169), - [sym_if_expression] = STATE(1169), - [sym_if_let_expression] = STATE(1169), - [sym_match_expression] = STATE(1169), - [sym_while_expression] = STATE(1169), - [sym_while_let_expression] = STATE(1169), - [sym_loop_expression] = STATE(1169), - [sym_for_expression] = STATE(1169), - [sym_closure_expression] = STATE(1169), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1169), - [sym_continue_expression] = STATE(1169), - [sym_index_expression] = STATE(1169), - [sym_await_expression] = STATE(1169), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1169), - [sym_async_block] = STATE(1169), - [sym_block] = STATE(1169), - [sym__literal] = STATE(1169), - [sym_string_literal] = STATE(1169), - [sym_boolean_literal] = STATE(1169), + [139] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1011), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1011), + [sym_macro_invocation] = STATE(1011), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1011), + [sym_unary_expression] = STATE(1011), + [sym_try_expression] = STATE(1011), + [sym_reference_expression] = STATE(1011), + [sym_binary_expression] = STATE(1011), + [sym_assignment_expression] = STATE(1011), + [sym_compound_assignment_expr] = STATE(1011), + [sym_type_cast_expression] = STATE(1011), + [sym_return_expression] = STATE(1011), + [sym_call_expression] = STATE(1011), + [sym_array_expression] = STATE(1011), + [sym_parenthesized_expression] = STATE(1011), + [sym_tuple_expression] = STATE(1011), + [sym_unit_expression] = STATE(1011), + [sym_struct_expression] = STATE(1011), + [sym_if_expression] = STATE(1011), + [sym_if_let_expression] = STATE(1011), + [sym_match_expression] = STATE(1011), + [sym_while_expression] = STATE(1011), + [sym_while_let_expression] = STATE(1011), + [sym_loop_expression] = STATE(1011), + [sym_for_expression] = STATE(1011), + [sym_closure_expression] = STATE(1011), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1011), + [sym_continue_expression] = STATE(1011), + [sym_index_expression] = STATE(1011), + [sym_await_expression] = STATE(1011), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1011), + [sym_async_block] = STATE(1011), + [sym_block] = STATE(1011), + [sym__literal] = STATE(1011), + [sym_string_literal] = STATE(1011), + [sym_boolean_literal] = STATE(1011), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -22556,9 +23402,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(875), + [sym_integer_literal] = ACTIONS(903), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(875), + [sym_char_literal] = ACTIONS(903), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -22566,54 +23412,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(875), - [sym_float_literal] = ACTIONS(875), + [sym_raw_string_literal] = ACTIONS(903), + [sym_float_literal] = ACTIONS(903), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(814), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(814), - [sym_macro_invocation] = STATE(814), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(814), - [sym_unary_expression] = STATE(814), - [sym_try_expression] = STATE(814), - [sym_reference_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_compound_assignment_expr] = STATE(814), - [sym_type_cast_expression] = STATE(814), - [sym_return_expression] = STATE(814), - [sym_call_expression] = STATE(814), - [sym_array_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(814), - [sym_tuple_expression] = STATE(814), - [sym_unit_expression] = STATE(814), - [sym_struct_expression] = STATE(814), - [sym_if_expression] = STATE(814), - [sym_if_let_expression] = STATE(814), - [sym_match_expression] = STATE(814), - [sym_while_expression] = STATE(814), - [sym_while_let_expression] = STATE(814), - [sym_loop_expression] = STATE(814), - [sym_for_expression] = STATE(814), - [sym_closure_expression] = STATE(814), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(814), - [sym_continue_expression] = STATE(814), - [sym_index_expression] = STATE(814), - [sym_await_expression] = STATE(814), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(814), - [sym_async_block] = STATE(814), - [sym_block] = STATE(814), - [sym__literal] = STATE(814), - [sym_string_literal] = STATE(814), - [sym_boolean_literal] = STATE(814), + [140] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1193), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1193), + [sym_macro_invocation] = STATE(1193), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1193), + [sym_unary_expression] = STATE(1193), + [sym_try_expression] = STATE(1193), + [sym_reference_expression] = STATE(1193), + [sym_binary_expression] = STATE(1193), + [sym_assignment_expression] = STATE(1193), + [sym_compound_assignment_expr] = STATE(1193), + [sym_type_cast_expression] = STATE(1193), + [sym_return_expression] = STATE(1193), + [sym_call_expression] = STATE(1193), + [sym_array_expression] = STATE(1193), + [sym_parenthesized_expression] = STATE(1193), + [sym_tuple_expression] = STATE(1193), + [sym_unit_expression] = STATE(1193), + [sym_struct_expression] = STATE(1193), + [sym_if_expression] = STATE(1193), + [sym_if_let_expression] = STATE(1193), + [sym_match_expression] = STATE(1193), + [sym_while_expression] = STATE(1193), + [sym_while_let_expression] = STATE(1193), + [sym_loop_expression] = STATE(1193), + [sym_for_expression] = STATE(1193), + [sym_closure_expression] = STATE(1193), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1193), + [sym_continue_expression] = STATE(1193), + [sym_index_expression] = STATE(1193), + [sym_await_expression] = STATE(1193), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1193), + [sym_async_block] = STATE(1193), + [sym_block] = STATE(1193), + [sym__literal] = STATE(1193), + [sym_string_literal] = STATE(1193), + [sym_boolean_literal] = STATE(1193), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -22657,9 +23503,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(905), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(877), + [sym_char_literal] = ACTIONS(905), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -22667,57 +23513,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), + [sym_raw_string_literal] = ACTIONS(905), + [sym_float_literal] = ACTIONS(905), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1023), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1023), - [sym_macro_invocation] = STATE(1023), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1023), - [sym_unary_expression] = STATE(1023), - [sym_try_expression] = STATE(1023), - [sym_reference_expression] = STATE(1023), - [sym_binary_expression] = STATE(1023), - [sym_assignment_expression] = STATE(1023), - [sym_compound_assignment_expr] = STATE(1023), - [sym_type_cast_expression] = STATE(1023), - [sym_return_expression] = STATE(1023), - [sym_call_expression] = STATE(1023), - [sym_array_expression] = STATE(1023), - [sym_parenthesized_expression] = STATE(1023), - [sym_tuple_expression] = STATE(1023), - [sym_unit_expression] = STATE(1023), - [sym_struct_expression] = STATE(1023), - [sym_if_expression] = STATE(1023), - [sym_if_let_expression] = STATE(1023), - [sym_match_expression] = STATE(1023), - [sym_while_expression] = STATE(1023), - [sym_while_let_expression] = STATE(1023), - [sym_loop_expression] = STATE(1023), - [sym_for_expression] = STATE(1023), - [sym_closure_expression] = STATE(1023), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1023), - [sym_continue_expression] = STATE(1023), - [sym_index_expression] = STATE(1023), - [sym_await_expression] = STATE(1023), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1023), - [sym_async_block] = STATE(1023), - [sym_block] = STATE(1023), - [sym__literal] = STATE(1023), - [sym_string_literal] = STATE(1023), - [sym_boolean_literal] = STATE(1023), + [141] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1192), + [sym_macro_invocation] = STATE(1192), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1192), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(226), + [sym_if_let_expression] = STATE(226), + [sym_match_expression] = STATE(226), + [sym_while_expression] = STATE(226), + [sym_while_let_expression] = STATE(226), + [sym_loop_expression] = STATE(226), + [sym_for_expression] = STATE(226), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2387), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(226), + [sym_async_block] = STATE(226), + [sym_block] = STATE(226), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1192), + [sym_boolean_literal] = STATE(1192), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -22738,18 +23584,18 @@ static 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(301), + [anon_sym_async] = ACTIONS(909), [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), + [anon_sym_for] = ACTIONS(911), + [anon_sym_if] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(915), + [anon_sym_match] = ACTIONS(917), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), + [anon_sym_unsafe] = ACTIONS(919), + [anon_sym_while] = ACTIONS(921), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -22758,9 +23604,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(923), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(879), + [sym_char_literal] = ACTIONS(923), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -22768,256 +23614,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(879), - [sym_float_literal] = ACTIONS(879), + [sym_raw_string_literal] = ACTIONS(923), + [sym_float_literal] = ACTIONS(923), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1100), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1100), - [sym_macro_invocation] = STATE(1100), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1100), - [sym_unary_expression] = STATE(1100), - [sym_try_expression] = STATE(1100), - [sym_reference_expression] = STATE(1100), - [sym_binary_expression] = STATE(1100), - [sym_assignment_expression] = STATE(1100), - [sym_compound_assignment_expr] = STATE(1100), - [sym_type_cast_expression] = STATE(1100), - [sym_return_expression] = STATE(1100), - [sym_call_expression] = STATE(1100), - [sym_array_expression] = STATE(1100), - [sym_parenthesized_expression] = STATE(1100), - [sym_tuple_expression] = STATE(1100), - [sym_unit_expression] = STATE(1100), - [sym_struct_expression] = STATE(1100), - [sym_if_expression] = STATE(1100), - [sym_if_let_expression] = STATE(1100), - [sym_match_expression] = STATE(1100), - [sym_while_expression] = STATE(1100), - [sym_while_let_expression] = STATE(1100), - [sym_loop_expression] = STATE(1100), - [sym_for_expression] = STATE(1100), - [sym_closure_expression] = STATE(1100), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1100), - [sym_continue_expression] = STATE(1100), - [sym_index_expression] = STATE(1100), - [sym_await_expression] = STATE(1100), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1100), - [sym_async_block] = STATE(1100), - [sym_block] = STATE(1100), - [sym__literal] = STATE(1100), - [sym_string_literal] = STATE(1100), - [sym_boolean_literal] = STATE(1100), - [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(23), + [142] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1196), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1196), + [sym_macro_invocation] = STATE(1196), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1196), + [sym_unary_expression] = STATE(1196), + [sym_try_expression] = STATE(1196), + [sym_reference_expression] = STATE(1196), + [sym_binary_expression] = STATE(1196), + [sym_assignment_expression] = STATE(1196), + [sym_compound_assignment_expr] = STATE(1196), + [sym_type_cast_expression] = STATE(1196), + [sym_return_expression] = STATE(1196), + [sym_call_expression] = STATE(1196), + [sym_array_expression] = STATE(1196), + [sym_parenthesized_expression] = STATE(1196), + [sym_tuple_expression] = STATE(1196), + [sym_unit_expression] = STATE(1196), + [sym_struct_expression] = STATE(1196), + [sym_if_expression] = STATE(1196), + [sym_if_let_expression] = STATE(1196), + [sym_match_expression] = STATE(1196), + [sym_while_expression] = STATE(1196), + [sym_while_let_expression] = STATE(1196), + [sym_loop_expression] = STATE(1196), + [sym_for_expression] = STATE(1196), + [sym_closure_expression] = STATE(1196), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1196), + [sym_continue_expression] = STATE(1196), + [sym_index_expression] = STATE(1196), + [sym_await_expression] = STATE(1196), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1196), + [sym_async_block] = STATE(1196), + [sym_block] = STATE(1196), + [sym__literal] = STATE(1196), + [sym_string_literal] = STATE(1196), + [sym_boolean_literal] = STATE(1196), + [sym_identifier] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(881), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(925), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(881), + [sym_char_literal] = ACTIONS(925), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(925), + [sym_float_literal] = ACTIONS(925), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(774), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(774), - [sym_macro_invocation] = STATE(774), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(774), - [sym_unary_expression] = STATE(774), - [sym_try_expression] = STATE(774), - [sym_reference_expression] = STATE(774), - [sym_binary_expression] = STATE(774), - [sym_assignment_expression] = STATE(774), - [sym_compound_assignment_expr] = STATE(774), - [sym_type_cast_expression] = STATE(774), - [sym_return_expression] = STATE(774), - [sym_call_expression] = STATE(774), - [sym_array_expression] = STATE(774), - [sym_parenthesized_expression] = STATE(774), - [sym_tuple_expression] = STATE(774), - [sym_unit_expression] = STATE(774), - [sym_struct_expression] = STATE(774), - [sym_if_expression] = STATE(774), - [sym_if_let_expression] = STATE(774), - [sym_match_expression] = STATE(774), - [sym_while_expression] = STATE(774), - [sym_while_let_expression] = STATE(774), - [sym_loop_expression] = STATE(774), - [sym_for_expression] = STATE(774), - [sym_closure_expression] = STATE(774), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(774), - [sym_continue_expression] = STATE(774), - [sym_index_expression] = STATE(774), - [sym_await_expression] = STATE(774), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(774), - [sym_async_block] = STATE(774), - [sym_block] = STATE(774), - [sym__literal] = STATE(774), - [sym_string_literal] = STATE(774), - [sym_boolean_literal] = STATE(774), - [sym_identifier] = ACTIONS(355), + [143] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1120), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1120), + [sym_macro_invocation] = STATE(1120), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1120), + [sym_unary_expression] = STATE(1120), + [sym_try_expression] = STATE(1120), + [sym_reference_expression] = STATE(1120), + [sym_binary_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1120), + [sym_compound_assignment_expr] = STATE(1120), + [sym_type_cast_expression] = STATE(1120), + [sym_return_expression] = STATE(1120), + [sym_call_expression] = STATE(1120), + [sym_array_expression] = STATE(1120), + [sym_parenthesized_expression] = STATE(1120), + [sym_tuple_expression] = STATE(1120), + [sym_unit_expression] = STATE(1120), + [sym_struct_expression] = STATE(1120), + [sym_if_expression] = STATE(226), + [sym_if_let_expression] = STATE(226), + [sym_match_expression] = STATE(226), + [sym_while_expression] = STATE(226), + [sym_while_let_expression] = STATE(226), + [sym_loop_expression] = STATE(226), + [sym_for_expression] = STATE(226), + [sym_closure_expression] = STATE(1120), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2387), + [sym_break_expression] = STATE(1120), + [sym_continue_expression] = STATE(1120), + [sym_index_expression] = STATE(1120), + [sym_await_expression] = STATE(1120), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(226), + [sym_async_block] = STATE(226), + [sym_block] = STATE(226), + [sym__literal] = STATE(1120), + [sym_string_literal] = STATE(1120), + [sym_boolean_literal] = STATE(1120), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_async] = ACTIONS(909), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_for] = ACTIONS(911), + [anon_sym_if] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(915), + [anon_sym_match] = ACTIONS(917), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_unsafe] = ACTIONS(919), + [anon_sym_while] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(793), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(927), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(793), + [sym_char_literal] = ACTIONS(927), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(793), - [sym_float_literal] = ACTIONS(793), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(927), + [sym_float_literal] = ACTIONS(927), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1179), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1179), - [sym_macro_invocation] = STATE(1179), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1179), - [sym_unary_expression] = STATE(1179), - [sym_try_expression] = STATE(1179), - [sym_reference_expression] = STATE(1179), - [sym_binary_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1179), - [sym_compound_assignment_expr] = STATE(1179), - [sym_type_cast_expression] = STATE(1179), - [sym_return_expression] = STATE(1179), - [sym_call_expression] = STATE(1179), - [sym_array_expression] = STATE(1179), - [sym_parenthesized_expression] = STATE(1179), - [sym_tuple_expression] = STATE(1179), - [sym_unit_expression] = STATE(1179), - [sym_struct_expression] = STATE(1179), - [sym_if_expression] = STATE(1179), - [sym_if_let_expression] = STATE(1179), - [sym_match_expression] = STATE(1179), - [sym_while_expression] = STATE(1179), - [sym_while_let_expression] = STATE(1179), - [sym_loop_expression] = STATE(1179), - [sym_for_expression] = STATE(1179), - [sym_closure_expression] = STATE(1179), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1179), - [sym_continue_expression] = STATE(1179), - [sym_index_expression] = STATE(1179), - [sym_await_expression] = STATE(1179), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1179), - [sym_async_block] = STATE(1179), - [sym_block] = STATE(1179), - [sym__literal] = STATE(1179), - [sym_string_literal] = STATE(1179), - [sym_boolean_literal] = STATE(1179), + [144] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1010), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1010), + [sym_macro_invocation] = STATE(1010), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1010), + [sym_unary_expression] = STATE(1010), + [sym_try_expression] = STATE(1010), + [sym_reference_expression] = STATE(1010), + [sym_binary_expression] = STATE(1010), + [sym_assignment_expression] = STATE(1010), + [sym_compound_assignment_expr] = STATE(1010), + [sym_type_cast_expression] = STATE(1010), + [sym_return_expression] = STATE(1010), + [sym_call_expression] = STATE(1010), + [sym_array_expression] = STATE(1010), + [sym_parenthesized_expression] = STATE(1010), + [sym_tuple_expression] = STATE(1010), + [sym_unit_expression] = STATE(1010), + [sym_struct_expression] = STATE(1010), + [sym_if_expression] = STATE(1010), + [sym_if_let_expression] = STATE(1010), + [sym_match_expression] = STATE(1010), + [sym_while_expression] = STATE(1010), + [sym_while_let_expression] = STATE(1010), + [sym_loop_expression] = STATE(1010), + [sym_for_expression] = STATE(1010), + [sym_closure_expression] = STATE(1010), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1010), + [sym_continue_expression] = STATE(1010), + [sym_index_expression] = STATE(1010), + [sym_await_expression] = STATE(1010), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1010), + [sym_async_block] = STATE(1010), + [sym_block] = STATE(1010), + [sym__literal] = STATE(1010), + [sym_string_literal] = STATE(1010), + [sym_boolean_literal] = STATE(1010), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -23061,9 +23907,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(929), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(883), + [sym_char_literal] = ACTIONS(929), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -23071,155 +23917,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(883), - [sym_float_literal] = ACTIONS(883), + [sym_raw_string_literal] = ACTIONS(929), + [sym_float_literal] = ACTIONS(929), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1146), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(1146), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1146), - [sym_unary_expression] = STATE(1146), - [sym_try_expression] = STATE(1146), - [sym_reference_expression] = STATE(1146), - [sym_binary_expression] = STATE(1146), - [sym_assignment_expression] = STATE(1146), - [sym_compound_assignment_expr] = STATE(1146), - [sym_type_cast_expression] = STATE(1146), - [sym_return_expression] = STATE(1146), - [sym_call_expression] = STATE(1146), - [sym_array_expression] = STATE(1146), - [sym_parenthesized_expression] = STATE(1146), - [sym_tuple_expression] = STATE(1146), - [sym_unit_expression] = STATE(1146), - [sym_struct_expression] = STATE(1146), - [sym_if_expression] = STATE(1146), - [sym_if_let_expression] = STATE(1146), - [sym_match_expression] = STATE(1146), - [sym_while_expression] = STATE(1146), - [sym_while_let_expression] = STATE(1146), - [sym_loop_expression] = STATE(1146), - [sym_for_expression] = STATE(1146), - [sym_closure_expression] = STATE(1146), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1146), - [sym_continue_expression] = STATE(1146), - [sym_index_expression] = STATE(1146), - [sym_await_expression] = STATE(1146), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1146), - [sym_async_block] = STATE(1146), - [sym_block] = STATE(1146), - [sym__literal] = STATE(1146), - [sym_string_literal] = STATE(1146), - [sym_boolean_literal] = STATE(1146), - [sym_identifier] = ACTIONS(355), + [145] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1187), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1187), + [sym_macro_invocation] = STATE(1187), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1187), + [sym_unary_expression] = STATE(1187), + [sym_try_expression] = STATE(1187), + [sym_reference_expression] = STATE(1187), + [sym_binary_expression] = STATE(1187), + [sym_assignment_expression] = STATE(1187), + [sym_compound_assignment_expr] = STATE(1187), + [sym_type_cast_expression] = STATE(1187), + [sym_return_expression] = STATE(1187), + [sym_call_expression] = STATE(1187), + [sym_array_expression] = STATE(1187), + [sym_parenthesized_expression] = STATE(1187), + [sym_tuple_expression] = STATE(1187), + [sym_unit_expression] = STATE(1187), + [sym_struct_expression] = STATE(1187), + [sym_if_expression] = STATE(1187), + [sym_if_let_expression] = STATE(1187), + [sym_match_expression] = STATE(1187), + [sym_while_expression] = STATE(1187), + [sym_while_let_expression] = STATE(1187), + [sym_loop_expression] = STATE(1187), + [sym_for_expression] = STATE(1187), + [sym_closure_expression] = STATE(1187), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1187), + [sym_continue_expression] = STATE(1187), + [sym_index_expression] = STATE(1187), + [sym_await_expression] = STATE(1187), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1187), + [sym_async_block] = STATE(1187), + [sym_block] = STATE(1187), + [sym__literal] = STATE(1187), + [sym_string_literal] = STATE(1187), + [sym_boolean_literal] = STATE(1187), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(885), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(931), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(885), + [sym_char_literal] = ACTIONS(931), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(885), - [sym_float_literal] = ACTIONS(885), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(931), + [sym_float_literal] = ACTIONS(931), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1105), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(1105), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1105), - [sym_unary_expression] = STATE(1105), - [sym_try_expression] = STATE(1105), - [sym_reference_expression] = STATE(1105), - [sym_binary_expression] = STATE(1105), - [sym_assignment_expression] = STATE(1105), - [sym_compound_assignment_expr] = STATE(1105), - [sym_type_cast_expression] = STATE(1105), - [sym_return_expression] = STATE(1105), - [sym_call_expression] = STATE(1105), - [sym_array_expression] = STATE(1105), - [sym_parenthesized_expression] = STATE(1105), - [sym_tuple_expression] = STATE(1105), - [sym_unit_expression] = STATE(1105), - [sym_struct_expression] = STATE(1105), - [sym_if_expression] = STATE(1105), - [sym_if_let_expression] = STATE(1105), - [sym_match_expression] = STATE(1105), - [sym_while_expression] = STATE(1105), - [sym_while_let_expression] = STATE(1105), - [sym_loop_expression] = STATE(1105), - [sym_for_expression] = STATE(1105), - [sym_closure_expression] = STATE(1105), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1105), - [sym_continue_expression] = STATE(1105), - [sym_index_expression] = STATE(1105), - [sym_await_expression] = STATE(1105), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1105), - [sym_async_block] = STATE(1105), - [sym_block] = STATE(1105), - [sym__literal] = STATE(1105), - [sym_string_literal] = STATE(1105), - [sym_boolean_literal] = STATE(1105), + [146] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1180), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1180), + [sym_macro_invocation] = STATE(1180), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1180), + [sym_unary_expression] = STATE(1180), + [sym_try_expression] = STATE(1180), + [sym_reference_expression] = STATE(1180), + [sym_binary_expression] = STATE(1180), + [sym_assignment_expression] = STATE(1180), + [sym_compound_assignment_expr] = STATE(1180), + [sym_type_cast_expression] = STATE(1180), + [sym_return_expression] = STATE(1180), + [sym_call_expression] = STATE(1180), + [sym_array_expression] = STATE(1180), + [sym_parenthesized_expression] = STATE(1180), + [sym_tuple_expression] = STATE(1180), + [sym_unit_expression] = STATE(1180), + [sym_struct_expression] = STATE(1180), + [sym_if_expression] = STATE(1180), + [sym_if_let_expression] = STATE(1180), + [sym_match_expression] = STATE(1180), + [sym_while_expression] = STATE(1180), + [sym_while_let_expression] = STATE(1180), + [sym_loop_expression] = STATE(1180), + [sym_for_expression] = STATE(1180), + [sym_closure_expression] = STATE(1180), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1180), + [sym_continue_expression] = STATE(1180), + [sym_index_expression] = STATE(1180), + [sym_await_expression] = STATE(1180), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1180), + [sym_async_block] = STATE(1180), + [sym_block] = STATE(1180), + [sym__literal] = STATE(1180), + [sym_string_literal] = STATE(1180), + [sym_boolean_literal] = STATE(1180), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -23263,9 +24109,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(933), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(887), + [sym_char_literal] = ACTIONS(933), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -23273,357 +24119,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(887), - [sym_float_literal] = ACTIONS(887), + [sym_raw_string_literal] = ACTIONS(933), + [sym_float_literal] = ACTIONS(933), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1097), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(1097), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1097), - [sym_unary_expression] = STATE(1097), - [sym_try_expression] = STATE(1097), - [sym_reference_expression] = STATE(1097), - [sym_binary_expression] = STATE(1097), - [sym_assignment_expression] = STATE(1097), - [sym_compound_assignment_expr] = STATE(1097), - [sym_type_cast_expression] = STATE(1097), - [sym_return_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_array_expression] = STATE(1097), - [sym_parenthesized_expression] = STATE(1097), - [sym_tuple_expression] = STATE(1097), - [sym_unit_expression] = STATE(1097), - [sym_struct_expression] = STATE(1097), - [sym_if_expression] = STATE(1097), - [sym_if_let_expression] = STATE(1097), - [sym_match_expression] = STATE(1097), - [sym_while_expression] = STATE(1097), - [sym_while_let_expression] = STATE(1097), - [sym_loop_expression] = STATE(1097), - [sym_for_expression] = STATE(1097), - [sym_closure_expression] = STATE(1097), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1097), - [sym_continue_expression] = STATE(1097), - [sym_index_expression] = STATE(1097), - [sym_await_expression] = STATE(1097), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1097), - [sym_async_block] = STATE(1097), - [sym_block] = STATE(1097), - [sym__literal] = STATE(1097), - [sym_string_literal] = STATE(1097), - [sym_boolean_literal] = STATE(1097), - [sym_identifier] = ACTIONS(355), + [147] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1009), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1009), + [sym_macro_invocation] = STATE(1009), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1009), + [sym_unary_expression] = STATE(1009), + [sym_try_expression] = STATE(1009), + [sym_reference_expression] = STATE(1009), + [sym_binary_expression] = STATE(1009), + [sym_assignment_expression] = STATE(1009), + [sym_compound_assignment_expr] = STATE(1009), + [sym_type_cast_expression] = STATE(1009), + [sym_return_expression] = STATE(1009), + [sym_call_expression] = STATE(1009), + [sym_array_expression] = STATE(1009), + [sym_parenthesized_expression] = STATE(1009), + [sym_tuple_expression] = STATE(1009), + [sym_unit_expression] = STATE(1009), + [sym_struct_expression] = STATE(1009), + [sym_if_expression] = STATE(1009), + [sym_if_let_expression] = STATE(1009), + [sym_match_expression] = STATE(1009), + [sym_while_expression] = STATE(1009), + [sym_while_let_expression] = STATE(1009), + [sym_loop_expression] = STATE(1009), + [sym_for_expression] = STATE(1009), + [sym_closure_expression] = STATE(1009), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1009), + [sym_continue_expression] = STATE(1009), + [sym_index_expression] = STATE(1009), + [sym_await_expression] = STATE(1009), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1009), + [sym_async_block] = STATE(1009), + [sym_block] = STATE(1009), + [sym__literal] = STATE(1009), + [sym_string_literal] = STATE(1009), + [sym_boolean_literal] = STATE(1009), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(889), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(325), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(889), + [sym_char_literal] = ACTIONS(325), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(889), - [sym_float_literal] = ACTIONS(889), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(325), + [sym_float_literal] = ACTIONS(325), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_attribute_item] = STATE(186), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(1940), - [sym_variadic_parameter] = STATE(1940), - [sym_parameter] = STATE(1940), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1643), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1643), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1643), - [sym_tuple_type] = STATE(1643), - [sym_unit_type] = STATE(1643), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1643), - [sym_reference_type] = STATE(1643), - [sym_pointer_type] = STATE(1643), - [sym_empty_type] = STATE(1643), - [sym_abstract_type] = STATE(1643), - [sym_dynamic_type] = STATE(1643), - [sym_macro_invocation] = STATE(1643), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), - [sym_block_comment] = ACTIONS(3), - }, - [141] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1107), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1107), - [sym_macro_invocation] = STATE(1107), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1107), - [sym_unary_expression] = STATE(1107), - [sym_try_expression] = STATE(1107), - [sym_reference_expression] = STATE(1107), - [sym_binary_expression] = STATE(1107), - [sym_assignment_expression] = STATE(1107), - [sym_compound_assignment_expr] = STATE(1107), - [sym_type_cast_expression] = STATE(1107), - [sym_return_expression] = STATE(1107), - [sym_call_expression] = STATE(1107), - [sym_array_expression] = STATE(1107), - [sym_parenthesized_expression] = STATE(1107), - [sym_tuple_expression] = STATE(1107), - [sym_unit_expression] = STATE(1107), - [sym_struct_expression] = STATE(1107), - [sym_if_expression] = STATE(1107), - [sym_if_let_expression] = STATE(1107), - [sym_match_expression] = STATE(1107), - [sym_while_expression] = STATE(1107), - [sym_while_let_expression] = STATE(1107), - [sym_loop_expression] = STATE(1107), - [sym_for_expression] = STATE(1107), - [sym_closure_expression] = STATE(1107), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1107), - [sym_continue_expression] = STATE(1107), - [sym_index_expression] = STATE(1107), - [sym_await_expression] = STATE(1107), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1107), - [sym_async_block] = STATE(1107), - [sym_block] = STATE(1107), - [sym__literal] = STATE(1107), - [sym_string_literal] = STATE(1107), - [sym_boolean_literal] = STATE(1107), - [sym_identifier] = ACTIONS(355), + [148] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1006), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1006), + [sym_macro_invocation] = STATE(1006), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1006), + [sym_unary_expression] = STATE(1006), + [sym_try_expression] = STATE(1006), + [sym_reference_expression] = STATE(1006), + [sym_binary_expression] = STATE(1006), + [sym_assignment_expression] = STATE(1006), + [sym_compound_assignment_expr] = STATE(1006), + [sym_type_cast_expression] = STATE(1006), + [sym_return_expression] = STATE(1006), + [sym_call_expression] = STATE(1006), + [sym_array_expression] = STATE(1006), + [sym_parenthesized_expression] = STATE(1006), + [sym_tuple_expression] = STATE(1006), + [sym_unit_expression] = STATE(1006), + [sym_struct_expression] = STATE(1006), + [sym_if_expression] = STATE(1006), + [sym_if_let_expression] = STATE(1006), + [sym_match_expression] = STATE(1006), + [sym_while_expression] = STATE(1006), + [sym_while_let_expression] = STATE(1006), + [sym_loop_expression] = STATE(1006), + [sym_for_expression] = STATE(1006), + [sym_closure_expression] = STATE(1006), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1006), + [sym_continue_expression] = STATE(1006), + [sym_index_expression] = STATE(1006), + [sym_await_expression] = STATE(1006), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1006), + [sym_async_block] = STATE(1006), + [sym_block] = STATE(1006), + [sym__literal] = STATE(1006), + [sym_string_literal] = STATE(1006), + [sym_boolean_literal] = STATE(1006), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(913), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(935), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(913), + [sym_char_literal] = ACTIONS(935), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(913), - [sym_float_literal] = ACTIONS(913), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(935), + [sym_float_literal] = ACTIONS(935), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1192), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(1192), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1192), - [sym_unary_expression] = STATE(1192), - [sym_try_expression] = STATE(1192), - [sym_reference_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_compound_assignment_expr] = STATE(1192), - [sym_type_cast_expression] = STATE(1192), - [sym_return_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_array_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1192), - [sym_unit_expression] = STATE(1192), - [sym_struct_expression] = STATE(1192), - [sym_if_expression] = STATE(1192), - [sym_if_let_expression] = STATE(1192), - [sym_match_expression] = STATE(1192), - [sym_while_expression] = STATE(1192), - [sym_while_let_expression] = STATE(1192), - [sym_loop_expression] = STATE(1192), - [sym_for_expression] = STATE(1192), - [sym_closure_expression] = STATE(1192), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1192), - [sym_continue_expression] = STATE(1192), - [sym_index_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1192), - [sym_async_block] = STATE(1192), - [sym_block] = STATE(1192), - [sym__literal] = STATE(1192), - [sym_string_literal] = STATE(1192), - [sym_boolean_literal] = STATE(1192), + [149] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1200), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(1200), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1200), + [sym_unary_expression] = STATE(1200), + [sym_try_expression] = STATE(1200), + [sym_reference_expression] = STATE(1200), + [sym_binary_expression] = STATE(1200), + [sym_assignment_expression] = STATE(1200), + [sym_compound_assignment_expr] = STATE(1200), + [sym_type_cast_expression] = STATE(1200), + [sym_return_expression] = STATE(1200), + [sym_call_expression] = STATE(1200), + [sym_array_expression] = STATE(1200), + [sym_parenthesized_expression] = STATE(1200), + [sym_tuple_expression] = STATE(1200), + [sym_unit_expression] = STATE(1200), + [sym_struct_expression] = STATE(1200), + [sym_if_expression] = STATE(1200), + [sym_if_let_expression] = STATE(1200), + [sym_match_expression] = STATE(1200), + [sym_while_expression] = STATE(1200), + [sym_while_let_expression] = STATE(1200), + [sym_loop_expression] = STATE(1200), + [sym_for_expression] = STATE(1200), + [sym_closure_expression] = STATE(1200), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1200), + [sym_continue_expression] = STATE(1200), + [sym_index_expression] = STATE(1200), + [sym_await_expression] = STATE(1200), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1200), + [sym_async_block] = STATE(1200), + [sym_block] = STATE(1200), + [sym__literal] = STATE(1200), + [sym_string_literal] = STATE(1200), + [sym_boolean_literal] = STATE(1200), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -23667,9 +24412,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(937), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(915), + [sym_char_literal] = ACTIONS(937), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -23677,54 +24422,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(915), - [sym_float_literal] = ACTIONS(915), + [sym_raw_string_literal] = ACTIONS(937), + [sym_float_literal] = ACTIONS(937), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1143), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(1143), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1143), - [sym_unary_expression] = STATE(1143), - [sym_try_expression] = STATE(1143), - [sym_reference_expression] = STATE(1143), - [sym_binary_expression] = STATE(1143), - [sym_assignment_expression] = STATE(1143), - [sym_compound_assignment_expr] = STATE(1143), - [sym_type_cast_expression] = STATE(1143), - [sym_return_expression] = STATE(1143), - [sym_call_expression] = STATE(1143), - [sym_array_expression] = STATE(1143), - [sym_parenthesized_expression] = STATE(1143), - [sym_tuple_expression] = STATE(1143), - [sym_unit_expression] = STATE(1143), - [sym_struct_expression] = STATE(1143), - [sym_if_expression] = STATE(1143), - [sym_if_let_expression] = STATE(1143), - [sym_match_expression] = STATE(1143), - [sym_while_expression] = STATE(1143), - [sym_while_let_expression] = STATE(1143), - [sym_loop_expression] = STATE(1143), - [sym_for_expression] = STATE(1143), - [sym_closure_expression] = STATE(1143), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1143), - [sym_continue_expression] = STATE(1143), - [sym_index_expression] = STATE(1143), - [sym_await_expression] = STATE(1143), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1143), - [sym_async_block] = STATE(1143), - [sym_block] = STATE(1143), - [sym__literal] = STATE(1143), - [sym_string_literal] = STATE(1143), - [sym_boolean_literal] = STATE(1143), + [150] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1003), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1003), + [sym_macro_invocation] = STATE(1003), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1003), + [sym_unary_expression] = STATE(1003), + [sym_try_expression] = STATE(1003), + [sym_reference_expression] = STATE(1003), + [sym_binary_expression] = STATE(1003), + [sym_assignment_expression] = STATE(1003), + [sym_compound_assignment_expr] = STATE(1003), + [sym_type_cast_expression] = STATE(1003), + [sym_return_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_array_expression] = STATE(1003), + [sym_parenthesized_expression] = STATE(1003), + [sym_tuple_expression] = STATE(1003), + [sym_unit_expression] = STATE(1003), + [sym_struct_expression] = STATE(1003), + [sym_if_expression] = STATE(1003), + [sym_if_let_expression] = STATE(1003), + [sym_match_expression] = STATE(1003), + [sym_while_expression] = STATE(1003), + [sym_while_let_expression] = STATE(1003), + [sym_loop_expression] = STATE(1003), + [sym_for_expression] = STATE(1003), + [sym_closure_expression] = STATE(1003), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1003), + [sym_continue_expression] = STATE(1003), + [sym_index_expression] = STATE(1003), + [sym_await_expression] = STATE(1003), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1003), + [sym_async_block] = STATE(1003), + [sym_block] = STATE(1003), + [sym__literal] = STATE(1003), + [sym_string_literal] = STATE(1003), + [sym_boolean_literal] = STATE(1003), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -23768,9 +24513,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(917), + [sym_integer_literal] = ACTIONS(939), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(917), + [sym_char_literal] = ACTIONS(939), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -23778,54 +24523,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), + [sym_raw_string_literal] = ACTIONS(939), + [sym_float_literal] = ACTIONS(939), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1162), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(1162), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1162), - [sym_unary_expression] = STATE(1162), - [sym_try_expression] = STATE(1162), - [sym_reference_expression] = STATE(1162), - [sym_binary_expression] = STATE(1162), - [sym_assignment_expression] = STATE(1162), - [sym_compound_assignment_expr] = STATE(1162), - [sym_type_cast_expression] = STATE(1162), - [sym_return_expression] = STATE(1162), - [sym_call_expression] = STATE(1162), - [sym_array_expression] = STATE(1162), - [sym_parenthesized_expression] = STATE(1162), - [sym_tuple_expression] = STATE(1162), - [sym_unit_expression] = STATE(1162), - [sym_struct_expression] = STATE(1162), - [sym_if_expression] = STATE(1162), - [sym_if_let_expression] = STATE(1162), - [sym_match_expression] = STATE(1162), - [sym_while_expression] = STATE(1162), - [sym_while_let_expression] = STATE(1162), - [sym_loop_expression] = STATE(1162), - [sym_for_expression] = STATE(1162), - [sym_closure_expression] = STATE(1162), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1162), - [sym_continue_expression] = STATE(1162), - [sym_index_expression] = STATE(1162), - [sym_await_expression] = STATE(1162), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1162), - [sym_async_block] = STATE(1162), - [sym_block] = STATE(1162), - [sym__literal] = STATE(1162), - [sym_string_literal] = STATE(1162), - [sym_boolean_literal] = STATE(1162), + [151] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1181), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1181), + [sym_macro_invocation] = STATE(1181), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1181), + [sym_unary_expression] = STATE(1181), + [sym_try_expression] = STATE(1181), + [sym_reference_expression] = STATE(1181), + [sym_binary_expression] = STATE(1181), + [sym_assignment_expression] = STATE(1181), + [sym_compound_assignment_expr] = STATE(1181), + [sym_type_cast_expression] = STATE(1181), + [sym_return_expression] = STATE(1181), + [sym_call_expression] = STATE(1181), + [sym_array_expression] = STATE(1181), + [sym_parenthesized_expression] = STATE(1181), + [sym_tuple_expression] = STATE(1181), + [sym_unit_expression] = STATE(1181), + [sym_struct_expression] = STATE(1181), + [sym_if_expression] = STATE(1181), + [sym_if_let_expression] = STATE(1181), + [sym_match_expression] = STATE(1181), + [sym_while_expression] = STATE(1181), + [sym_while_let_expression] = STATE(1181), + [sym_loop_expression] = STATE(1181), + [sym_for_expression] = STATE(1181), + [sym_closure_expression] = STATE(1181), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1181), + [sym_continue_expression] = STATE(1181), + [sym_index_expression] = STATE(1181), + [sym_await_expression] = STATE(1181), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1181), + [sym_async_block] = STATE(1181), + [sym_block] = STATE(1181), + [sym__literal] = STATE(1181), + [sym_string_literal] = STATE(1181), + [sym_boolean_literal] = STATE(1181), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -23869,9 +24614,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(919), + [sym_integer_literal] = ACTIONS(941), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(919), + [sym_char_literal] = ACTIONS(941), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -23879,256 +24624,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(919), - [sym_float_literal] = ACTIONS(919), + [sym_raw_string_literal] = ACTIONS(941), + [sym_float_literal] = ACTIONS(941), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1106), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1106), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1106), - [sym_unary_expression] = STATE(1106), - [sym_try_expression] = STATE(1106), - [sym_reference_expression] = STATE(1106), - [sym_binary_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1106), - [sym_compound_assignment_expr] = STATE(1106), - [sym_type_cast_expression] = STATE(1106), - [sym_return_expression] = STATE(1106), - [sym_call_expression] = STATE(1106), - [sym_array_expression] = STATE(1106), - [sym_parenthesized_expression] = STATE(1106), - [sym_tuple_expression] = STATE(1106), - [sym_unit_expression] = STATE(1106), - [sym_struct_expression] = STATE(1106), - [sym_if_expression] = STATE(1106), - [sym_if_let_expression] = STATE(1106), - [sym_match_expression] = STATE(1106), - [sym_while_expression] = STATE(1106), - [sym_while_let_expression] = STATE(1106), - [sym_loop_expression] = STATE(1106), - [sym_for_expression] = STATE(1106), - [sym_closure_expression] = STATE(1106), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1106), - [sym_continue_expression] = STATE(1106), - [sym_index_expression] = STATE(1106), - [sym_await_expression] = STATE(1106), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1106), - [sym_async_block] = STATE(1106), - [sym_block] = STATE(1106), - [sym__literal] = STATE(1106), - [sym_string_literal] = STATE(1106), - [sym_boolean_literal] = STATE(1106), - [sym_identifier] = ACTIONS(355), + [152] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1207), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1207), + [sym_macro_invocation] = STATE(1207), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1207), + [sym_unary_expression] = STATE(1207), + [sym_try_expression] = STATE(1207), + [sym_reference_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1207), + [sym_compound_assignment_expr] = STATE(1207), + [sym_type_cast_expression] = STATE(1207), + [sym_return_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_array_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_tuple_expression] = STATE(1207), + [sym_unit_expression] = STATE(1207), + [sym_struct_expression] = STATE(1207), + [sym_if_expression] = STATE(1207), + [sym_if_let_expression] = STATE(1207), + [sym_match_expression] = STATE(1207), + [sym_while_expression] = STATE(1207), + [sym_while_let_expression] = STATE(1207), + [sym_loop_expression] = STATE(1207), + [sym_for_expression] = STATE(1207), + [sym_closure_expression] = STATE(1207), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1207), + [sym_continue_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_await_expression] = STATE(1207), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1207), + [sym_async_block] = STATE(1207), + [sym_block] = STATE(1207), + [sym__literal] = STATE(1207), + [sym_string_literal] = STATE(1207), + [sym_boolean_literal] = STATE(1207), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(921), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), - [sym_block_comment] = ACTIONS(3), - }, - [146] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(1742), - [sym_variadic_parameter] = STATE(1742), - [sym_parameter] = STATE(1742), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1728), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1728), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1728), - [sym_tuple_type] = STATE(1728), - [sym_unit_type] = STATE(1728), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1728), - [sym_reference_type] = STATE(1728), - [sym_pointer_type] = STATE(1728), - [sym_empty_type] = STATE(1728), - [sym_abstract_type] = STATE(1728), - [sym_dynamic_type] = STATE(1728), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(943), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(943), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(943), + [sym_float_literal] = ACTIONS(943), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1209), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(1209), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1209), - [sym_unary_expression] = STATE(1209), - [sym_try_expression] = STATE(1209), - [sym_reference_expression] = STATE(1209), - [sym_binary_expression] = STATE(1209), - [sym_assignment_expression] = STATE(1209), - [sym_compound_assignment_expr] = STATE(1209), - [sym_type_cast_expression] = STATE(1209), - [sym_return_expression] = STATE(1209), - [sym_call_expression] = STATE(1209), - [sym_array_expression] = STATE(1209), - [sym_parenthesized_expression] = STATE(1209), - [sym_tuple_expression] = STATE(1209), - [sym_unit_expression] = STATE(1209), - [sym_struct_expression] = STATE(1209), - [sym_if_expression] = STATE(1209), - [sym_if_let_expression] = STATE(1209), - [sym_match_expression] = STATE(1209), - [sym_while_expression] = STATE(1209), - [sym_while_let_expression] = STATE(1209), - [sym_loop_expression] = STATE(1209), - [sym_for_expression] = STATE(1209), - [sym_closure_expression] = STATE(1209), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1209), - [sym_continue_expression] = STATE(1209), - [sym_index_expression] = STATE(1209), - [sym_await_expression] = STATE(1209), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1209), - [sym_async_block] = STATE(1209), - [sym_block] = STATE(1209), - [sym__literal] = STATE(1209), - [sym_string_literal] = STATE(1209), - [sym_boolean_literal] = STATE(1209), + [153] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(998), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(998), + [sym_macro_invocation] = STATE(998), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(998), + [sym_unary_expression] = STATE(998), + [sym_try_expression] = STATE(998), + [sym_reference_expression] = STATE(998), + [sym_binary_expression] = STATE(998), + [sym_assignment_expression] = STATE(998), + [sym_compound_assignment_expr] = STATE(998), + [sym_type_cast_expression] = STATE(998), + [sym_return_expression] = STATE(998), + [sym_call_expression] = STATE(998), + [sym_array_expression] = STATE(998), + [sym_parenthesized_expression] = STATE(998), + [sym_tuple_expression] = STATE(998), + [sym_unit_expression] = STATE(998), + [sym_struct_expression] = STATE(998), + [sym_if_expression] = STATE(998), + [sym_if_let_expression] = STATE(998), + [sym_match_expression] = STATE(998), + [sym_while_expression] = STATE(998), + [sym_while_let_expression] = STATE(998), + [sym_loop_expression] = STATE(998), + [sym_for_expression] = STATE(998), + [sym_closure_expression] = STATE(998), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(998), + [sym_continue_expression] = STATE(998), + [sym_index_expression] = STATE(998), + [sym_await_expression] = STATE(998), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(998), + [sym_async_block] = STATE(998), + [sym_block] = STATE(998), + [sym__literal] = STATE(998), + [sym_string_literal] = STATE(998), + [sym_boolean_literal] = STATE(998), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -24172,9 +24816,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(929), + [sym_integer_literal] = ACTIONS(945), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(929), + [sym_char_literal] = ACTIONS(945), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -24182,54 +24826,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(929), - [sym_float_literal] = ACTIONS(929), + [sym_raw_string_literal] = ACTIONS(945), + [sym_float_literal] = ACTIONS(945), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1175), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(1175), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1175), - [sym_unary_expression] = STATE(1175), - [sym_try_expression] = STATE(1175), - [sym_reference_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_assignment_expression] = STATE(1175), - [sym_compound_assignment_expr] = STATE(1175), - [sym_type_cast_expression] = STATE(1175), - [sym_return_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_array_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_tuple_expression] = STATE(1175), - [sym_unit_expression] = STATE(1175), - [sym_struct_expression] = STATE(1175), - [sym_if_expression] = STATE(1175), - [sym_if_let_expression] = STATE(1175), - [sym_match_expression] = STATE(1175), - [sym_while_expression] = STATE(1175), - [sym_while_let_expression] = STATE(1175), - [sym_loop_expression] = STATE(1175), - [sym_for_expression] = STATE(1175), - [sym_closure_expression] = STATE(1175), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1175), - [sym_continue_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_await_expression] = STATE(1175), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1175), - [sym_async_block] = STATE(1175), - [sym_block] = STATE(1175), - [sym__literal] = STATE(1175), - [sym_string_literal] = STATE(1175), - [sym_boolean_literal] = STATE(1175), + [154] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(905), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(905), + [sym_macro_invocation] = STATE(905), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(905), + [sym_unary_expression] = STATE(905), + [sym_try_expression] = STATE(905), + [sym_reference_expression] = STATE(905), + [sym_binary_expression] = STATE(905), + [sym_assignment_expression] = STATE(905), + [sym_compound_assignment_expr] = STATE(905), + [sym_type_cast_expression] = STATE(905), + [sym_return_expression] = STATE(905), + [sym_call_expression] = STATE(905), + [sym_array_expression] = STATE(905), + [sym_parenthesized_expression] = STATE(905), + [sym_tuple_expression] = STATE(905), + [sym_unit_expression] = STATE(905), + [sym_struct_expression] = STATE(905), + [sym_if_expression] = STATE(905), + [sym_if_let_expression] = STATE(905), + [sym_match_expression] = STATE(905), + [sym_while_expression] = STATE(905), + [sym_while_let_expression] = STATE(905), + [sym_loop_expression] = STATE(905), + [sym_for_expression] = STATE(905), + [sym_closure_expression] = STATE(905), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(905), + [sym_continue_expression] = STATE(905), + [sym_index_expression] = STATE(905), + [sym_await_expression] = STATE(905), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(905), + [sym_async_block] = STATE(905), + [sym_block] = STATE(905), + [sym__literal] = STATE(905), + [sym_string_literal] = STATE(905), + [sym_boolean_literal] = STATE(905), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -24273,9 +24917,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(931), + [sym_integer_literal] = ACTIONS(947), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(931), + [sym_char_literal] = ACTIONS(947), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -24283,54 +24927,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(931), - [sym_float_literal] = ACTIONS(931), + [sym_raw_string_literal] = ACTIONS(947), + [sym_float_literal] = ACTIONS(947), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(1138), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1138), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_if_let_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_while_let_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1138), - [sym_boolean_literal] = STATE(1138), + [155] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(992), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(992), + [sym_macro_invocation] = STATE(992), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(992), + [sym_unary_expression] = STATE(992), + [sym_try_expression] = STATE(992), + [sym_reference_expression] = STATE(992), + [sym_binary_expression] = STATE(992), + [sym_assignment_expression] = STATE(992), + [sym_compound_assignment_expr] = STATE(992), + [sym_type_cast_expression] = STATE(992), + [sym_return_expression] = STATE(992), + [sym_call_expression] = STATE(992), + [sym_array_expression] = STATE(992), + [sym_parenthesized_expression] = STATE(992), + [sym_tuple_expression] = STATE(992), + [sym_unit_expression] = STATE(992), + [sym_struct_expression] = STATE(992), + [sym_if_expression] = STATE(992), + [sym_if_let_expression] = STATE(992), + [sym_match_expression] = STATE(992), + [sym_while_expression] = STATE(992), + [sym_while_let_expression] = STATE(992), + [sym_loop_expression] = STATE(992), + [sym_for_expression] = STATE(992), + [sym_closure_expression] = STATE(992), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(992), + [sym_continue_expression] = STATE(992), + [sym_index_expression] = STATE(992), + [sym_await_expression] = STATE(992), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(992), + [sym_async_block] = STATE(992), + [sym_block] = STATE(992), + [sym__literal] = STATE(992), + [sym_string_literal] = STATE(992), + [sym_boolean_literal] = STATE(992), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -24374,9 +25018,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(949), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(933), + [sym_char_literal] = ACTIONS(949), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -24384,54 +25028,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(933), - [sym_float_literal] = ACTIONS(933), + [sym_raw_string_literal] = ACTIONS(949), + [sym_float_literal] = ACTIONS(949), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1150), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1150), - [sym_macro_invocation] = STATE(1150), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1150), - [sym_unary_expression] = STATE(1150), - [sym_try_expression] = STATE(1150), - [sym_reference_expression] = STATE(1150), - [sym_binary_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1150), - [sym_compound_assignment_expr] = STATE(1150), - [sym_type_cast_expression] = STATE(1150), - [sym_return_expression] = STATE(1150), - [sym_call_expression] = STATE(1150), - [sym_array_expression] = STATE(1150), - [sym_parenthesized_expression] = STATE(1150), - [sym_tuple_expression] = STATE(1150), - [sym_unit_expression] = STATE(1150), - [sym_struct_expression] = STATE(1150), - [sym_if_expression] = STATE(1150), - [sym_if_let_expression] = STATE(1150), - [sym_match_expression] = STATE(1150), - [sym_while_expression] = STATE(1150), - [sym_while_let_expression] = STATE(1150), - [sym_loop_expression] = STATE(1150), - [sym_for_expression] = STATE(1150), - [sym_closure_expression] = STATE(1150), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1150), - [sym_continue_expression] = STATE(1150), - [sym_index_expression] = STATE(1150), - [sym_await_expression] = STATE(1150), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1150), - [sym_async_block] = STATE(1150), - [sym_block] = STATE(1150), - [sym__literal] = STATE(1150), - [sym_string_literal] = STATE(1150), - [sym_boolean_literal] = STATE(1150), + [156] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1154), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(1154), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1154), + [sym_unary_expression] = STATE(1154), + [sym_try_expression] = STATE(1154), + [sym_reference_expression] = STATE(1154), + [sym_binary_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1154), + [sym_compound_assignment_expr] = STATE(1154), + [sym_type_cast_expression] = STATE(1154), + [sym_return_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_array_expression] = STATE(1154), + [sym_parenthesized_expression] = STATE(1154), + [sym_tuple_expression] = STATE(1154), + [sym_unit_expression] = STATE(1154), + [sym_struct_expression] = STATE(1154), + [sym_if_expression] = STATE(1154), + [sym_if_let_expression] = STATE(1154), + [sym_match_expression] = STATE(1154), + [sym_while_expression] = STATE(1154), + [sym_while_let_expression] = STATE(1154), + [sym_loop_expression] = STATE(1154), + [sym_for_expression] = STATE(1154), + [sym_closure_expression] = STATE(1154), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1154), + [sym_continue_expression] = STATE(1154), + [sym_index_expression] = STATE(1154), + [sym_await_expression] = STATE(1154), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1154), + [sym_async_block] = STATE(1154), + [sym_block] = STATE(1154), + [sym__literal] = STATE(1154), + [sym_string_literal] = STATE(1154), + [sym_boolean_literal] = STATE(1154), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -24475,9 +25119,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(951), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(935), + [sym_char_literal] = ACTIONS(951), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -24485,59 +25129,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(935), - [sym_float_literal] = ACTIONS(935), + [sym_raw_string_literal] = ACTIONS(951), + [sym_float_literal] = ACTIONS(951), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1122), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(1122), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1122), - [sym_unary_expression] = STATE(1122), - [sym_try_expression] = STATE(1122), - [sym_reference_expression] = STATE(1122), - [sym_binary_expression] = STATE(1122), - [sym_assignment_expression] = STATE(1122), - [sym_compound_assignment_expr] = STATE(1122), - [sym_type_cast_expression] = STATE(1122), - [sym_return_expression] = STATE(1122), - [sym_call_expression] = STATE(1122), - [sym_array_expression] = STATE(1122), - [sym_parenthesized_expression] = STATE(1122), - [sym_tuple_expression] = STATE(1122), - [sym_unit_expression] = STATE(1122), - [sym_struct_expression] = STATE(1122), - [sym_if_expression] = STATE(1122), - [sym_if_let_expression] = STATE(1122), - [sym_match_expression] = STATE(1122), - [sym_while_expression] = STATE(1122), - [sym_while_let_expression] = STATE(1122), - [sym_loop_expression] = STATE(1122), - [sym_for_expression] = STATE(1122), - [sym_closure_expression] = STATE(1122), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1122), - [sym_continue_expression] = STATE(1122), - [sym_index_expression] = STATE(1122), - [sym_await_expression] = STATE(1122), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1122), - [sym_async_block] = STATE(1122), - [sym_block] = STATE(1122), - [sym__literal] = STATE(1122), - [sym_string_literal] = STATE(1122), - [sym_boolean_literal] = STATE(1122), + [157] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1099), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1099), + [sym_macro_invocation] = STATE(1099), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1099), + [sym_unary_expression] = STATE(1099), + [sym_try_expression] = STATE(1099), + [sym_reference_expression] = STATE(1099), + [sym_binary_expression] = STATE(1099), + [sym_assignment_expression] = STATE(1099), + [sym_compound_assignment_expr] = STATE(1099), + [sym_type_cast_expression] = STATE(1099), + [sym_return_expression] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_array_expression] = STATE(1099), + [sym_parenthesized_expression] = STATE(1099), + [sym_tuple_expression] = STATE(1099), + [sym_unit_expression] = STATE(1099), + [sym_struct_expression] = STATE(1099), + [sym_if_expression] = STATE(1099), + [sym_if_let_expression] = STATE(1099), + [sym_match_expression] = STATE(1099), + [sym_while_expression] = STATE(1099), + [sym_while_let_expression] = STATE(1099), + [sym_loop_expression] = STATE(1099), + [sym_for_expression] = STATE(1099), + [sym_closure_expression] = STATE(1099), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1099), + [sym_continue_expression] = STATE(1099), + [sym_index_expression] = STATE(1099), + [sym_await_expression] = STATE(1099), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1099), + [sym_async_block] = STATE(1099), + [sym_block] = STATE(1099), + [sym__literal] = STATE(1099), + [sym_string_literal] = STATE(1099), + [sym_boolean_literal] = STATE(1099), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -24568,17 +25212,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(937), + [sym_integer_literal] = ACTIONS(953), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(937), + [sym_char_literal] = ACTIONS(953), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -24586,54 +25230,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), + [sym_raw_string_literal] = ACTIONS(953), + [sym_float_literal] = ACTIONS(953), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1206), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(1206), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1206), - [sym_unary_expression] = STATE(1206), - [sym_try_expression] = STATE(1206), - [sym_reference_expression] = STATE(1206), - [sym_binary_expression] = STATE(1206), - [sym_assignment_expression] = STATE(1206), - [sym_compound_assignment_expr] = STATE(1206), - [sym_type_cast_expression] = STATE(1206), - [sym_return_expression] = STATE(1206), - [sym_call_expression] = STATE(1206), - [sym_array_expression] = STATE(1206), - [sym_parenthesized_expression] = STATE(1206), - [sym_tuple_expression] = STATE(1206), - [sym_unit_expression] = STATE(1206), - [sym_struct_expression] = STATE(1206), - [sym_if_expression] = STATE(1206), - [sym_if_let_expression] = STATE(1206), - [sym_match_expression] = STATE(1206), - [sym_while_expression] = STATE(1206), - [sym_while_let_expression] = STATE(1206), - [sym_loop_expression] = STATE(1206), - [sym_for_expression] = STATE(1206), - [sym_closure_expression] = STATE(1206), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1206), - [sym_continue_expression] = STATE(1206), - [sym_index_expression] = STATE(1206), - [sym_await_expression] = STATE(1206), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1206), - [sym_async_block] = STATE(1206), - [sym_block] = STATE(1206), - [sym__literal] = STATE(1206), - [sym_string_literal] = STATE(1206), - [sym_boolean_literal] = STATE(1206), + [158] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1178), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1178), + [sym_macro_invocation] = STATE(1178), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1178), + [sym_unary_expression] = STATE(1178), + [sym_try_expression] = STATE(1178), + [sym_reference_expression] = STATE(1178), + [sym_binary_expression] = STATE(1178), + [sym_assignment_expression] = STATE(1178), + [sym_compound_assignment_expr] = STATE(1178), + [sym_type_cast_expression] = STATE(1178), + [sym_return_expression] = STATE(1178), + [sym_call_expression] = STATE(1178), + [sym_array_expression] = STATE(1178), + [sym_parenthesized_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1178), + [sym_unit_expression] = STATE(1178), + [sym_struct_expression] = STATE(1178), + [sym_if_expression] = STATE(1178), + [sym_if_let_expression] = STATE(1178), + [sym_match_expression] = STATE(1178), + [sym_while_expression] = STATE(1178), + [sym_while_let_expression] = STATE(1178), + [sym_loop_expression] = STATE(1178), + [sym_for_expression] = STATE(1178), + [sym_closure_expression] = STATE(1178), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1178), + [sym_continue_expression] = STATE(1178), + [sym_index_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1178), + [sym_async_block] = STATE(1178), + [sym_block] = STATE(1178), + [sym__literal] = STATE(1178), + [sym_string_literal] = STATE(1178), + [sym_boolean_literal] = STATE(1178), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -24677,9 +25321,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(939), + [sym_integer_literal] = ACTIONS(955), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(939), + [sym_char_literal] = ACTIONS(955), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -24687,59 +25331,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(939), - [sym_float_literal] = ACTIONS(939), + [sym_raw_string_literal] = ACTIONS(955), + [sym_float_literal] = ACTIONS(955), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1126), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1126), - [sym_macro_invocation] = STATE(1126), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1126), - [sym_unary_expression] = STATE(1126), - [sym_try_expression] = STATE(1126), - [sym_reference_expression] = STATE(1126), - [sym_binary_expression] = STATE(1126), - [sym_assignment_expression] = STATE(1126), - [sym_compound_assignment_expr] = STATE(1126), - [sym_type_cast_expression] = STATE(1126), - [sym_return_expression] = STATE(1126), - [sym_call_expression] = STATE(1126), - [sym_array_expression] = STATE(1126), - [sym_parenthesized_expression] = STATE(1126), - [sym_tuple_expression] = STATE(1126), - [sym_unit_expression] = STATE(1126), - [sym_struct_expression] = STATE(1126), - [sym_if_expression] = STATE(1126), - [sym_if_let_expression] = STATE(1126), - [sym_match_expression] = STATE(1126), - [sym_while_expression] = STATE(1126), - [sym_while_let_expression] = STATE(1126), - [sym_loop_expression] = STATE(1126), - [sym_for_expression] = STATE(1126), - [sym_closure_expression] = STATE(1126), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1126), - [sym_continue_expression] = STATE(1126), - [sym_index_expression] = STATE(1126), - [sym_await_expression] = STATE(1126), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1126), - [sym_async_block] = STATE(1126), - [sym_block] = STATE(1126), - [sym__literal] = STATE(1126), - [sym_string_literal] = STATE(1126), - [sym_boolean_literal] = STATE(1126), + [159] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1145), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(1145), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1145), + [sym_unary_expression] = STATE(1145), + [sym_try_expression] = STATE(1145), + [sym_reference_expression] = STATE(1145), + [sym_binary_expression] = STATE(1145), + [sym_assignment_expression] = STATE(1145), + [sym_compound_assignment_expr] = STATE(1145), + [sym_type_cast_expression] = STATE(1145), + [sym_return_expression] = STATE(1145), + [sym_call_expression] = STATE(1145), + [sym_array_expression] = STATE(1145), + [sym_parenthesized_expression] = STATE(1145), + [sym_tuple_expression] = STATE(1145), + [sym_unit_expression] = STATE(1145), + [sym_struct_expression] = STATE(1145), + [sym_if_expression] = STATE(1145), + [sym_if_let_expression] = STATE(1145), + [sym_match_expression] = STATE(1145), + [sym_while_expression] = STATE(1145), + [sym_while_let_expression] = STATE(1145), + [sym_loop_expression] = STATE(1145), + [sym_for_expression] = STATE(1145), + [sym_closure_expression] = STATE(1145), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1145), + [sym_continue_expression] = STATE(1145), + [sym_index_expression] = STATE(1145), + [sym_await_expression] = STATE(1145), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1145), + [sym_async_block] = STATE(1145), + [sym_block] = STATE(1145), + [sym__literal] = STATE(1145), + [sym_string_literal] = STATE(1145), + [sym_boolean_literal] = STATE(1145), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -24770,17 +25414,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(941), + [sym_integer_literal] = ACTIONS(957), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(941), + [sym_char_literal] = ACTIONS(957), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -24788,54 +25432,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(941), - [sym_float_literal] = ACTIONS(941), + [sym_raw_string_literal] = ACTIONS(957), + [sym_float_literal] = ACTIONS(957), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1154), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(1154), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1154), - [sym_unary_expression] = STATE(1154), - [sym_try_expression] = STATE(1154), - [sym_reference_expression] = STATE(1154), - [sym_binary_expression] = STATE(1154), - [sym_assignment_expression] = STATE(1154), - [sym_compound_assignment_expr] = STATE(1154), - [sym_type_cast_expression] = STATE(1154), - [sym_return_expression] = STATE(1154), - [sym_call_expression] = STATE(1154), - [sym_array_expression] = STATE(1154), - [sym_parenthesized_expression] = STATE(1154), - [sym_tuple_expression] = STATE(1154), - [sym_unit_expression] = STATE(1154), - [sym_struct_expression] = STATE(1154), - [sym_if_expression] = STATE(1154), - [sym_if_let_expression] = STATE(1154), - [sym_match_expression] = STATE(1154), - [sym_while_expression] = STATE(1154), - [sym_while_let_expression] = STATE(1154), - [sym_loop_expression] = STATE(1154), - [sym_for_expression] = STATE(1154), - [sym_closure_expression] = STATE(1154), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1154), - [sym_continue_expression] = STATE(1154), - [sym_index_expression] = STATE(1154), - [sym_await_expression] = STATE(1154), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1154), - [sym_async_block] = STATE(1154), - [sym_block] = STATE(1154), - [sym__literal] = STATE(1154), - [sym_string_literal] = STATE(1154), - [sym_boolean_literal] = STATE(1154), + [160] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(940), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(940), + [sym_macro_invocation] = STATE(940), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(940), + [sym_unary_expression] = STATE(940), + [sym_try_expression] = STATE(940), + [sym_reference_expression] = STATE(940), + [sym_binary_expression] = STATE(940), + [sym_assignment_expression] = STATE(940), + [sym_compound_assignment_expr] = STATE(940), + [sym_type_cast_expression] = STATE(940), + [sym_return_expression] = STATE(940), + [sym_call_expression] = STATE(940), + [sym_array_expression] = STATE(940), + [sym_parenthesized_expression] = STATE(940), + [sym_tuple_expression] = STATE(940), + [sym_unit_expression] = STATE(940), + [sym_struct_expression] = STATE(940), + [sym_if_expression] = STATE(940), + [sym_if_let_expression] = STATE(940), + [sym_match_expression] = STATE(940), + [sym_while_expression] = STATE(940), + [sym_while_let_expression] = STATE(940), + [sym_loop_expression] = STATE(940), + [sym_for_expression] = STATE(940), + [sym_closure_expression] = STATE(940), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(940), + [sym_continue_expression] = STATE(940), + [sym_index_expression] = STATE(940), + [sym_await_expression] = STATE(940), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(940), + [sym_async_block] = STATE(940), + [sym_block] = STATE(940), + [sym__literal] = STATE(940), + [sym_string_literal] = STATE(940), + [sym_boolean_literal] = STATE(940), + [sym_identifier] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(301), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(361), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(959), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(959), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(959), + [sym_float_literal] = ACTIONS(959), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1097), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1097), + [sym_macro_invocation] = STATE(1097), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1097), + [sym_unary_expression] = STATE(1097), + [sym_try_expression] = STATE(1097), + [sym_reference_expression] = STATE(1097), + [sym_binary_expression] = STATE(1097), + [sym_assignment_expression] = STATE(1097), + [sym_compound_assignment_expr] = STATE(1097), + [sym_type_cast_expression] = STATE(1097), + [sym_return_expression] = STATE(1097), + [sym_call_expression] = STATE(1097), + [sym_array_expression] = STATE(1097), + [sym_parenthesized_expression] = STATE(1097), + [sym_tuple_expression] = STATE(1097), + [sym_unit_expression] = STATE(1097), + [sym_struct_expression] = STATE(1097), + [sym_if_expression] = STATE(1097), + [sym_if_let_expression] = STATE(1097), + [sym_match_expression] = STATE(1097), + [sym_while_expression] = STATE(1097), + [sym_while_let_expression] = STATE(1097), + [sym_loop_expression] = STATE(1097), + [sym_for_expression] = STATE(1097), + [sym_closure_expression] = STATE(1097), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1097), + [sym_continue_expression] = STATE(1097), + [sym_index_expression] = STATE(1097), + [sym_await_expression] = STATE(1097), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1097), + [sym_async_block] = STATE(1097), + [sym_block] = STATE(1097), + [sym__literal] = STATE(1097), + [sym_string_literal] = STATE(1097), + [sym_boolean_literal] = STATE(1097), + [sym_identifier] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(301), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(361), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(961), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(961), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(961), + [sym_float_literal] = ACTIONS(961), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1132), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1132), + [sym_macro_invocation] = STATE(1132), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1132), + [sym_unary_expression] = STATE(1132), + [sym_try_expression] = STATE(1132), + [sym_reference_expression] = STATE(1132), + [sym_binary_expression] = STATE(1132), + [sym_assignment_expression] = STATE(1132), + [sym_compound_assignment_expr] = STATE(1132), + [sym_type_cast_expression] = STATE(1132), + [sym_return_expression] = STATE(1132), + [sym_call_expression] = STATE(1132), + [sym_array_expression] = STATE(1132), + [sym_parenthesized_expression] = STATE(1132), + [sym_tuple_expression] = STATE(1132), + [sym_unit_expression] = STATE(1132), + [sym_struct_expression] = STATE(1132), + [sym_if_expression] = STATE(1132), + [sym_if_let_expression] = STATE(1132), + [sym_match_expression] = STATE(1132), + [sym_while_expression] = STATE(1132), + [sym_while_let_expression] = STATE(1132), + [sym_loop_expression] = STATE(1132), + [sym_for_expression] = STATE(1132), + [sym_closure_expression] = STATE(1132), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1132), + [sym_continue_expression] = STATE(1132), + [sym_index_expression] = STATE(1132), + [sym_await_expression] = STATE(1132), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1132), + [sym_async_block] = STATE(1132), + [sym_block] = STATE(1132), + [sym__literal] = STATE(1132), + [sym_string_literal] = STATE(1132), + [sym_boolean_literal] = STATE(1132), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -24879,9 +25725,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(963), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(943), + [sym_char_literal] = ACTIONS(963), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -24889,59 +25735,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(943), - [sym_float_literal] = ACTIONS(943), + [sym_raw_string_literal] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1128), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1128), - [sym_macro_invocation] = STATE(1128), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1128), - [sym_unary_expression] = STATE(1128), - [sym_try_expression] = STATE(1128), - [sym_reference_expression] = STATE(1128), - [sym_binary_expression] = STATE(1128), - [sym_assignment_expression] = STATE(1128), - [sym_compound_assignment_expr] = STATE(1128), - [sym_type_cast_expression] = STATE(1128), - [sym_return_expression] = STATE(1128), - [sym_call_expression] = STATE(1128), - [sym_array_expression] = STATE(1128), - [sym_parenthesized_expression] = STATE(1128), - [sym_tuple_expression] = STATE(1128), - [sym_unit_expression] = STATE(1128), - [sym_struct_expression] = STATE(1128), - [sym_if_expression] = STATE(1128), - [sym_if_let_expression] = STATE(1128), - [sym_match_expression] = STATE(1128), - [sym_while_expression] = STATE(1128), - [sym_while_let_expression] = STATE(1128), - [sym_loop_expression] = STATE(1128), - [sym_for_expression] = STATE(1128), - [sym_closure_expression] = STATE(1128), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1128), - [sym_continue_expression] = STATE(1128), - [sym_index_expression] = STATE(1128), - [sym_await_expression] = STATE(1128), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1128), - [sym_async_block] = STATE(1128), - [sym_block] = STATE(1128), - [sym__literal] = STATE(1128), - [sym_string_literal] = STATE(1128), - [sym_boolean_literal] = STATE(1128), + [163] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1174), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(1174), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1174), + [sym_unary_expression] = STATE(1174), + [sym_try_expression] = STATE(1174), + [sym_reference_expression] = STATE(1174), + [sym_binary_expression] = STATE(1174), + [sym_assignment_expression] = STATE(1174), + [sym_compound_assignment_expr] = STATE(1174), + [sym_type_cast_expression] = STATE(1174), + [sym_return_expression] = STATE(1174), + [sym_call_expression] = STATE(1174), + [sym_array_expression] = STATE(1174), + [sym_parenthesized_expression] = STATE(1174), + [sym_tuple_expression] = STATE(1174), + [sym_unit_expression] = STATE(1174), + [sym_struct_expression] = STATE(1174), + [sym_if_expression] = STATE(1174), + [sym_if_let_expression] = STATE(1174), + [sym_match_expression] = STATE(1174), + [sym_while_expression] = STATE(1174), + [sym_while_let_expression] = STATE(1174), + [sym_loop_expression] = STATE(1174), + [sym_for_expression] = STATE(1174), + [sym_closure_expression] = STATE(1174), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1174), + [sym_continue_expression] = STATE(1174), + [sym_index_expression] = STATE(1174), + [sym_await_expression] = STATE(1174), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1174), + [sym_async_block] = STATE(1174), + [sym_block] = STATE(1174), + [sym__literal] = STATE(1174), + [sym_string_literal] = STATE(1174), + [sym_boolean_literal] = STATE(1174), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -24972,17 +25818,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(945), + [sym_integer_literal] = ACTIONS(965), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(945), + [sym_char_literal] = ACTIONS(965), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -24990,59 +25836,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(945), - [sym_float_literal] = ACTIONS(945), + [sym_raw_string_literal] = ACTIONS(965), + [sym_float_literal] = ACTIONS(965), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1153), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(1153), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1153), - [sym_unary_expression] = STATE(1153), - [sym_try_expression] = STATE(1153), - [sym_reference_expression] = STATE(1153), - [sym_binary_expression] = STATE(1153), - [sym_assignment_expression] = STATE(1153), - [sym_compound_assignment_expr] = STATE(1153), - [sym_type_cast_expression] = STATE(1153), - [sym_return_expression] = STATE(1153), - [sym_call_expression] = STATE(1153), - [sym_array_expression] = STATE(1153), - [sym_parenthesized_expression] = STATE(1153), - [sym_tuple_expression] = STATE(1153), - [sym_unit_expression] = STATE(1153), - [sym_struct_expression] = STATE(1153), - [sym_if_expression] = STATE(1153), - [sym_if_let_expression] = STATE(1153), - [sym_match_expression] = STATE(1153), - [sym_while_expression] = STATE(1153), - [sym_while_let_expression] = STATE(1153), - [sym_loop_expression] = STATE(1153), - [sym_for_expression] = STATE(1153), - [sym_closure_expression] = STATE(1153), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1153), - [sym_continue_expression] = STATE(1153), - [sym_index_expression] = STATE(1153), - [sym_await_expression] = STATE(1153), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1153), - [sym_async_block] = STATE(1153), - [sym_block] = STATE(1153), - [sym__literal] = STATE(1153), - [sym_string_literal] = STATE(1153), - [sym_boolean_literal] = STATE(1153), + [164] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(905), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(905), + [sym_macro_invocation] = STATE(905), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(905), + [sym_unary_expression] = STATE(905), + [sym_try_expression] = STATE(905), + [sym_reference_expression] = STATE(905), + [sym_binary_expression] = STATE(905), + [sym_assignment_expression] = STATE(905), + [sym_compound_assignment_expr] = STATE(905), + [sym_type_cast_expression] = STATE(905), + [sym_return_expression] = STATE(905), + [sym_call_expression] = STATE(905), + [sym_array_expression] = STATE(905), + [sym_parenthesized_expression] = STATE(905), + [sym_tuple_expression] = STATE(905), + [sym_unit_expression] = STATE(905), + [sym_struct_expression] = STATE(905), + [sym_if_expression] = STATE(905), + [sym_if_let_expression] = STATE(905), + [sym_match_expression] = STATE(905), + [sym_while_expression] = STATE(905), + [sym_while_let_expression] = STATE(905), + [sym_loop_expression] = STATE(905), + [sym_for_expression] = STATE(905), + [sym_closure_expression] = STATE(905), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(905), + [sym_continue_expression] = STATE(905), + [sym_index_expression] = STATE(905), + [sym_await_expression] = STATE(905), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(905), + [sym_async_block] = STATE(905), + [sym_block] = STATE(905), + [sym__literal] = STATE(905), + [sym_string_literal] = STATE(905), + [sym_boolean_literal] = STATE(905), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -25073,12 +25919,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), [sym_integer_literal] = ACTIONS(947), @@ -25095,317 +25941,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(947), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(1742), - [sym_variadic_parameter] = STATE(1742), - [sym_parameter] = STATE(1742), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1728), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1728), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1728), - [sym_tuple_type] = STATE(1728), - [sym_unit_type] = STATE(1728), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1728), - [sym_reference_type] = STATE(1728), - [sym_pointer_type] = STATE(1728), - [sym_empty_type] = STATE(1728), - [sym_abstract_type] = STATE(1728), - [sym_dynamic_type] = STATE(1728), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1683), - [sym_tuple_pattern] = STATE(1683), - [sym_slice_pattern] = STATE(1683), - [sym_tuple_struct_pattern] = STATE(1683), - [sym_struct_pattern] = STATE(1683), - [sym_remaining_field_pattern] = STATE(1683), - [sym_mut_pattern] = STATE(1683), - [sym_range_pattern] = STATE(1683), - [sym_ref_pattern] = STATE(1683), - [sym_captured_pattern] = STATE(1683), - [sym_reference_pattern] = STATE(1683), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(787), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), - [sym_block_comment] = ACTIONS(3), - }, - [158] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(814), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(814), - [sym_macro_invocation] = STATE(814), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(814), - [sym_unary_expression] = STATE(814), - [sym_try_expression] = STATE(814), - [sym_reference_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_compound_assignment_expr] = STATE(814), - [sym_type_cast_expression] = STATE(814), - [sym_return_expression] = STATE(814), - [sym_call_expression] = STATE(814), - [sym_array_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(814), - [sym_tuple_expression] = STATE(814), - [sym_unit_expression] = STATE(814), - [sym_struct_expression] = STATE(814), - [sym_if_expression] = STATE(814), - [sym_if_let_expression] = STATE(814), - [sym_match_expression] = STATE(814), - [sym_while_expression] = STATE(814), - [sym_while_let_expression] = STATE(814), - [sym_loop_expression] = STATE(814), - [sym_for_expression] = STATE(814), - [sym_closure_expression] = STATE(814), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(814), - [sym_continue_expression] = STATE(814), - [sym_index_expression] = STATE(814), - [sym_await_expression] = STATE(814), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(814), - [sym_async_block] = STATE(814), - [sym_block] = STATE(814), - [sym__literal] = STATE(814), - [sym_string_literal] = STATE(814), - [sym_boolean_literal] = STATE(814), - [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(359), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(877), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(877), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(877), - [sym_float_literal] = ACTIONS(877), - [sym_block_comment] = ACTIONS(3), - }, - [159] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1201), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(1201), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1201), - [sym_unary_expression] = STATE(1201), - [sym_try_expression] = STATE(1201), - [sym_reference_expression] = STATE(1201), - [sym_binary_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1201), - [sym_compound_assignment_expr] = STATE(1201), - [sym_type_cast_expression] = STATE(1201), - [sym_return_expression] = STATE(1201), - [sym_call_expression] = STATE(1201), - [sym_array_expression] = STATE(1201), - [sym_parenthesized_expression] = STATE(1201), - [sym_tuple_expression] = STATE(1201), - [sym_unit_expression] = STATE(1201), - [sym_struct_expression] = STATE(1201), - [sym_if_expression] = STATE(1201), - [sym_if_let_expression] = STATE(1201), - [sym_match_expression] = STATE(1201), - [sym_while_expression] = STATE(1201), - [sym_while_let_expression] = STATE(1201), - [sym_loop_expression] = STATE(1201), - [sym_for_expression] = STATE(1201), - [sym_closure_expression] = STATE(1201), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1201), - [sym_continue_expression] = STATE(1201), - [sym_index_expression] = STATE(1201), - [sym_await_expression] = STATE(1201), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1201), - [sym_async_block] = STATE(1201), - [sym_block] = STATE(1201), - [sym__literal] = STATE(1201), - [sym_string_literal] = STATE(1201), - [sym_boolean_literal] = STATE(1201), - [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(359), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(953), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(953), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(953), - [sym_float_literal] = ACTIONS(953), - [sym_block_comment] = ACTIONS(3), - }, - [160] = { - [sym_bracketed_type] = STATE(2322), + [165] = { + [sym_bracketed_type] = STATE(2373), [sym_generic_function] = STATE(1208), - [sym_generic_type_with_turbofish] = STATE(1951), + [sym_generic_type_with_turbofish] = STATE(1752), [sym__expression] = STATE(1208), [sym_macro_invocation] = STATE(1208), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), [sym_range_expression] = STATE(1208), [sym_unary_expression] = STATE(1208), [sym_try_expression] = STATE(1208), @@ -25429,120 +25972,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(1208), [sym_for_expression] = STATE(1208), [sym_closure_expression] = STATE(1208), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), [sym_break_expression] = STATE(1208), [sym_continue_expression] = STATE(1208), [sym_index_expression] = STATE(1208), [sym_await_expression] = STATE(1208), - [sym_field_expression] = STATE(769), + [sym_field_expression] = STATE(902), [sym_unsafe_block] = STATE(1208), [sym_async_block] = STATE(1208), [sym_block] = STATE(1208), [sym__literal] = STATE(1208), [sym_string_literal] = STATE(1208), [sym_boolean_literal] = STATE(1208), - [sym_identifier] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(301), - [anon_sym_break] = ACTIONS(359), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(303), - [anon_sym_for] = ACTIONS(305), - [anon_sym_if] = ACTIONS(307), - [anon_sym_loop] = ACTIONS(309), - [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), - [anon_sym_union] = ACTIONS(303), - [anon_sym_unsafe] = ACTIONS(313), - [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(955), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(955), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(955), - [sym_float_literal] = ACTIONS(955), - [sym_block_comment] = ACTIONS(3), - }, - [161] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1121), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1121), - [sym_macro_invocation] = STATE(1121), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(1121), - [sym_try_expression] = STATE(1121), - [sym_reference_expression] = STATE(1121), - [sym_binary_expression] = STATE(1121), - [sym_assignment_expression] = STATE(1121), - [sym_compound_assignment_expr] = STATE(1121), - [sym_type_cast_expression] = STATE(1121), - [sym_return_expression] = STATE(1121), - [sym_call_expression] = STATE(1121), - [sym_array_expression] = STATE(1121), - [sym_parenthesized_expression] = STATE(1121), - [sym_tuple_expression] = STATE(1121), - [sym_unit_expression] = STATE(1121), - [sym_struct_expression] = STATE(1121), - [sym_if_expression] = STATE(1121), - [sym_if_let_expression] = STATE(1121), - [sym_match_expression] = STATE(1121), - [sym_while_expression] = STATE(1121), - [sym_while_let_expression] = STATE(1121), - [sym_loop_expression] = STATE(1121), - [sym_for_expression] = STATE(1121), - [sym_closure_expression] = STATE(1121), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1121), - [sym_continue_expression] = STATE(1121), - [sym_index_expression] = STATE(1121), - [sym_await_expression] = STATE(1121), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1121), - [sym_async_block] = STATE(1121), - [sym_block] = STATE(1121), - [sym__literal] = STATE(1121), - [sym_string_literal] = STATE(1121), - [sym_boolean_literal] = STATE(1121), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -25586,9 +26028,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(957), + [sym_integer_literal] = ACTIONS(967), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(957), + [sym_char_literal] = ACTIONS(967), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -25596,54 +26038,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(957), - [sym_float_literal] = ACTIONS(957), + [sym_raw_string_literal] = ACTIONS(967), + [sym_float_literal] = ACTIONS(967), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1118), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1118), - [sym_macro_invocation] = STATE(1118), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1118), - [sym_unary_expression] = STATE(1118), - [sym_try_expression] = STATE(1118), - [sym_reference_expression] = STATE(1118), - [sym_binary_expression] = STATE(1118), - [sym_assignment_expression] = STATE(1118), - [sym_compound_assignment_expr] = STATE(1118), - [sym_type_cast_expression] = STATE(1118), - [sym_return_expression] = STATE(1118), - [sym_call_expression] = STATE(1118), - [sym_array_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(1118), - [sym_tuple_expression] = STATE(1118), - [sym_unit_expression] = STATE(1118), - [sym_struct_expression] = STATE(1118), - [sym_if_expression] = STATE(1118), - [sym_if_let_expression] = STATE(1118), - [sym_match_expression] = STATE(1118), - [sym_while_expression] = STATE(1118), - [sym_while_let_expression] = STATE(1118), - [sym_loop_expression] = STATE(1118), - [sym_for_expression] = STATE(1118), - [sym_closure_expression] = STATE(1118), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1118), - [sym_continue_expression] = STATE(1118), - [sym_index_expression] = STATE(1118), - [sym_await_expression] = STATE(1118), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1118), - [sym_async_block] = STATE(1118), - [sym_block] = STATE(1118), - [sym__literal] = STATE(1118), - [sym_string_literal] = STATE(1118), - [sym_boolean_literal] = STATE(1118), + [166] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1163), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(1163), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1163), + [sym_unary_expression] = STATE(1163), + [sym_try_expression] = STATE(1163), + [sym_reference_expression] = STATE(1163), + [sym_binary_expression] = STATE(1163), + [sym_assignment_expression] = STATE(1163), + [sym_compound_assignment_expr] = STATE(1163), + [sym_type_cast_expression] = STATE(1163), + [sym_return_expression] = STATE(1163), + [sym_call_expression] = STATE(1163), + [sym_array_expression] = STATE(1163), + [sym_parenthesized_expression] = STATE(1163), + [sym_tuple_expression] = STATE(1163), + [sym_unit_expression] = STATE(1163), + [sym_struct_expression] = STATE(1163), + [sym_if_expression] = STATE(1163), + [sym_if_let_expression] = STATE(1163), + [sym_match_expression] = STATE(1163), + [sym_while_expression] = STATE(1163), + [sym_while_let_expression] = STATE(1163), + [sym_loop_expression] = STATE(1163), + [sym_for_expression] = STATE(1163), + [sym_closure_expression] = STATE(1163), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1163), + [sym_continue_expression] = STATE(1163), + [sym_index_expression] = STATE(1163), + [sym_await_expression] = STATE(1163), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1163), + [sym_async_block] = STATE(1163), + [sym_block] = STATE(1163), + [sym__literal] = STATE(1163), + [sym_string_literal] = STATE(1163), + [sym_boolean_literal] = STATE(1163), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -25687,9 +26129,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(959), + [sym_integer_literal] = ACTIONS(969), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(959), + [sym_char_literal] = ACTIONS(969), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -25697,59 +26139,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(959), - [sym_float_literal] = ACTIONS(959), + [sym_raw_string_literal] = ACTIONS(969), + [sym_float_literal] = ACTIONS(969), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1211), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(1211), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1211), - [sym_unary_expression] = STATE(1211), - [sym_try_expression] = STATE(1211), - [sym_reference_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_assignment_expression] = STATE(1211), - [sym_compound_assignment_expr] = STATE(1211), - [sym_type_cast_expression] = STATE(1211), - [sym_return_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_array_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_tuple_expression] = STATE(1211), - [sym_unit_expression] = STATE(1211), - [sym_struct_expression] = STATE(1211), - [sym_if_expression] = STATE(1211), - [sym_if_let_expression] = STATE(1211), - [sym_match_expression] = STATE(1211), - [sym_while_expression] = STATE(1211), - [sym_while_let_expression] = STATE(1211), - [sym_loop_expression] = STATE(1211), - [sym_for_expression] = STATE(1211), - [sym_closure_expression] = STATE(1211), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1211), - [sym_continue_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_await_expression] = STATE(1211), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1211), - [sym_async_block] = STATE(1211), - [sym_block] = STATE(1211), - [sym__literal] = STATE(1211), - [sym_string_literal] = STATE(1211), - [sym_boolean_literal] = STATE(1211), + [167] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1166), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(1166), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1166), + [sym_unary_expression] = STATE(1166), + [sym_try_expression] = STATE(1166), + [sym_reference_expression] = STATE(1166), + [sym_binary_expression] = STATE(1166), + [sym_assignment_expression] = STATE(1166), + [sym_compound_assignment_expr] = STATE(1166), + [sym_type_cast_expression] = STATE(1166), + [sym_return_expression] = STATE(1166), + [sym_call_expression] = STATE(1166), + [sym_array_expression] = STATE(1166), + [sym_parenthesized_expression] = STATE(1166), + [sym_tuple_expression] = STATE(1166), + [sym_unit_expression] = STATE(1166), + [sym_struct_expression] = STATE(1166), + [sym_if_expression] = STATE(1166), + [sym_if_let_expression] = STATE(1166), + [sym_match_expression] = STATE(1166), + [sym_while_expression] = STATE(1166), + [sym_while_let_expression] = STATE(1166), + [sym_loop_expression] = STATE(1166), + [sym_for_expression] = STATE(1166), + [sym_closure_expression] = STATE(1166), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1166), + [sym_continue_expression] = STATE(1166), + [sym_index_expression] = STATE(1166), + [sym_await_expression] = STATE(1166), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1166), + [sym_async_block] = STATE(1166), + [sym_block] = STATE(1166), + [sym__literal] = STATE(1166), + [sym_string_literal] = STATE(1166), + [sym_boolean_literal] = STATE(1166), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -25780,17 +26222,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(971), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(961), + [sym_char_literal] = ACTIONS(971), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -25798,18 +26240,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(961), - [sym_float_literal] = ACTIONS(961), + [sym_raw_string_literal] = ACTIONS(971), + [sym_float_literal] = ACTIONS(971), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2322), + [168] = { + [sym_bracketed_type] = STATE(2373), [sym_generic_function] = STATE(1203), - [sym_generic_type_with_turbofish] = STATE(1733), + [sym_generic_type_with_turbofish] = STATE(1752), [sym__expression] = STATE(1203), [sym_macro_invocation] = STATE(1203), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), [sym_range_expression] = STATE(1203), [sym_unary_expression] = STATE(1203), [sym_try_expression] = STATE(1203), @@ -25833,13 +26275,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(1203), [sym_for_expression] = STATE(1203), [sym_closure_expression] = STATE(1203), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), [sym_break_expression] = STATE(1203), [sym_continue_expression] = STATE(1203), [sym_index_expression] = STATE(1203), [sym_await_expression] = STATE(1203), - [sym_field_expression] = STATE(769), + [sym_field_expression] = STATE(902), [sym_unsafe_block] = STATE(1203), [sym_async_block] = STATE(1203), [sym_block] = STATE(1203), @@ -25889,9 +26331,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(973), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(963), + [sym_char_literal] = ACTIONS(973), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -25899,160 +26341,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(963), - [sym_float_literal] = ACTIONS(963), + [sym_raw_string_literal] = ACTIONS(973), + [sym_float_literal] = ACTIONS(973), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1148), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(1148), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1148), - [sym_unary_expression] = STATE(1148), - [sym_try_expression] = STATE(1148), - [sym_reference_expression] = STATE(1148), - [sym_binary_expression] = STATE(1148), - [sym_assignment_expression] = STATE(1148), - [sym_compound_assignment_expr] = STATE(1148), - [sym_type_cast_expression] = STATE(1148), - [sym_return_expression] = STATE(1148), - [sym_call_expression] = STATE(1148), - [sym_array_expression] = STATE(1148), - [sym_parenthesized_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1148), - [sym_unit_expression] = STATE(1148), - [sym_struct_expression] = STATE(1148), - [sym_if_expression] = STATE(1148), - [sym_if_let_expression] = STATE(1148), - [sym_match_expression] = STATE(1148), - [sym_while_expression] = STATE(1148), - [sym_while_let_expression] = STATE(1148), - [sym_loop_expression] = STATE(1148), - [sym_for_expression] = STATE(1148), - [sym_closure_expression] = STATE(1148), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1148), - [sym_continue_expression] = STATE(1148), - [sym_index_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1148), - [sym_async_block] = STATE(1148), - [sym_block] = STATE(1148), - [sym__literal] = STATE(1148), - [sym_string_literal] = STATE(1148), - [sym_boolean_literal] = STATE(1148), - [sym_identifier] = ACTIONS(355), + [169] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1089), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1089), + [sym_macro_invocation] = STATE(1089), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1089), + [sym_unary_expression] = STATE(1089), + [sym_try_expression] = STATE(1089), + [sym_reference_expression] = STATE(1089), + [sym_binary_expression] = STATE(1089), + [sym_assignment_expression] = STATE(1089), + [sym_compound_assignment_expr] = STATE(1089), + [sym_type_cast_expression] = STATE(1089), + [sym_return_expression] = STATE(1089), + [sym_call_expression] = STATE(1089), + [sym_array_expression] = STATE(1089), + [sym_parenthesized_expression] = STATE(1089), + [sym_tuple_expression] = STATE(1089), + [sym_unit_expression] = STATE(1089), + [sym_struct_expression] = STATE(1089), + [sym_if_expression] = STATE(1089), + [sym_if_let_expression] = STATE(1089), + [sym_match_expression] = STATE(1089), + [sym_while_expression] = STATE(1089), + [sym_while_let_expression] = STATE(1089), + [sym_loop_expression] = STATE(1089), + [sym_for_expression] = STATE(1089), + [sym_closure_expression] = STATE(1089), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1089), + [sym_continue_expression] = STATE(1089), + [sym_index_expression] = STATE(1089), + [sym_await_expression] = STATE(1089), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1089), + [sym_async_block] = STATE(1089), + [sym_block] = STATE(1089), + [sym__literal] = STATE(1089), + [sym_string_literal] = STATE(1089), + [sym_boolean_literal] = STATE(1089), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(383), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(975), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(383), + [sym_char_literal] = ACTIONS(975), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(383), - [sym_float_literal] = ACTIONS(383), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(975), + [sym_float_literal] = ACTIONS(975), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1125), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1125), - [sym_macro_invocation] = STATE(1125), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1125), - [sym_unary_expression] = STATE(1125), - [sym_try_expression] = STATE(1125), - [sym_reference_expression] = STATE(1125), - [sym_binary_expression] = STATE(1125), - [sym_assignment_expression] = STATE(1125), - [sym_compound_assignment_expr] = STATE(1125), - [sym_type_cast_expression] = STATE(1125), - [sym_return_expression] = STATE(1125), - [sym_call_expression] = STATE(1125), - [sym_array_expression] = STATE(1125), - [sym_parenthesized_expression] = STATE(1125), - [sym_tuple_expression] = STATE(1125), - [sym_unit_expression] = STATE(1125), - [sym_struct_expression] = STATE(1125), - [sym_if_expression] = STATE(1125), - [sym_if_let_expression] = STATE(1125), - [sym_match_expression] = STATE(1125), - [sym_while_expression] = STATE(1125), - [sym_while_let_expression] = STATE(1125), - [sym_loop_expression] = STATE(1125), - [sym_for_expression] = STATE(1125), - [sym_closure_expression] = STATE(1125), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1125), - [sym_continue_expression] = STATE(1125), - [sym_index_expression] = STATE(1125), - [sym_await_expression] = STATE(1125), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1125), - [sym_async_block] = STATE(1125), - [sym_block] = STATE(1125), - [sym__literal] = STATE(1125), - [sym_string_literal] = STATE(1125), - [sym_boolean_literal] = STATE(1125), + [170] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1150), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1150), + [sym_macro_invocation] = STATE(1150), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1150), + [sym_try_expression] = STATE(1150), + [sym_reference_expression] = STATE(1150), + [sym_binary_expression] = STATE(1150), + [sym_assignment_expression] = STATE(1150), + [sym_compound_assignment_expr] = STATE(1150), + [sym_type_cast_expression] = STATE(1150), + [sym_return_expression] = STATE(1150), + [sym_call_expression] = STATE(1150), + [sym_array_expression] = STATE(1150), + [sym_parenthesized_expression] = STATE(1150), + [sym_tuple_expression] = STATE(1150), + [sym_unit_expression] = STATE(1150), + [sym_struct_expression] = STATE(1150), + [sym_if_expression] = STATE(1150), + [sym_if_let_expression] = STATE(1150), + [sym_match_expression] = STATE(1150), + [sym_while_expression] = STATE(1150), + [sym_while_let_expression] = STATE(1150), + [sym_loop_expression] = STATE(1150), + [sym_for_expression] = STATE(1150), + [sym_closure_expression] = STATE(1150), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1150), + [sym_continue_expression] = STATE(1150), + [sym_index_expression] = STATE(1150), + [sym_await_expression] = STATE(1150), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1150), + [sym_async_block] = STATE(1150), + [sym_block] = STATE(1150), + [sym__literal] = STATE(1150), + [sym_string_literal] = STATE(1150), + [sym_boolean_literal] = STATE(1150), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -26083,17 +26525,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(977), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(965), + [sym_char_literal] = ACTIONS(977), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -26101,261 +26543,261 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(965), - [sym_float_literal] = ACTIONS(965), + [sym_raw_string_literal] = ACTIONS(977), + [sym_float_literal] = ACTIONS(977), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1195), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(1195), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1195), - [sym_unary_expression] = STATE(1195), - [sym_try_expression] = STATE(1195), - [sym_reference_expression] = STATE(1195), - [sym_binary_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1195), - [sym_compound_assignment_expr] = STATE(1195), - [sym_type_cast_expression] = STATE(1195), - [sym_return_expression] = STATE(1195), - [sym_call_expression] = STATE(1195), - [sym_array_expression] = STATE(1195), - [sym_parenthesized_expression] = STATE(1195), - [sym_tuple_expression] = STATE(1195), - [sym_unit_expression] = STATE(1195), - [sym_struct_expression] = STATE(1195), - [sym_if_expression] = STATE(1195), - [sym_if_let_expression] = STATE(1195), - [sym_match_expression] = STATE(1195), - [sym_while_expression] = STATE(1195), - [sym_while_let_expression] = STATE(1195), - [sym_loop_expression] = STATE(1195), - [sym_for_expression] = STATE(1195), - [sym_closure_expression] = STATE(1195), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1195), - [sym_continue_expression] = STATE(1195), - [sym_index_expression] = STATE(1195), - [sym_await_expression] = STATE(1195), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1195), - [sym_async_block] = STATE(1195), - [sym_block] = STATE(1195), - [sym__literal] = STATE(1195), - [sym_string_literal] = STATE(1195), - [sym_boolean_literal] = STATE(1195), - [sym_identifier] = ACTIONS(355), + [171] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1197), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(1197), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1197), + [sym_unary_expression] = STATE(1197), + [sym_try_expression] = STATE(1197), + [sym_reference_expression] = STATE(1197), + [sym_binary_expression] = STATE(1197), + [sym_assignment_expression] = STATE(1197), + [sym_compound_assignment_expr] = STATE(1197), + [sym_type_cast_expression] = STATE(1197), + [sym_return_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_array_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_tuple_expression] = STATE(1197), + [sym_unit_expression] = STATE(1197), + [sym_struct_expression] = STATE(1197), + [sym_if_expression] = STATE(1197), + [sym_if_let_expression] = STATE(1197), + [sym_match_expression] = STATE(1197), + [sym_while_expression] = STATE(1197), + [sym_while_let_expression] = STATE(1197), + [sym_loop_expression] = STATE(1197), + [sym_for_expression] = STATE(1197), + [sym_closure_expression] = STATE(1197), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1197), + [sym_continue_expression] = STATE(1197), + [sym_index_expression] = STATE(1197), + [sym_await_expression] = STATE(1197), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1197), + [sym_async_block] = STATE(1197), + [sym_block] = STATE(1197), + [sym__literal] = STATE(1197), + [sym_string_literal] = STATE(1197), + [sym_boolean_literal] = STATE(1197), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(967), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(979), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(967), + [sym_char_literal] = ACTIONS(979), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(967), - [sym_float_literal] = ACTIONS(967), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(979), + [sym_float_literal] = ACTIONS(979), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1182), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1182), - [sym_macro_invocation] = STATE(1182), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1182), - [sym_unary_expression] = STATE(1182), - [sym_try_expression] = STATE(1182), - [sym_reference_expression] = STATE(1182), - [sym_binary_expression] = STATE(1182), - [sym_assignment_expression] = STATE(1182), - [sym_compound_assignment_expr] = STATE(1182), - [sym_type_cast_expression] = STATE(1182), - [sym_return_expression] = STATE(1182), - [sym_call_expression] = STATE(1182), - [sym_array_expression] = STATE(1182), - [sym_parenthesized_expression] = STATE(1182), - [sym_tuple_expression] = STATE(1182), - [sym_unit_expression] = STATE(1182), - [sym_struct_expression] = STATE(1182), - [sym_if_expression] = STATE(1182), - [sym_if_let_expression] = STATE(1182), - [sym_match_expression] = STATE(1182), - [sym_while_expression] = STATE(1182), - [sym_while_let_expression] = STATE(1182), - [sym_loop_expression] = STATE(1182), - [sym_for_expression] = STATE(1182), - [sym_closure_expression] = STATE(1182), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1182), - [sym_continue_expression] = STATE(1182), - [sym_index_expression] = STATE(1182), - [sym_await_expression] = STATE(1182), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1182), - [sym_async_block] = STATE(1182), - [sym_block] = STATE(1182), - [sym__literal] = STATE(1182), - [sym_string_literal] = STATE(1182), - [sym_boolean_literal] = STATE(1182), - [sym_identifier] = ACTIONS(355), + [172] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(940), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(940), + [sym_macro_invocation] = STATE(940), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(940), + [sym_unary_expression] = STATE(940), + [sym_try_expression] = STATE(940), + [sym_reference_expression] = STATE(940), + [sym_binary_expression] = STATE(940), + [sym_assignment_expression] = STATE(940), + [sym_compound_assignment_expr] = STATE(940), + [sym_type_cast_expression] = STATE(940), + [sym_return_expression] = STATE(940), + [sym_call_expression] = STATE(940), + [sym_array_expression] = STATE(940), + [sym_parenthesized_expression] = STATE(940), + [sym_tuple_expression] = STATE(940), + [sym_unit_expression] = STATE(940), + [sym_struct_expression] = STATE(940), + [sym_if_expression] = STATE(940), + [sym_if_let_expression] = STATE(940), + [sym_match_expression] = STATE(940), + [sym_while_expression] = STATE(940), + [sym_while_let_expression] = STATE(940), + [sym_loop_expression] = STATE(940), + [sym_for_expression] = STATE(940), + [sym_closure_expression] = STATE(940), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(940), + [sym_continue_expression] = STATE(940), + [sym_index_expression] = STATE(940), + [sym_await_expression] = STATE(940), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(940), + [sym_async_block] = STATE(940), + [sym_block] = STATE(940), + [sym__literal] = STATE(940), + [sym_string_literal] = STATE(940), + [sym_boolean_literal] = STATE(940), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(969), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(959), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(969), + [sym_char_literal] = ACTIONS(959), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(959), + [sym_float_literal] = ACTIONS(959), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1202), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(1202), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1202), - [sym_unary_expression] = STATE(1202), - [sym_try_expression] = STATE(1202), - [sym_reference_expression] = STATE(1202), - [sym_binary_expression] = STATE(1202), - [sym_assignment_expression] = STATE(1202), - [sym_compound_assignment_expr] = STATE(1202), - [sym_type_cast_expression] = STATE(1202), - [sym_return_expression] = STATE(1202), - [sym_call_expression] = STATE(1202), - [sym_array_expression] = STATE(1202), - [sym_parenthesized_expression] = STATE(1202), - [sym_tuple_expression] = STATE(1202), - [sym_unit_expression] = STATE(1202), - [sym_struct_expression] = STATE(1202), - [sym_if_expression] = STATE(1202), - [sym_if_let_expression] = STATE(1202), - [sym_match_expression] = STATE(1202), - [sym_while_expression] = STATE(1202), - [sym_while_let_expression] = STATE(1202), - [sym_loop_expression] = STATE(1202), - [sym_for_expression] = STATE(1202), - [sym_closure_expression] = STATE(1202), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1202), - [sym_continue_expression] = STATE(1202), - [sym_index_expression] = STATE(1202), - [sym_await_expression] = STATE(1202), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1202), - [sym_async_block] = STATE(1202), - [sym_block] = STATE(1202), - [sym__literal] = STATE(1202), - [sym_string_literal] = STATE(1202), - [sym_boolean_literal] = STATE(1202), + [173] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1213), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(1213), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1213), + [sym_unary_expression] = STATE(1213), + [sym_try_expression] = STATE(1213), + [sym_reference_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_assignment_expression] = STATE(1213), + [sym_compound_assignment_expr] = STATE(1213), + [sym_type_cast_expression] = STATE(1213), + [sym_return_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_array_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_tuple_expression] = STATE(1213), + [sym_unit_expression] = STATE(1213), + [sym_struct_expression] = STATE(1213), + [sym_if_expression] = STATE(1213), + [sym_if_let_expression] = STATE(1213), + [sym_match_expression] = STATE(1213), + [sym_while_expression] = STATE(1213), + [sym_while_let_expression] = STATE(1213), + [sym_loop_expression] = STATE(1213), + [sym_for_expression] = STATE(1213), + [sym_closure_expression] = STATE(1213), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1213), + [sym_continue_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_await_expression] = STATE(1213), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1213), + [sym_async_block] = STATE(1213), + [sym_block] = STATE(1213), + [sym__literal] = STATE(1213), + [sym_string_literal] = STATE(1213), + [sym_boolean_literal] = STATE(1213), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -26386,17 +26828,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(971), + [sym_integer_literal] = ACTIONS(981), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(971), + [sym_char_literal] = ACTIONS(981), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -26404,59 +26846,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(971), - [sym_float_literal] = ACTIONS(971), + [sym_raw_string_literal] = ACTIONS(981), + [sym_float_literal] = ACTIONS(981), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1200), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(1200), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1200), - [sym_unary_expression] = STATE(1200), - [sym_try_expression] = STATE(1200), - [sym_reference_expression] = STATE(1200), - [sym_binary_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1200), - [sym_compound_assignment_expr] = STATE(1200), - [sym_type_cast_expression] = STATE(1200), - [sym_return_expression] = STATE(1200), - [sym_call_expression] = STATE(1200), - [sym_array_expression] = STATE(1200), - [sym_parenthesized_expression] = STATE(1200), - [sym_tuple_expression] = STATE(1200), - [sym_unit_expression] = STATE(1200), - [sym_struct_expression] = STATE(1200), - [sym_if_expression] = STATE(1200), - [sym_if_let_expression] = STATE(1200), - [sym_match_expression] = STATE(1200), - [sym_while_expression] = STATE(1200), - [sym_while_let_expression] = STATE(1200), - [sym_loop_expression] = STATE(1200), - [sym_for_expression] = STATE(1200), - [sym_closure_expression] = STATE(1200), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1200), - [sym_continue_expression] = STATE(1200), - [sym_index_expression] = STATE(1200), - [sym_await_expression] = STATE(1200), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1200), - [sym_async_block] = STATE(1200), - [sym_block] = STATE(1200), - [sym__literal] = STATE(1200), - [sym_string_literal] = STATE(1200), - [sym_boolean_literal] = STATE(1200), + [174] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1156), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(1156), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1156), + [sym_unary_expression] = STATE(1156), + [sym_try_expression] = STATE(1156), + [sym_reference_expression] = STATE(1156), + [sym_binary_expression] = STATE(1156), + [sym_assignment_expression] = STATE(1156), + [sym_compound_assignment_expr] = STATE(1156), + [sym_type_cast_expression] = STATE(1156), + [sym_return_expression] = STATE(1156), + [sym_call_expression] = STATE(1156), + [sym_array_expression] = STATE(1156), + [sym_parenthesized_expression] = STATE(1156), + [sym_tuple_expression] = STATE(1156), + [sym_unit_expression] = STATE(1156), + [sym_struct_expression] = STATE(1156), + [sym_if_expression] = STATE(1156), + [sym_if_let_expression] = STATE(1156), + [sym_match_expression] = STATE(1156), + [sym_while_expression] = STATE(1156), + [sym_while_let_expression] = STATE(1156), + [sym_loop_expression] = STATE(1156), + [sym_for_expression] = STATE(1156), + [sym_closure_expression] = STATE(1156), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1156), + [sym_continue_expression] = STATE(1156), + [sym_index_expression] = STATE(1156), + [sym_await_expression] = STATE(1156), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1156), + [sym_async_block] = STATE(1156), + [sym_block] = STATE(1156), + [sym__literal] = STATE(1156), + [sym_string_literal] = STATE(1156), + [sym_boolean_literal] = STATE(1156), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -26487,17 +26929,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(973), + [sym_integer_literal] = ACTIONS(983), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(973), + [sym_char_literal] = ACTIONS(983), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -26505,54 +26947,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(973), - [sym_float_literal] = ACTIONS(973), + [sym_raw_string_literal] = ACTIONS(983), + [sym_float_literal] = ACTIONS(983), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(735), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(735), - [sym_macro_invocation] = STATE(735), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(735), - [sym_unary_expression] = STATE(735), - [sym_try_expression] = STATE(735), - [sym_reference_expression] = STATE(735), - [sym_binary_expression] = STATE(735), - [sym_assignment_expression] = STATE(735), - [sym_compound_assignment_expr] = STATE(735), - [sym_type_cast_expression] = STATE(735), - [sym_return_expression] = STATE(735), - [sym_call_expression] = STATE(735), - [sym_array_expression] = STATE(735), - [sym_parenthesized_expression] = STATE(735), - [sym_tuple_expression] = STATE(735), - [sym_unit_expression] = STATE(735), - [sym_struct_expression] = STATE(735), - [sym_if_expression] = STATE(735), - [sym_if_let_expression] = STATE(735), - [sym_match_expression] = STATE(735), - [sym_while_expression] = STATE(735), - [sym_while_let_expression] = STATE(735), - [sym_loop_expression] = STATE(735), - [sym_for_expression] = STATE(735), - [sym_closure_expression] = STATE(735), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(735), - [sym_continue_expression] = STATE(735), - [sym_index_expression] = STATE(735), - [sym_await_expression] = STATE(735), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(735), - [sym_async_block] = STATE(735), - [sym_block] = STATE(735), - [sym__literal] = STATE(735), - [sym_string_literal] = STATE(735), - [sym_boolean_literal] = STATE(735), + [175] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1184), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1184), + [sym_macro_invocation] = STATE(1184), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1184), + [sym_unary_expression] = STATE(1184), + [sym_try_expression] = STATE(1184), + [sym_reference_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_assignment_expression] = STATE(1184), + [sym_compound_assignment_expr] = STATE(1184), + [sym_type_cast_expression] = STATE(1184), + [sym_return_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_array_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_tuple_expression] = STATE(1184), + [sym_unit_expression] = STATE(1184), + [sym_struct_expression] = STATE(1184), + [sym_if_expression] = STATE(1184), + [sym_if_let_expression] = STATE(1184), + [sym_match_expression] = STATE(1184), + [sym_while_expression] = STATE(1184), + [sym_while_let_expression] = STATE(1184), + [sym_loop_expression] = STATE(1184), + [sym_for_expression] = STATE(1184), + [sym_closure_expression] = STATE(1184), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1184), + [sym_continue_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1184), + [sym_async_block] = STATE(1184), + [sym_block] = STATE(1184), + [sym__literal] = STATE(1184), + [sym_string_literal] = STATE(1184), + [sym_boolean_literal] = STATE(1184), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -26596,9 +27038,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(717), + [sym_integer_literal] = ACTIONS(985), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(717), + [sym_char_literal] = ACTIONS(985), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -26606,59 +27048,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(717), - [sym_float_literal] = ACTIONS(717), + [sym_raw_string_literal] = ACTIONS(985), + [sym_float_literal] = ACTIONS(985), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1123), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1123), - [sym_macro_invocation] = STATE(1123), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1123), - [sym_unary_expression] = STATE(1123), - [sym_try_expression] = STATE(1123), - [sym_reference_expression] = STATE(1123), - [sym_binary_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1123), - [sym_compound_assignment_expr] = STATE(1123), - [sym_type_cast_expression] = STATE(1123), - [sym_return_expression] = STATE(1123), - [sym_call_expression] = STATE(1123), - [sym_array_expression] = STATE(1123), - [sym_parenthesized_expression] = STATE(1123), - [sym_tuple_expression] = STATE(1123), - [sym_unit_expression] = STATE(1123), - [sym_struct_expression] = STATE(1123), - [sym_if_expression] = STATE(1123), - [sym_if_let_expression] = STATE(1123), - [sym_match_expression] = STATE(1123), - [sym_while_expression] = STATE(1123), - [sym_while_let_expression] = STATE(1123), - [sym_loop_expression] = STATE(1123), - [sym_for_expression] = STATE(1123), - [sym_closure_expression] = STATE(1123), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1123), - [sym_continue_expression] = STATE(1123), - [sym_index_expression] = STATE(1123), - [sym_await_expression] = STATE(1123), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1123), - [sym_async_block] = STATE(1123), - [sym_block] = STATE(1123), - [sym__literal] = STATE(1123), - [sym_string_literal] = STATE(1123), - [sym_boolean_literal] = STATE(1123), + [176] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1151), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(1151), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1151), + [sym_unary_expression] = STATE(1151), + [sym_try_expression] = STATE(1151), + [sym_reference_expression] = STATE(1151), + [sym_binary_expression] = STATE(1151), + [sym_assignment_expression] = STATE(1151), + [sym_compound_assignment_expr] = STATE(1151), + [sym_type_cast_expression] = STATE(1151), + [sym_return_expression] = STATE(1151), + [sym_call_expression] = STATE(1151), + [sym_array_expression] = STATE(1151), + [sym_parenthesized_expression] = STATE(1151), + [sym_tuple_expression] = STATE(1151), + [sym_unit_expression] = STATE(1151), + [sym_struct_expression] = STATE(1151), + [sym_if_expression] = STATE(1151), + [sym_if_let_expression] = STATE(1151), + [sym_match_expression] = STATE(1151), + [sym_while_expression] = STATE(1151), + [sym_while_let_expression] = STATE(1151), + [sym_loop_expression] = STATE(1151), + [sym_for_expression] = STATE(1151), + [sym_closure_expression] = STATE(1151), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1151), + [sym_continue_expression] = STATE(1151), + [sym_index_expression] = STATE(1151), + [sym_await_expression] = STATE(1151), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1151), + [sym_async_block] = STATE(1151), + [sym_block] = STATE(1151), + [sym__literal] = STATE(1151), + [sym_string_literal] = STATE(1151), + [sym_boolean_literal] = STATE(1151), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -26689,17 +27131,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(377), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(975), + [sym_char_literal] = ACTIONS(377), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -26707,54 +27149,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(975), - [sym_float_literal] = ACTIONS(975), + [sym_raw_string_literal] = ACTIONS(377), + [sym_float_literal] = ACTIONS(377), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1159), - [sym_generic_type_with_turbofish] = STATE(1733), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(1159), - [sym_scoped_identifier] = STATE(851), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1159), - [sym_unary_expression] = STATE(1159), - [sym_try_expression] = STATE(1159), - [sym_reference_expression] = STATE(1159), - [sym_binary_expression] = STATE(1159), - [sym_assignment_expression] = STATE(1159), - [sym_compound_assignment_expr] = STATE(1159), - [sym_type_cast_expression] = STATE(1159), - [sym_return_expression] = STATE(1159), - [sym_call_expression] = STATE(1159), - [sym_array_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(1159), - [sym_tuple_expression] = STATE(1159), - [sym_unit_expression] = STATE(1159), - [sym_struct_expression] = STATE(1159), - [sym_if_expression] = STATE(1159), - [sym_if_let_expression] = STATE(1159), - [sym_match_expression] = STATE(1159), - [sym_while_expression] = STATE(1159), - [sym_while_let_expression] = STATE(1159), - [sym_loop_expression] = STATE(1159), - [sym_for_expression] = STATE(1159), - [sym_closure_expression] = STATE(1159), - [sym_closure_parameters] = STATE(74), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1159), - [sym_continue_expression] = STATE(1159), - [sym_index_expression] = STATE(1159), - [sym_await_expression] = STATE(1159), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1159), - [sym_async_block] = STATE(1159), - [sym_block] = STATE(1159), - [sym__literal] = STATE(1159), - [sym_string_literal] = STATE(1159), - [sym_boolean_literal] = STATE(1159), + [177] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1108), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1108), + [sym_macro_invocation] = STATE(1108), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1108), + [sym_unary_expression] = STATE(1108), + [sym_try_expression] = STATE(1108), + [sym_reference_expression] = STATE(1108), + [sym_binary_expression] = STATE(1108), + [sym_assignment_expression] = STATE(1108), + [sym_compound_assignment_expr] = STATE(1108), + [sym_type_cast_expression] = STATE(1108), + [sym_return_expression] = STATE(1108), + [sym_call_expression] = STATE(1108), + [sym_array_expression] = STATE(1108), + [sym_parenthesized_expression] = STATE(1108), + [sym_tuple_expression] = STATE(1108), + [sym_unit_expression] = STATE(1108), + [sym_struct_expression] = STATE(1108), + [sym_if_expression] = STATE(1108), + [sym_if_let_expression] = STATE(1108), + [sym_match_expression] = STATE(1108), + [sym_while_expression] = STATE(1108), + [sym_while_let_expression] = STATE(1108), + [sym_loop_expression] = STATE(1108), + [sym_for_expression] = STATE(1108), + [sym_closure_expression] = STATE(1108), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1108), + [sym_continue_expression] = STATE(1108), + [sym_index_expression] = STATE(1108), + [sym_await_expression] = STATE(1108), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1108), + [sym_async_block] = STATE(1108), + [sym_block] = STATE(1108), + [sym__literal] = STATE(1108), + [sym_string_literal] = STATE(1108), + [sym_boolean_literal] = STATE(1108), + [sym_identifier] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u128] = ACTIONS(357), + [anon_sym_i128] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_str] = ACTIONS(357), + [anon_sym_char] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(301), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(305), + [anon_sym_if] = ACTIONS(307), + [anon_sym_loop] = ACTIONS(309), + [anon_sym_match] = ACTIONS(311), + [anon_sym_return] = ACTIONS(361), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(313), + [anon_sym_while] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(367), + [sym_integer_literal] = ACTIONS(987), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(987), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(371), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(375), + [sym_raw_string_literal] = ACTIONS(987), + [sym_float_literal] = ACTIONS(987), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1170), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(1170), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1170), + [sym_unary_expression] = STATE(1170), + [sym_try_expression] = STATE(1170), + [sym_reference_expression] = STATE(1170), + [sym_binary_expression] = STATE(1170), + [sym_assignment_expression] = STATE(1170), + [sym_compound_assignment_expr] = STATE(1170), + [sym_type_cast_expression] = STATE(1170), + [sym_return_expression] = STATE(1170), + [sym_call_expression] = STATE(1170), + [sym_array_expression] = STATE(1170), + [sym_parenthesized_expression] = STATE(1170), + [sym_tuple_expression] = STATE(1170), + [sym_unit_expression] = STATE(1170), + [sym_struct_expression] = STATE(1170), + [sym_if_expression] = STATE(1170), + [sym_if_let_expression] = STATE(1170), + [sym_match_expression] = STATE(1170), + [sym_while_expression] = STATE(1170), + [sym_while_let_expression] = STATE(1170), + [sym_loop_expression] = STATE(1170), + [sym_for_expression] = STATE(1170), + [sym_closure_expression] = STATE(1170), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1170), + [sym_continue_expression] = STATE(1170), + [sym_index_expression] = STATE(1170), + [sym_await_expression] = STATE(1170), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1170), + [sym_async_block] = STATE(1170), + [sym_block] = STATE(1170), + [sym__literal] = STATE(1170), + [sym_string_literal] = STATE(1170), + [sym_boolean_literal] = STATE(1170), [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), @@ -26798,9 +27341,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(977), + [sym_integer_literal] = ACTIONS(989), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(977), + [sym_char_literal] = ACTIONS(989), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -26808,59 +27351,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(97), [sym_crate] = ACTIONS(97), [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), + [sym_raw_string_literal] = ACTIONS(989), + [sym_float_literal] = ACTIONS(989), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1088), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1088), - [sym_macro_invocation] = STATE(1088), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1088), - [sym_unary_expression] = STATE(1088), - [sym_try_expression] = STATE(1088), - [sym_reference_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_assignment_expression] = STATE(1088), - [sym_compound_assignment_expr] = STATE(1088), - [sym_type_cast_expression] = STATE(1088), - [sym_return_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_array_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_tuple_expression] = STATE(1088), - [sym_unit_expression] = STATE(1088), - [sym_struct_expression] = STATE(1088), - [sym_if_expression] = STATE(1088), - [sym_if_let_expression] = STATE(1088), - [sym_match_expression] = STATE(1088), - [sym_while_expression] = STATE(1088), - [sym_while_let_expression] = STATE(1088), - [sym_loop_expression] = STATE(1088), - [sym_for_expression] = STATE(1088), - [sym_closure_expression] = STATE(1088), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1088), - [sym_continue_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_await_expression] = STATE(1088), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1088), - [sym_async_block] = STATE(1088), - [sym_block] = STATE(1088), - [sym__literal] = STATE(1088), - [sym_string_literal] = STATE(1088), - [sym_boolean_literal] = STATE(1088), + [179] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1179), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1179), + [sym_macro_invocation] = STATE(1179), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1179), + [sym_unary_expression] = STATE(1179), + [sym_try_expression] = STATE(1179), + [sym_reference_expression] = STATE(1179), + [sym_binary_expression] = STATE(1179), + [sym_assignment_expression] = STATE(1179), + [sym_compound_assignment_expr] = STATE(1179), + [sym_type_cast_expression] = STATE(1179), + [sym_return_expression] = STATE(1179), + [sym_call_expression] = STATE(1179), + [sym_array_expression] = STATE(1179), + [sym_parenthesized_expression] = STATE(1179), + [sym_tuple_expression] = STATE(1179), + [sym_unit_expression] = STATE(1179), + [sym_struct_expression] = STATE(1179), + [sym_if_expression] = STATE(1179), + [sym_if_let_expression] = STATE(1179), + [sym_match_expression] = STATE(1179), + [sym_while_expression] = STATE(1179), + [sym_while_let_expression] = STATE(1179), + [sym_loop_expression] = STATE(1179), + [sym_for_expression] = STATE(1179), + [sym_closure_expression] = STATE(1179), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1179), + [sym_continue_expression] = STATE(1179), + [sym_index_expression] = STATE(1179), + [sym_await_expression] = STATE(1179), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1179), + [sym_async_block] = STATE(1179), + [sym_block] = STATE(1179), + [sym__literal] = STATE(1179), + [sym_string_literal] = STATE(1179), + [sym_boolean_literal] = STATE(1179), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -26891,17 +27434,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(991), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(979), + [sym_char_literal] = ACTIONS(991), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -26909,59 +27452,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(979), - [sym_float_literal] = ACTIONS(979), + [sym_raw_string_literal] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1193), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(1193), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1193), - [sym_unary_expression] = STATE(1193), - [sym_try_expression] = STATE(1193), - [sym_reference_expression] = STATE(1193), - [sym_binary_expression] = STATE(1193), - [sym_assignment_expression] = STATE(1193), - [sym_compound_assignment_expr] = STATE(1193), - [sym_type_cast_expression] = STATE(1193), - [sym_return_expression] = STATE(1193), - [sym_call_expression] = STATE(1193), - [sym_array_expression] = STATE(1193), - [sym_parenthesized_expression] = STATE(1193), - [sym_tuple_expression] = STATE(1193), - [sym_unit_expression] = STATE(1193), - [sym_struct_expression] = STATE(1193), - [sym_if_expression] = STATE(1193), - [sym_if_let_expression] = STATE(1193), - [sym_match_expression] = STATE(1193), - [sym_while_expression] = STATE(1193), - [sym_while_let_expression] = STATE(1193), - [sym_loop_expression] = STATE(1193), - [sym_for_expression] = STATE(1193), - [sym_closure_expression] = STATE(1193), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1193), - [sym_continue_expression] = STATE(1193), - [sym_index_expression] = STATE(1193), - [sym_await_expression] = STATE(1193), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1193), - [sym_async_block] = STATE(1193), - [sym_block] = STATE(1193), - [sym__literal] = STATE(1193), - [sym_string_literal] = STATE(1193), - [sym_boolean_literal] = STATE(1193), + [180] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1164), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(1164), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1164), + [sym_unary_expression] = STATE(1164), + [sym_try_expression] = STATE(1164), + [sym_reference_expression] = STATE(1164), + [sym_binary_expression] = STATE(1164), + [sym_assignment_expression] = STATE(1164), + [sym_compound_assignment_expr] = STATE(1164), + [sym_type_cast_expression] = STATE(1164), + [sym_return_expression] = STATE(1164), + [sym_call_expression] = STATE(1164), + [sym_array_expression] = STATE(1164), + [sym_parenthesized_expression] = STATE(1164), + [sym_tuple_expression] = STATE(1164), + [sym_unit_expression] = STATE(1164), + [sym_struct_expression] = STATE(1164), + [sym_if_expression] = STATE(1164), + [sym_if_let_expression] = STATE(1164), + [sym_match_expression] = STATE(1164), + [sym_while_expression] = STATE(1164), + [sym_while_let_expression] = STATE(1164), + [sym_loop_expression] = STATE(1164), + [sym_for_expression] = STATE(1164), + [sym_closure_expression] = STATE(1164), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1164), + [sym_continue_expression] = STATE(1164), + [sym_index_expression] = STATE(1164), + [sym_await_expression] = STATE(1164), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1164), + [sym_async_block] = STATE(1164), + [sym_block] = STATE(1164), + [sym__literal] = STATE(1164), + [sym_string_literal] = STATE(1164), + [sym_boolean_literal] = STATE(1164), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -26992,17 +27535,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(981), + [sym_integer_literal] = ACTIONS(993), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(981), + [sym_char_literal] = ACTIONS(993), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -27010,160 +27553,362 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(981), - [sym_float_literal] = ACTIONS(981), + [sym_raw_string_literal] = ACTIONS(993), + [sym_float_literal] = ACTIONS(993), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1185), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1185), - [sym_macro_invocation] = STATE(1185), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1185), - [sym_unary_expression] = STATE(1185), - [sym_try_expression] = STATE(1185), - [sym_reference_expression] = STATE(1185), - [sym_binary_expression] = STATE(1185), - [sym_assignment_expression] = STATE(1185), - [sym_compound_assignment_expr] = STATE(1185), - [sym_type_cast_expression] = STATE(1185), - [sym_return_expression] = STATE(1185), - [sym_call_expression] = STATE(1185), - [sym_array_expression] = STATE(1185), - [sym_parenthesized_expression] = STATE(1185), - [sym_tuple_expression] = STATE(1185), - [sym_unit_expression] = STATE(1185), - [sym_struct_expression] = STATE(1185), - [sym_if_expression] = STATE(1185), - [sym_if_let_expression] = STATE(1185), - [sym_match_expression] = STATE(1185), - [sym_while_expression] = STATE(1185), - [sym_while_let_expression] = STATE(1185), - [sym_loop_expression] = STATE(1185), - [sym_for_expression] = STATE(1185), - [sym_closure_expression] = STATE(1185), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1185), - [sym_continue_expression] = STATE(1185), - [sym_index_expression] = STATE(1185), - [sym_await_expression] = STATE(1185), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1185), - [sym_async_block] = STATE(1185), - [sym_block] = STATE(1185), - [sym__literal] = STATE(1185), - [sym_string_literal] = STATE(1185), - [sym_boolean_literal] = STATE(1185), - [sym_identifier] = ACTIONS(355), + [181] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1206), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(1206), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1206), + [sym_unary_expression] = STATE(1206), + [sym_try_expression] = STATE(1206), + [sym_reference_expression] = STATE(1206), + [sym_binary_expression] = STATE(1206), + [sym_assignment_expression] = STATE(1206), + [sym_compound_assignment_expr] = STATE(1206), + [sym_type_cast_expression] = STATE(1206), + [sym_return_expression] = STATE(1206), + [sym_call_expression] = STATE(1206), + [sym_array_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1206), + [sym_tuple_expression] = STATE(1206), + [sym_unit_expression] = STATE(1206), + [sym_struct_expression] = STATE(1206), + [sym_if_expression] = STATE(231), + [sym_if_let_expression] = STATE(231), + [sym_match_expression] = STATE(231), + [sym_while_expression] = STATE(231), + [sym_while_let_expression] = STATE(231), + [sym_loop_expression] = STATE(231), + [sym_for_expression] = STATE(231), + [sym_closure_expression] = STATE(1206), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2387), + [sym_break_expression] = STATE(1206), + [sym_continue_expression] = STATE(1206), + [sym_index_expression] = STATE(1206), + [sym_await_expression] = STATE(1206), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(231), + [sym_async_block] = STATE(231), + [sym_block] = STATE(231), + [sym__literal] = STATE(1206), + [sym_string_literal] = STATE(1206), + [sym_boolean_literal] = STATE(1206), + [sym_identifier] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(907), + [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(909), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(911), + [anon_sym_if] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(915), + [anon_sym_match] = ACTIONS(917), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(919), + [anon_sym_while] = ACTIONS(921), + [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_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), + [sym_block_comment] = ACTIONS(3), + }, + [182] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1102), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1102), + [sym_macro_invocation] = STATE(1102), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1102), + [sym_unary_expression] = STATE(1102), + [sym_try_expression] = STATE(1102), + [sym_reference_expression] = STATE(1102), + [sym_binary_expression] = STATE(1102), + [sym_assignment_expression] = STATE(1102), + [sym_compound_assignment_expr] = STATE(1102), + [sym_type_cast_expression] = STATE(1102), + [sym_return_expression] = STATE(1102), + [sym_call_expression] = STATE(1102), + [sym_array_expression] = STATE(1102), + [sym_parenthesized_expression] = STATE(1102), + [sym_tuple_expression] = STATE(1102), + [sym_unit_expression] = STATE(1102), + [sym_struct_expression] = STATE(1102), + [sym_if_expression] = STATE(231), + [sym_if_let_expression] = STATE(231), + [sym_match_expression] = STATE(231), + [sym_while_expression] = STATE(231), + [sym_while_let_expression] = STATE(231), + [sym_loop_expression] = STATE(231), + [sym_for_expression] = STATE(231), + [sym_closure_expression] = STATE(1102), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2387), + [sym_break_expression] = STATE(1102), + [sym_continue_expression] = STATE(1102), + [sym_index_expression] = STATE(1102), + [sym_await_expression] = STATE(1102), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(231), + [sym_async_block] = STATE(231), + [sym_block] = STATE(231), + [sym__literal] = STATE(1102), + [sym_string_literal] = STATE(1102), + [sym_boolean_literal] = STATE(1102), + [sym_identifier] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(907), + [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(909), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(303), + [anon_sym_for] = ACTIONS(911), + [anon_sym_if] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(915), + [anon_sym_match] = ACTIONS(917), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(303), + [anon_sym_unsafe] = ACTIONS(919), + [anon_sym_while] = ACTIONS(921), + [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_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(997), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(997), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(997), + [sym_float_literal] = ACTIONS(997), + [sym_block_comment] = ACTIONS(3), + }, + [183] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1172), + [sym_generic_type_with_turbofish] = STATE(1752), + [sym__expression] = STATE(1172), + [sym_macro_invocation] = STATE(1172), + [sym_scoped_identifier] = STATE(948), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1172), + [sym_unary_expression] = STATE(1172), + [sym_try_expression] = STATE(1172), + [sym_reference_expression] = STATE(1172), + [sym_binary_expression] = STATE(1172), + [sym_assignment_expression] = STATE(1172), + [sym_compound_assignment_expr] = STATE(1172), + [sym_type_cast_expression] = STATE(1172), + [sym_return_expression] = STATE(1172), + [sym_call_expression] = STATE(1172), + [sym_array_expression] = STATE(1172), + [sym_parenthesized_expression] = STATE(1172), + [sym_tuple_expression] = STATE(1172), + [sym_unit_expression] = STATE(1172), + [sym_struct_expression] = STATE(1172), + [sym_if_expression] = STATE(1172), + [sym_if_let_expression] = STATE(1172), + [sym_match_expression] = STATE(1172), + [sym_while_expression] = STATE(1172), + [sym_while_let_expression] = STATE(1172), + [sym_loop_expression] = STATE(1172), + [sym_for_expression] = STATE(1172), + [sym_closure_expression] = STATE(1172), + [sym_closure_parameters] = STATE(95), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1172), + [sym_continue_expression] = STATE(1172), + [sym_index_expression] = STATE(1172), + [sym_await_expression] = STATE(1172), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1172), + [sym_async_block] = STATE(1172), + [sym_block] = STATE(1172), + [sym__literal] = STATE(1172), + [sym_string_literal] = STATE(1172), + [sym_boolean_literal] = STATE(1172), + [sym_identifier] = ACTIONS(291), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_u8] = ACTIONS(357), - [anon_sym_i8] = ACTIONS(357), - [anon_sym_u16] = ACTIONS(357), - [anon_sym_i16] = ACTIONS(357), - [anon_sym_u32] = ACTIONS(357), - [anon_sym_i32] = ACTIONS(357), - [anon_sym_u64] = ACTIONS(357), - [anon_sym_i64] = ACTIONS(357), - [anon_sym_u128] = ACTIONS(357), - [anon_sym_i128] = ACTIONS(357), - [anon_sym_isize] = ACTIONS(357), - [anon_sym_usize] = ACTIONS(357), - [anon_sym_f32] = ACTIONS(357), - [anon_sym_f64] = ACTIONS(357), - [anon_sym_bool] = ACTIONS(357), - [anon_sym_str] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), + [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(301), - [anon_sym_break] = ACTIONS(359), + [anon_sym_break] = ACTIONS(27), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(303), [anon_sym_for] = ACTIONS(305), [anon_sym_if] = ACTIONS(307), [anon_sym_loop] = ACTIONS(309), [anon_sym_match] = ACTIONS(311), - [anon_sym_return] = ACTIONS(361), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [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_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(983), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(999), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(983), + [sym_char_literal] = ACTIONS(999), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(373), - [sym_crate] = ACTIONS(373), - [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(983), - [sym_float_literal] = ACTIONS(983), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(1137), - [sym_generic_type_with_turbofish] = STATE(1951), - [sym__expression] = STATE(1137), - [sym_macro_invocation] = STATE(1137), - [sym_scoped_identifier] = STATE(1099), - [sym_scoped_type_identifier_in_expression_position] = STATE(2070), - [sym_range_expression] = STATE(1137), - [sym_unary_expression] = STATE(1137), - [sym_try_expression] = STATE(1137), - [sym_reference_expression] = STATE(1137), - [sym_binary_expression] = STATE(1137), - [sym_assignment_expression] = STATE(1137), - [sym_compound_assignment_expr] = STATE(1137), - [sym_type_cast_expression] = STATE(1137), - [sym_return_expression] = STATE(1137), - [sym_call_expression] = STATE(1137), - [sym_array_expression] = STATE(1137), - [sym_parenthesized_expression] = STATE(1137), - [sym_tuple_expression] = STATE(1137), - [sym_unit_expression] = STATE(1137), - [sym_struct_expression] = STATE(1137), - [sym_if_expression] = STATE(1137), - [sym_if_let_expression] = STATE(1137), - [sym_match_expression] = STATE(1137), - [sym_while_expression] = STATE(1137), - [sym_while_let_expression] = STATE(1137), - [sym_loop_expression] = STATE(1137), - [sym_for_expression] = STATE(1137), - [sym_closure_expression] = STATE(1137), - [sym_closure_parameters] = STATE(72), - [sym_loop_label] = STATE(2351), - [sym_break_expression] = STATE(1137), - [sym_continue_expression] = STATE(1137), - [sym_index_expression] = STATE(1137), - [sym_await_expression] = STATE(1137), - [sym_field_expression] = STATE(769), - [sym_unsafe_block] = STATE(1137), - [sym_async_block] = STATE(1137), - [sym_block] = STATE(1137), - [sym__literal] = STATE(1137), - [sym_string_literal] = STATE(1137), - [sym_boolean_literal] = STATE(1137), + [184] = { + [sym_bracketed_type] = STATE(2373), + [sym_generic_function] = STATE(1165), + [sym_generic_type_with_turbofish] = STATE(1830), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(1165), + [sym_scoped_identifier] = STATE(1146), + [sym_scoped_type_identifier_in_expression_position] = STATE(2024), + [sym_range_expression] = STATE(1165), + [sym_unary_expression] = STATE(1165), + [sym_try_expression] = STATE(1165), + [sym_reference_expression] = STATE(1165), + [sym_binary_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1165), + [sym_compound_assignment_expr] = STATE(1165), + [sym_type_cast_expression] = STATE(1165), + [sym_return_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_array_expression] = STATE(1165), + [sym_parenthesized_expression] = STATE(1165), + [sym_tuple_expression] = STATE(1165), + [sym_unit_expression] = STATE(1165), + [sym_struct_expression] = STATE(1165), + [sym_if_expression] = STATE(1165), + [sym_if_let_expression] = STATE(1165), + [sym_match_expression] = STATE(1165), + [sym_while_expression] = STATE(1165), + [sym_while_let_expression] = STATE(1165), + [sym_loop_expression] = STATE(1165), + [sym_for_expression] = STATE(1165), + [sym_closure_expression] = STATE(1165), + [sym_closure_parameters] = STATE(80), + [sym_loop_label] = STATE(2354), + [sym_break_expression] = STATE(1165), + [sym_continue_expression] = STATE(1165), + [sym_index_expression] = STATE(1165), + [sym_await_expression] = STATE(1165), + [sym_field_expression] = STATE(902), + [sym_unsafe_block] = STATE(1165), + [sym_async_block] = STATE(1165), + [sym_block] = STATE(1165), + [sym__literal] = STATE(1165), + [sym_string_literal] = STATE(1165), + [sym_boolean_literal] = STATE(1165), [sym_identifier] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(751), [anon_sym_u8] = ACTIONS(357), [anon_sym_i8] = ACTIONS(357), [anon_sym_u16] = ACTIONS(357), @@ -27194,17 +27939,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(303), [anon_sym_unsafe] = ACTIONS(313), [anon_sym_while] = ACTIONS(315), - [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(751), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(751), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(367), - [sym_integer_literal] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(1001), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(985), + [sym_char_literal] = ACTIONS(1001), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), @@ -27212,1676 +27957,1371 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(373), [sym_crate] = ACTIONS(373), [sym_metavariable] = ACTIONS(375), - [sym_raw_string_literal] = ACTIONS(985), - [sym_float_literal] = ACTIONS(985), + [sym_raw_string_literal] = ACTIONS(1001), + [sym_float_literal] = ACTIONS(1001), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym_attribute_item] = STATE(185), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(2068), - [sym_variadic_parameter] = STATE(2068), - [sym_parameter] = STATE(2068), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1806), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1806), - [sym_tuple_type] = STATE(1806), - [sym_unit_type] = STATE(1806), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1806), - [sym_reference_type] = STATE(1806), - [sym_pointer_type] = STATE(1806), - [sym_empty_type] = STATE(1806), - [sym_abstract_type] = STATE(1806), - [sym_dynamic_type] = STATE(1806), - [sym_macro_invocation] = STATE(1806), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [185] = { + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(2041), + [sym_variadic_parameter] = STATE(2041), + [sym_parameter] = STATE(2041), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1946), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1946), + [sym_tuple_type] = STATE(1946), + [sym_unit_type] = STATE(1946), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1946), + [sym_reference_type] = STATE(1946), + [sym_pointer_type] = STATE(1946), + [sym_empty_type] = STATE(1946), + [sym_abstract_type] = STATE(1946), + [sym_dynamic_type] = STATE(1946), + [sym_macro_invocation] = STATE(1946), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [179] = { - [sym_attribute_item] = STATE(185), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(2068), - [sym_variadic_parameter] = STATE(2068), - [sym_parameter] = STATE(2068), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1806), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1806), - [sym_tuple_type] = STATE(1806), - [sym_unit_type] = STATE(1806), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1806), - [sym_reference_type] = STATE(1806), - [sym_pointer_type] = STATE(1806), - [sym_empty_type] = STATE(1806), - [sym_abstract_type] = STATE(1806), - [sym_dynamic_type] = STATE(1806), - [sym_macro_invocation] = STATE(1806), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [186] = { + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(1971), + [sym_variadic_parameter] = STATE(1971), + [sym_parameter] = STATE(1971), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1689), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1689), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1689), + [sym_tuple_type] = STATE(1689), + [sym_unit_type] = STATE(1689), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1689), + [sym_reference_type] = STATE(1689), + [sym_pointer_type] = STATE(1689), + [sym_empty_type] = STATE(1689), + [sym_abstract_type] = STATE(1689), + [sym_dynamic_type] = STATE(1689), + [sym_macro_invocation] = STATE(1689), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [180] = { - [sym_attribute_item] = STATE(185), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(2068), - [sym_variadic_parameter] = STATE(2068), - [sym_parameter] = STATE(2068), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1806), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1806), - [sym_tuple_type] = STATE(1806), - [sym_unit_type] = STATE(1806), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1806), - [sym_reference_type] = STATE(1806), - [sym_pointer_type] = STATE(1806), - [sym_empty_type] = STATE(1806), - [sym_abstract_type] = STATE(1806), - [sym_dynamic_type] = STATE(1806), - [sym_macro_invocation] = STATE(1806), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [187] = { + [sym_function_modifiers] = STATE(2324), + [sym_self_parameter] = STATE(1834), + [sym_variadic_parameter] = STATE(1834), + [sym_parameter] = STATE(1834), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1725), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(1920), + [sym_array_type] = STATE(1725), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1725), + [sym_tuple_type] = STATE(1725), + [sym_unit_type] = STATE(1725), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1725), + [sym_reference_type] = STATE(1725), + [sym_pointer_type] = STATE(1725), + [sym_empty_type] = STATE(1725), + [sym_abstract_type] = STATE(1725), + [sym_dynamic_type] = STATE(1725), + [sym_macro_invocation] = STATE(1725), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(2298), + [sym_tuple_pattern] = STATE(2298), + [sym_slice_pattern] = STATE(2298), + [sym_tuple_struct_pattern] = STATE(2298), + [sym_struct_pattern] = STATE(2298), + [sym_remaining_field_pattern] = STATE(2298), + [sym_mut_pattern] = STATE(2298), + [sym_range_pattern] = STATE(2298), + [sym_ref_pattern] = STATE(2298), + [sym_captured_pattern] = STATE(2298), + [sym_reference_pattern] = STATE(2298), + [sym_box_pattern] = STATE(2298), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(631), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [181] = { - [sym_attribute_item] = STATE(185), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(2068), - [sym_variadic_parameter] = STATE(2068), - [sym_parameter] = STATE(2068), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1806), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1806), - [sym_tuple_type] = STATE(1806), - [sym_unit_type] = STATE(1806), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1806), - [sym_reference_type] = STATE(1806), - [sym_pointer_type] = STATE(1806), - [sym_empty_type] = STATE(1806), - [sym_abstract_type] = STATE(1806), - [sym_dynamic_type] = STATE(1806), - [sym_macro_invocation] = STATE(1806), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [188] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1803), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1803), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1803), + [sym_tuple_type] = STATE(1803), + [sym_unit_type] = STATE(1803), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1803), + [sym_reference_type] = STATE(1803), + [sym_pointer_type] = STATE(1803), + [sym_empty_type] = STATE(1803), + [sym_abstract_type] = STATE(1803), + [sym_dynamic_type] = STATE(1803), + [sym_macro_invocation] = STATE(1803), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1798), + [sym_slice_pattern] = STATE(1798), + [sym_tuple_struct_pattern] = STATE(1798), + [sym_struct_pattern] = STATE(1798), + [sym_remaining_field_pattern] = STATE(1798), + [sym_mut_pattern] = STATE(1798), + [sym_range_pattern] = STATE(1798), + [sym_ref_pattern] = STATE(1798), + [sym_captured_pattern] = STATE(1798), + [sym_reference_pattern] = STATE(1798), + [sym_box_pattern] = STATE(1798), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_RBRACK] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1015), + [anon_sym_i8] = ACTIONS(1015), + [anon_sym_u16] = ACTIONS(1015), + [anon_sym_i16] = ACTIONS(1015), + [anon_sym_u32] = ACTIONS(1015), + [anon_sym_i32] = ACTIONS(1015), + [anon_sym_u64] = ACTIONS(1015), + [anon_sym_i64] = ACTIONS(1015), + [anon_sym_u128] = ACTIONS(1015), + [anon_sym_i128] = ACTIONS(1015), + [anon_sym_isize] = ACTIONS(1015), + [anon_sym_usize] = ACTIONS(1015), + [anon_sym_f32] = ACTIONS(1015), + [anon_sym_f64] = ACTIONS(1015), + [anon_sym_bool] = ACTIONS(1015), + [anon_sym_str] = ACTIONS(1015), + [anon_sym_char] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(1019), + [anon_sym__] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(1029), + [sym_super] = ACTIONS(1029), + [sym_crate] = ACTIONS(1029), + [sym_metavariable] = ACTIONS(1031), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [182] = { - [sym_attribute_item] = STATE(185), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(2068), - [sym_variadic_parameter] = STATE(2068), - [sym_parameter] = STATE(2068), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1806), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1806), - [sym_tuple_type] = STATE(1806), - [sym_unit_type] = STATE(1806), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1806), - [sym_reference_type] = STATE(1806), - [sym_pointer_type] = STATE(1806), - [sym_empty_type] = STATE(1806), - [sym_abstract_type] = STATE(1806), - [sym_dynamic_type] = STATE(1806), - [sym_macro_invocation] = STATE(1806), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [189] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1659), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1659), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1659), + [sym_tuple_type] = STATE(1659), + [sym_unit_type] = STATE(1659), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1659), + [sym_reference_type] = STATE(1659), + [sym_pointer_type] = STATE(1659), + [sym_empty_type] = STATE(1659), + [sym_abstract_type] = STATE(1659), + [sym_dynamic_type] = STATE(1659), + [sym_macro_invocation] = STATE(1659), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1793), + [sym_tuple_pattern] = STATE(1793), + [sym_slice_pattern] = STATE(1793), + [sym_tuple_struct_pattern] = STATE(1793), + [sym_struct_pattern] = STATE(1793), + [sym_remaining_field_pattern] = STATE(1793), + [sym_mut_pattern] = STATE(1793), + [sym_range_pattern] = STATE(1793), + [sym_ref_pattern] = STATE(1793), + [sym_captured_pattern] = STATE(1793), + [sym_reference_pattern] = STATE(1793), + [sym_box_pattern] = STATE(1793), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(603), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [sym_attribute_item] = STATE(185), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(2068), - [sym_variadic_parameter] = STATE(2068), - [sym_parameter] = STATE(2068), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1806), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1806), - [sym_tuple_type] = STATE(1806), - [sym_unit_type] = STATE(1806), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1806), - [sym_reference_type] = STATE(1806), - [sym_pointer_type] = STATE(1806), - [sym_empty_type] = STATE(1806), - [sym_abstract_type] = STATE(1806), - [sym_dynamic_type] = STATE(1806), - [sym_macro_invocation] = STATE(1806), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [190] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1659), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1659), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1659), + [sym_tuple_type] = STATE(1659), + [sym_unit_type] = STATE(1659), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1659), + [sym_reference_type] = STATE(1659), + [sym_pointer_type] = STATE(1659), + [sym_empty_type] = STATE(1659), + [sym_abstract_type] = STATE(1659), + [sym_dynamic_type] = STATE(1659), + [sym_macro_invocation] = STATE(1659), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1793), + [sym_tuple_pattern] = STATE(1793), + [sym_slice_pattern] = STATE(1793), + [sym_tuple_struct_pattern] = STATE(1793), + [sym_struct_pattern] = STATE(1793), + [sym_remaining_field_pattern] = STATE(1793), + [sym_mut_pattern] = STATE(1793), + [sym_range_pattern] = STATE(1793), + [sym_ref_pattern] = STATE(1793), + [sym_captured_pattern] = STATE(1793), + [sym_reference_pattern] = STATE(1793), + [sym_box_pattern] = STATE(1793), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(603), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [184] = { - [sym_attribute_item] = STATE(185), - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(2068), - [sym_variadic_parameter] = STATE(2068), - [sym_parameter] = STATE(2068), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1806), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1806), - [sym_tuple_type] = STATE(1806), - [sym_unit_type] = STATE(1806), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1806), - [sym_reference_type] = STATE(1806), - [sym_pointer_type] = STATE(1806), - [sym_empty_type] = STATE(1806), - [sym_abstract_type] = STATE(1806), - [sym_dynamic_type] = STATE(1806), - [sym_macro_invocation] = STATE(1806), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [191] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1659), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1659), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1659), + [sym_tuple_type] = STATE(1659), + [sym_unit_type] = STATE(1659), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1659), + [sym_reference_type] = STATE(1659), + [sym_pointer_type] = STATE(1659), + [sym_empty_type] = STATE(1659), + [sym_abstract_type] = STATE(1659), + [sym_dynamic_type] = STATE(1659), + [sym_macro_invocation] = STATE(1659), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1793), + [sym_tuple_pattern] = STATE(1793), + [sym_slice_pattern] = STATE(1793), + [sym_tuple_struct_pattern] = STATE(1793), + [sym_struct_pattern] = STATE(1793), + [sym_remaining_field_pattern] = STATE(1793), + [sym_mut_pattern] = STATE(1793), + [sym_range_pattern] = STATE(1793), + [sym_ref_pattern] = STATE(1793), + [sym_captured_pattern] = STATE(1793), + [sym_reference_pattern] = STATE(1793), + [sym_box_pattern] = STATE(1793), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(603), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [185] = { - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(2011), - [sym_variadic_parameter] = STATE(2011), - [sym_parameter] = STATE(2011), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1932), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1932), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1932), - [sym_tuple_type] = STATE(1932), - [sym_unit_type] = STATE(1932), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1932), - [sym_reference_type] = STATE(1932), - [sym_pointer_type] = STATE(1932), - [sym_empty_type] = STATE(1932), - [sym_abstract_type] = STATE(1932), - [sym_dynamic_type] = STATE(1932), - [sym_macro_invocation] = STATE(1932), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [192] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1316), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(534), + [sym_array_type] = STATE(1316), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1316), + [sym_tuple_type] = STATE(1316), + [sym_unit_type] = STATE(1316), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1316), + [sym_reference_type] = STATE(1316), + [sym_pointer_type] = STATE(1316), + [sym_empty_type] = STATE(1316), + [sym_abstract_type] = STATE(1316), + [sym_dynamic_type] = STATE(1316), + [sym_macro_invocation] = STATE(1316), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1360), + [sym_tuple_pattern] = STATE(1360), + [sym_slice_pattern] = STATE(1360), + [sym_tuple_struct_pattern] = STATE(1360), + [sym_struct_pattern] = STATE(1360), + [sym_remaining_field_pattern] = STATE(1360), + [sym_mut_pattern] = STATE(1360), + [sym_range_pattern] = STATE(1360), + [sym_ref_pattern] = STATE(1360), + [sym_captured_pattern] = STATE(1360), + [sym_reference_pattern] = STATE(1360), + [sym_box_pattern] = STATE(1360), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(1051), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [186] = { - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(1921), - [sym_variadic_parameter] = STATE(1921), - [sym_parameter] = STATE(1921), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1671), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1671), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1671), - [sym_tuple_type] = STATE(1671), - [sym_unit_type] = STATE(1671), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1671), - [sym_reference_type] = STATE(1671), - [sym_pointer_type] = STATE(1671), - [sym_empty_type] = STATE(1671), - [sym_abstract_type] = STATE(1671), - [sym_dynamic_type] = STATE(1671), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [193] = { + [sym_identifier] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_EQ_GT] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1053), + [anon_sym_i8] = ACTIONS(1053), + [anon_sym_u16] = ACTIONS(1053), + [anon_sym_i16] = ACTIONS(1053), + [anon_sym_u32] = ACTIONS(1053), + [anon_sym_i32] = ACTIONS(1053), + [anon_sym_u64] = ACTIONS(1053), + [anon_sym_i64] = ACTIONS(1053), + [anon_sym_u128] = ACTIONS(1053), + [anon_sym_i128] = ACTIONS(1053), + [anon_sym_isize] = ACTIONS(1053), + [anon_sym_usize] = ACTIONS(1053), + [anon_sym_f32] = ACTIONS(1053), + [anon_sym_f64] = ACTIONS(1053), + [anon_sym_bool] = ACTIONS(1053), + [anon_sym_str] = ACTIONS(1053), + [anon_sym_char] = ACTIONS(1053), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_as] = ACTIONS(1053), + [anon_sym_async] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_loop] = ACTIONS(1053), + [anon_sym_match] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_EQ] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(1055), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(1053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_AMP_AMP] = ACTIONS(1055), + [anon_sym_PIPE_PIPE] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1055), + [anon_sym_BANG_EQ] = ACTIONS(1055), + [anon_sym_LT_EQ] = ACTIONS(1055), + [anon_sym_GT_EQ] = ACTIONS(1055), + [anon_sym_LT_LT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1053), + [anon_sym_PLUS_EQ] = ACTIONS(1055), + [anon_sym_DASH_EQ] = ACTIONS(1055), + [anon_sym_STAR_EQ] = ACTIONS(1055), + [anon_sym_SLASH_EQ] = ACTIONS(1055), + [anon_sym_PERCENT_EQ] = ACTIONS(1055), + [anon_sym_AMP_EQ] = ACTIONS(1055), + [anon_sym_PIPE_EQ] = ACTIONS(1055), + [anon_sym_CARET_EQ] = ACTIONS(1055), + [anon_sym_LT_LT_EQ] = ACTIONS(1055), + [anon_sym_GT_GT_EQ] = ACTIONS(1055), + [anon_sym_move] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(1053), + [sym_integer_literal] = ACTIONS(1055), + [aux_sym_string_literal_token1] = ACTIONS(1055), + [sym_char_literal] = ACTIONS(1055), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1053), + [sym_super] = ACTIONS(1053), + [sym_crate] = ACTIONS(1053), + [sym_metavariable] = ACTIONS(1055), + [sym_raw_string_literal] = ACTIONS(1055), + [sym_float_literal] = ACTIONS(1055), + [sym_block_comment] = ACTIONS(3), + }, + [194] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1318), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1318), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1318), + [sym_tuple_type] = STATE(1318), + [sym_unit_type] = STATE(1318), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1318), + [sym_reference_type] = STATE(1318), + [sym_pointer_type] = STATE(1318), + [sym_empty_type] = STATE(1318), + [sym_abstract_type] = STATE(1318), + [sym_dynamic_type] = STATE(1318), + [sym_macro_invocation] = STATE(1318), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1370), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_box_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(603), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym_function_modifiers] = STATE(2279), - [sym_self_parameter] = STATE(1901), - [sym_variadic_parameter] = STATE(1901), - [sym_parameter] = STATE(1901), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1647), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(1735), - [sym_array_type] = STATE(1647), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1647), - [sym_tuple_type] = STATE(1647), - [sym_unit_type] = STATE(1647), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1647), - [sym_reference_type] = STATE(1647), - [sym_pointer_type] = STATE(1647), - [sym_empty_type] = STATE(1647), - [sym_abstract_type] = STATE(1647), - [sym_dynamic_type] = STATE(1647), - [sym_macro_invocation] = STATE(1647), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(2210), - [sym_slice_pattern] = STATE(2210), - [sym_tuple_struct_pattern] = STATE(2210), - [sym_struct_pattern] = STATE(2210), - [sym_remaining_field_pattern] = STATE(2210), - [sym_mut_pattern] = STATE(2210), - [sym_range_pattern] = STATE(2210), - [sym_ref_pattern] = STATE(2210), - [sym_captured_pattern] = STATE(2210), - [sym_reference_pattern] = STATE(2210), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(749), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_union] = ACTIONS(757), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [195] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1318), + [sym_bracketed_type] = STATE(2342), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1318), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1318), + [sym_tuple_type] = STATE(1318), + [sym_unit_type] = STATE(1318), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2343), + [sym_bounded_type] = STATE(1318), + [sym_reference_type] = STATE(1318), + [sym_pointer_type] = STATE(1318), + [sym_empty_type] = STATE(1318), + [sym_abstract_type] = STATE(1318), + [sym_dynamic_type] = STATE(1318), + [sym_macro_invocation] = STATE(1318), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1370), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_box_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(775), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(779), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(633), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [188] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1682), + [196] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1318), [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1682), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1682), - [sym_tuple_type] = STATE(1682), - [sym_unit_type] = STATE(1682), - [sym_generic_type] = STATE(1285), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1318), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1318), + [sym_tuple_type] = STATE(1318), + [sym_unit_type] = STATE(1318), + [sym_generic_type] = STATE(1283), [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1682), - [sym_reference_type] = STATE(1682), - [sym_pointer_type] = STATE(1682), - [sym_empty_type] = STATE(1682), - [sym_abstract_type] = STATE(1682), - [sym_dynamic_type] = STATE(1682), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1740), - [sym_tuple_pattern] = STATE(1740), - [sym_slice_pattern] = STATE(1740), - [sym_tuple_struct_pattern] = STATE(1740), - [sym_struct_pattern] = STATE(1740), - [sym_remaining_field_pattern] = STATE(1740), - [sym_mut_pattern] = STATE(1740), - [sym_range_pattern] = STATE(1740), - [sym_ref_pattern] = STATE(1740), - [sym_captured_pattern] = STATE(1740), - [sym_reference_pattern] = STATE(1740), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [sym_bounded_type] = STATE(1318), + [sym_reference_type] = STATE(1318), + [sym_pointer_type] = STATE(1318), + [sym_empty_type] = STATE(1318), + [sym_abstract_type] = STATE(1318), + [sym_dynamic_type] = STATE(1318), + [sym_macro_invocation] = STATE(1318), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1370), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_box_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(789), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(1061), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [189] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1836), + [197] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1316), [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1836), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1836), - [sym_tuple_type] = STATE(1836), - [sym_unit_type] = STATE(1836), - [sym_generic_type] = STATE(1285), + [sym_lifetime] = STATE(536), + [sym_array_type] = STATE(1316), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1316), + [sym_tuple_type] = STATE(1316), + [sym_unit_type] = STATE(1316), + [sym_generic_type] = STATE(1283), [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1836), - [sym_reference_type] = STATE(1836), - [sym_pointer_type] = STATE(1836), - [sym_empty_type] = STATE(1836), - [sym_abstract_type] = STATE(1836), - [sym_dynamic_type] = STATE(1836), - [sym_macro_invocation] = STATE(1836), - [sym_scoped_identifier] = STATE(1513), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1748), - [sym_tuple_pattern] = STATE(1748), - [sym_slice_pattern] = STATE(1748), - [sym_tuple_struct_pattern] = STATE(1748), - [sym_struct_pattern] = STATE(1748), - [sym_remaining_field_pattern] = STATE(1748), - [sym_mut_pattern] = STATE(1748), - [sym_range_pattern] = STATE(1748), - [sym_ref_pattern] = STATE(1748), - [sym_captured_pattern] = STATE(1748), - [sym_reference_pattern] = STATE(1748), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u128] = ACTIONS(1025), - [anon_sym_i128] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_str] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [sym_bounded_type] = STATE(1316), + [sym_reference_type] = STATE(1316), + [sym_pointer_type] = STATE(1316), + [sym_empty_type] = STATE(1316), + [sym_abstract_type] = STATE(1316), + [sym_dynamic_type] = STATE(1316), + [sym_macro_invocation] = STATE(1316), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1360), + [sym_tuple_pattern] = STATE(1360), + [sym_slice_pattern] = STATE(1360), + [sym_tuple_struct_pattern] = STATE(1360), + [sym_struct_pattern] = STATE(1360), + [sym_remaining_field_pattern] = STATE(1360), + [sym_mut_pattern] = STATE(1360), + [sym_range_pattern] = STATE(1360), + [sym_ref_pattern] = STATE(1360), + [sym_captured_pattern] = STATE(1360), + [sym_reference_pattern] = STATE(1360), + [sym_box_pattern] = STATE(1360), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1031), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1035), - [sym_super] = ACTIONS(1035), - [sym_crate] = ACTIONS(1035), - [sym_metavariable] = ACTIONS(1037), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(603), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [190] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1682), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1682), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1682), - [sym_tuple_type] = STATE(1682), - [sym_unit_type] = STATE(1682), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1682), - [sym_reference_type] = STATE(1682), - [sym_pointer_type] = STATE(1682), - [sym_empty_type] = STATE(1682), - [sym_abstract_type] = STATE(1682), - [sym_dynamic_type] = STATE(1682), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1740), - [sym_tuple_pattern] = STATE(1740), - [sym_slice_pattern] = STATE(1740), - [sym_tuple_struct_pattern] = STATE(1740), - [sym_struct_pattern] = STATE(1740), - [sym_remaining_field_pattern] = STATE(1740), - [sym_mut_pattern] = STATE(1740), - [sym_range_pattern] = STATE(1740), - [sym_ref_pattern] = STATE(1740), - [sym_captured_pattern] = STATE(1740), - [sym_reference_pattern] = STATE(1740), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [198] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1316), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(536), + [sym_array_type] = STATE(1316), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1316), + [sym_tuple_type] = STATE(1316), + [sym_unit_type] = STATE(1316), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1316), + [sym_reference_type] = STATE(1316), + [sym_pointer_type] = STATE(1316), + [sym_empty_type] = STATE(1316), + [sym_abstract_type] = STATE(1316), + [sym_dynamic_type] = STATE(1316), + [sym_macro_invocation] = STATE(1316), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1360), + [sym_tuple_pattern] = STATE(1360), + [sym_slice_pattern] = STATE(1360), + [sym_tuple_struct_pattern] = STATE(1360), + [sym_struct_pattern] = STATE(1360), + [sym_remaining_field_pattern] = STATE(1360), + [sym_mut_pattern] = STATE(1360), + [sym_range_pattern] = STATE(1360), + [sym_ref_pattern] = STATE(1360), + [sym_captured_pattern] = STATE(1360), + [sym_reference_pattern] = STATE(1360), + [sym_box_pattern] = STATE(1360), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1015), + [anon_sym_i8] = ACTIONS(1015), + [anon_sym_u16] = ACTIONS(1015), + [anon_sym_i16] = ACTIONS(1015), + [anon_sym_u32] = ACTIONS(1015), + [anon_sym_i32] = ACTIONS(1015), + [anon_sym_u64] = ACTIONS(1015), + [anon_sym_i64] = ACTIONS(1015), + [anon_sym_u128] = ACTIONS(1015), + [anon_sym_i128] = ACTIONS(1015), + [anon_sym_isize] = ACTIONS(1015), + [anon_sym_usize] = ACTIONS(1015), + [anon_sym_f32] = ACTIONS(1015), + [anon_sym_f64] = ACTIONS(1015), + [anon_sym_bool] = ACTIONS(1015), + [anon_sym_str] = ACTIONS(1015), + [anon_sym_char] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(1019), + [anon_sym__] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1065), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(789), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(1029), + [sym_super] = ACTIONS(1029), + [sym_crate] = ACTIONS(1029), + [sym_metavariable] = ACTIONS(1031), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [191] = { - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_EQ_GT] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_COMMA] = ACTIONS(1043), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_move] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym_metavariable] = ACTIONS(1043), - [sym_raw_string_literal] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), - [sym_block_comment] = ACTIONS(3), - }, - [192] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1682), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1682), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1682), - [sym_tuple_type] = STATE(1682), - [sym_unit_type] = STATE(1682), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1682), - [sym_reference_type] = STATE(1682), - [sym_pointer_type] = STATE(1682), - [sym_empty_type] = STATE(1682), - [sym_abstract_type] = STATE(1682), - [sym_dynamic_type] = STATE(1682), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1740), - [sym_tuple_pattern] = STATE(1740), - [sym_slice_pattern] = STATE(1740), - [sym_tuple_struct_pattern] = STATE(1740), - [sym_struct_pattern] = STATE(1740), - [sym_remaining_field_pattern] = STATE(1740), - [sym_mut_pattern] = STATE(1740), - [sym_range_pattern] = STATE(1740), - [sym_ref_pattern] = STATE(1740), - [sym_captured_pattern] = STATE(1740), - [sym_reference_pattern] = STATE(1740), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(789), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), - [sym_block_comment] = ACTIONS(3), - }, - [193] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1312), + [199] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1316), [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(525), - [sym_array_type] = STATE(1312), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1312), - [sym_tuple_type] = STATE(1312), - [sym_unit_type] = STATE(1312), - [sym_generic_type] = STATE(1285), + [sym_lifetime] = STATE(536), + [sym_array_type] = STATE(1316), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1316), + [sym_tuple_type] = STATE(1316), + [sym_unit_type] = STATE(1316), + [sym_generic_type] = STATE(1283), [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1312), - [sym_reference_type] = STATE(1312), - [sym_pointer_type] = STATE(1312), - [sym_empty_type] = STATE(1312), - [sym_abstract_type] = STATE(1312), - [sym_dynamic_type] = STATE(1312), - [sym_macro_invocation] = STATE(1312), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1340), - [sym_tuple_pattern] = STATE(1340), - [sym_slice_pattern] = STATE(1340), - [sym_tuple_struct_pattern] = STATE(1340), - [sym_struct_pattern] = STATE(1340), - [sym_remaining_field_pattern] = STATE(1340), - [sym_mut_pattern] = STATE(1340), - [sym_range_pattern] = STATE(1340), - [sym_ref_pattern] = STATE(1340), - [sym_captured_pattern] = STATE(1340), - [sym_reference_pattern] = STATE(1340), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(1047), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(789), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), - [sym_block_comment] = ACTIONS(3), - }, - [194] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1293), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1293), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1293), - [sym_tuple_type] = STATE(1293), - [sym_unit_type] = STATE(1293), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1293), - [sym_reference_type] = STATE(1293), - [sym_pointer_type] = STATE(1293), - [sym_empty_type] = STATE(1293), - [sym_abstract_type] = STATE(1293), - [sym_dynamic_type] = STATE(1293), - [sym_macro_invocation] = STATE(1293), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1360), - [sym_tuple_pattern] = STATE(1360), - [sym_slice_pattern] = STATE(1360), - [sym_tuple_struct_pattern] = STATE(1360), - [sym_struct_pattern] = STATE(1360), - [sym_remaining_field_pattern] = STATE(1360), - [sym_mut_pattern] = STATE(1360), - [sym_range_pattern] = STATE(1360), - [sym_ref_pattern] = STATE(1360), - [sym_captured_pattern] = STATE(1360), - [sym_reference_pattern] = STATE(1360), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1057), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), - [sym_block_comment] = ACTIONS(3), - }, - [195] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1293), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1293), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1293), - [sym_tuple_type] = STATE(1293), - [sym_unit_type] = STATE(1293), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1293), - [sym_reference_type] = STATE(1293), - [sym_pointer_type] = STATE(1293), - [sym_empty_type] = STATE(1293), - [sym_abstract_type] = STATE(1293), - [sym_dynamic_type] = STATE(1293), - [sym_macro_invocation] = STATE(1293), - [sym_scoped_identifier] = STATE(1513), - [sym_scoped_type_identifier] = STATE(1375), + [sym_bounded_type] = STATE(1316), + [sym_reference_type] = STATE(1316), + [sym_pointer_type] = STATE(1316), + [sym_empty_type] = STATE(1316), + [sym_abstract_type] = STATE(1316), + [sym_dynamic_type] = STATE(1316), + [sym_macro_invocation] = STATE(1316), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), [sym__pattern] = STATE(1360), [sym_tuple_pattern] = STATE(1360), [sym_slice_pattern] = STATE(1360), @@ -28893,547 +29333,277 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ref_pattern] = STATE(1360), [sym_captured_pattern] = STATE(1360), [sym_reference_pattern] = STATE(1360), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u128] = ACTIONS(1025), - [anon_sym_i128] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_str] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [sym_box_pattern] = STATE(1360), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1035), - [sym_super] = ACTIONS(1035), - [sym_crate] = ACTIONS(1035), - [sym_metavariable] = ACTIONS(1037), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(633), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1312), + [200] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1318), [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(525), - [sym_array_type] = STATE(1312), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1312), - [sym_tuple_type] = STATE(1312), - [sym_unit_type] = STATE(1312), - [sym_generic_type] = STATE(1285), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1318), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1318), + [sym_tuple_type] = STATE(1318), + [sym_unit_type] = STATE(1318), + [sym_generic_type] = STATE(1283), [sym_generic_type_with_turbofish] = STATE(2346), - [sym_bounded_type] = STATE(1312), - [sym_reference_type] = STATE(1312), - [sym_pointer_type] = STATE(1312), - [sym_empty_type] = STATE(1312), - [sym_abstract_type] = STATE(1312), - [sym_dynamic_type] = STATE(1312), - [sym_macro_invocation] = STATE(1312), - [sym_scoped_identifier] = STATE(1513), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1340), - [sym_tuple_pattern] = STATE(1340), - [sym_slice_pattern] = STATE(1340), - [sym_tuple_struct_pattern] = STATE(1340), - [sym_struct_pattern] = STATE(1340), - [sym_remaining_field_pattern] = STATE(1340), - [sym_mut_pattern] = STATE(1340), - [sym_range_pattern] = STATE(1340), - [sym_ref_pattern] = STATE(1340), - [sym_captured_pattern] = STATE(1340), - [sym_reference_pattern] = STATE(1340), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u128] = ACTIONS(1025), - [anon_sym_i128] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_str] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(1047), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1059), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1035), - [sym_super] = ACTIONS(1035), - [sym_crate] = ACTIONS(1035), - [sym_metavariable] = ACTIONS(1037), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), - [sym_block_comment] = ACTIONS(3), - }, - [197] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1312), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(525), - [sym_array_type] = STATE(1312), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1312), - [sym_tuple_type] = STATE(1312), - [sym_unit_type] = STATE(1312), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1312), - [sym_reference_type] = STATE(1312), - [sym_pointer_type] = STATE(1312), - [sym_empty_type] = STATE(1312), - [sym_abstract_type] = STATE(1312), - [sym_dynamic_type] = STATE(1312), - [sym_macro_invocation] = STATE(1312), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1340), - [sym_tuple_pattern] = STATE(1340), - [sym_slice_pattern] = STATE(1340), - [sym_tuple_struct_pattern] = STATE(1340), - [sym_struct_pattern] = STATE(1340), - [sym_remaining_field_pattern] = STATE(1340), - [sym_mut_pattern] = STATE(1340), - [sym_range_pattern] = STATE(1340), - [sym_ref_pattern] = STATE(1340), - [sym_captured_pattern] = STATE(1340), - [sym_reference_pattern] = STATE(1340), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(1047), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1055), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(909), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), - [sym_block_comment] = ACTIONS(3), - }, - [198] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1293), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1293), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1293), - [sym_tuple_type] = STATE(1293), - [sym_unit_type] = STATE(1293), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1293), - [sym_reference_type] = STATE(1293), - [sym_pointer_type] = STATE(1293), - [sym_empty_type] = STATE(1293), - [sym_abstract_type] = STATE(1293), - [sym_dynamic_type] = STATE(1293), - [sym_macro_invocation] = STATE(1293), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1360), - [sym_tuple_pattern] = STATE(1360), - [sym_slice_pattern] = STATE(1360), - [sym_tuple_struct_pattern] = STATE(1360), - [sym_struct_pattern] = STATE(1360), - [sym_remaining_field_pattern] = STATE(1360), - [sym_mut_pattern] = STATE(1360), - [sym_range_pattern] = STATE(1360), - [sym_ref_pattern] = STATE(1360), - [sym_captured_pattern] = STATE(1360), - [sym_reference_pattern] = STATE(1360), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1063), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), - [sym_block_comment] = ACTIONS(3), - }, - [199] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1312), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(526), - [sym_array_type] = STATE(1312), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1312), - [sym_tuple_type] = STATE(1312), - [sym_unit_type] = STATE(1312), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1312), - [sym_reference_type] = STATE(1312), - [sym_pointer_type] = STATE(1312), - [sym_empty_type] = STATE(1312), - [sym_abstract_type] = STATE(1312), - [sym_dynamic_type] = STATE(1312), - [sym_macro_invocation] = STATE(1312), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1340), - [sym_tuple_pattern] = STATE(1340), - [sym_slice_pattern] = STATE(1340), - [sym_tuple_struct_pattern] = STATE(1340), - [sym_struct_pattern] = STATE(1340), - [sym_remaining_field_pattern] = STATE(1340), - [sym_mut_pattern] = STATE(1340), - [sym_range_pattern] = STATE(1340), - [sym_ref_pattern] = STATE(1340), - [sym_captured_pattern] = STATE(1340), - [sym_reference_pattern] = STATE(1340), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(1047), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [sym_bounded_type] = STATE(1318), + [sym_reference_type] = STATE(1318), + [sym_pointer_type] = STATE(1318), + [sym_empty_type] = STATE(1318), + [sym_abstract_type] = STATE(1318), + [sym_dynamic_type] = STATE(1318), + [sym_macro_invocation] = STATE(1318), + [sym_scoped_identifier] = STATE(1441), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1370), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_box_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_isize] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_f32] = ACTIONS(555), + [anon_sym_f64] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_str] = ACTIONS(555), + [anon_sym_char] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1055), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym__] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1067), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(1069), + [sym_super] = ACTIONS(603), + [sym_crate] = ACTIONS(603), + [sym_metavariable] = ACTIONS(605), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [200] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1293), - [sym_bracketed_type] = STATE(2339), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1293), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1293), - [sym_tuple_type] = STATE(1293), - [sym_unit_type] = STATE(1293), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2340), - [sym_bounded_type] = STATE(1293), - [sym_reference_type] = STATE(1293), - [sym_pointer_type] = STATE(1293), - [sym_empty_type] = STATE(1293), - [sym_abstract_type] = STATE(1293), - [sym_dynamic_type] = STATE(1293), - [sym_macro_invocation] = STATE(1293), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1360), - [sym_tuple_pattern] = STATE(1360), - [sym_slice_pattern] = STATE(1360), - [sym_tuple_struct_pattern] = STATE(1360), - [sym_struct_pattern] = STATE(1360), - [sym_remaining_field_pattern] = STATE(1360), - [sym_mut_pattern] = STATE(1360), - [sym_range_pattern] = STATE(1360), - [sym_ref_pattern] = STATE(1360), - [sym_captured_pattern] = STATE(1360), - [sym_reference_pattern] = STATE(1360), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [201] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1318), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1318), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1318), + [sym_tuple_type] = STATE(1318), + [sym_unit_type] = STATE(1318), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1318), + [sym_reference_type] = STATE(1318), + [sym_pointer_type] = STATE(1318), + [sym_empty_type] = STATE(1318), + [sym_abstract_type] = STATE(1318), + [sym_dynamic_type] = STATE(1318), + [sym_macro_invocation] = STATE(1318), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1389), + [sym__pattern] = STATE(1370), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_box_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1015), + [anon_sym_i8] = ACTIONS(1015), + [anon_sym_u16] = ACTIONS(1015), + [anon_sym_i16] = ACTIONS(1015), + [anon_sym_u32] = ACTIONS(1015), + [anon_sym_i32] = ACTIONS(1015), + [anon_sym_u64] = ACTIONS(1015), + [anon_sym_i64] = ACTIONS(1015), + [anon_sym_u128] = ACTIONS(1015), + [anon_sym_i128] = ACTIONS(1015), + [anon_sym_isize] = ACTIONS(1015), + [anon_sym_usize] = ACTIONS(1015), + [anon_sym_f32] = ACTIONS(1015), + [anon_sym_f64] = ACTIONS(1015), + [anon_sym_bool] = ACTIONS(1015), + [anon_sym_str] = ACTIONS(1015), + [anon_sym_char] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(901), - [anon_sym__] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(1019), + [anon_sym__] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(909), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(1029), + [sym_super] = ACTIONS(1029), + [sym_crate] = ACTIONS(1029), + [sym_metavariable] = ACTIONS(1031), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, - [201] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1293), + [202] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1316), [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1293), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1293), - [sym_tuple_type] = STATE(1293), - [sym_unit_type] = STATE(1293), - [sym_generic_type] = STATE(1285), + [sym_lifetime] = STATE(534), + [sym_array_type] = STATE(1316), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1316), + [sym_tuple_type] = STATE(1316), + [sym_unit_type] = STATE(1316), + [sym_generic_type] = STATE(1283), [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1293), - [sym_reference_type] = STATE(1293), - [sym_pointer_type] = STATE(1293), - [sym_empty_type] = STATE(1293), - [sym_abstract_type] = STATE(1293), - [sym_dynamic_type] = STATE(1293), - [sym_macro_invocation] = STATE(1293), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), + [sym_bounded_type] = STATE(1316), + [sym_reference_type] = STATE(1316), + [sym_pointer_type] = STATE(1316), + [sym_empty_type] = STATE(1316), + [sym_abstract_type] = STATE(1316), + [sym_dynamic_type] = STATE(1316), + [sym_macro_invocation] = STATE(1316), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1389), [sym__pattern] = STATE(1360), [sym_tuple_pattern] = STATE(1360), [sym_slice_pattern] = STATE(1360), @@ -29445,475 +29615,149 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ref_pattern] = STATE(1360), [sym_captured_pattern] = STATE(1360), [sym_reference_pattern] = STATE(1360), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1015), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(789), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), - [sym_block_comment] = ACTIONS(3), - }, - [202] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1312), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(526), - [sym_array_type] = STATE(1312), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1312), - [sym_tuple_type] = STATE(1312), - [sym_unit_type] = STATE(1312), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1312), - [sym_reference_type] = STATE(1312), - [sym_pointer_type] = STATE(1312), - [sym_empty_type] = STATE(1312), - [sym_abstract_type] = STATE(1312), - [sym_dynamic_type] = STATE(1312), - [sym_macro_invocation] = STATE(1312), - [sym_scoped_identifier] = STATE(1428), - [sym_scoped_type_identifier] = STATE(1375), - [sym__pattern] = STATE(1340), - [sym_tuple_pattern] = STATE(1340), - [sym_slice_pattern] = STATE(1340), - [sym_tuple_struct_pattern] = STATE(1340), - [sym_struct_pattern] = STATE(1340), - [sym_remaining_field_pattern] = STATE(1340), - [sym_mut_pattern] = STATE(1340), - [sym_range_pattern] = STATE(1340), - [sym_ref_pattern] = STATE(1340), - [sym_captured_pattern] = STATE(1340), - [sym_reference_pattern] = STATE(1340), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1376), - [sym_string_literal] = STATE(1376), - [sym_boolean_literal] = STATE(1376), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(739), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(743), - [anon_sym_i8] = ACTIONS(743), - [anon_sym_u16] = ACTIONS(743), - [anon_sym_i16] = ACTIONS(743), - [anon_sym_u32] = ACTIONS(743), - [anon_sym_i32] = ACTIONS(743), - [anon_sym_u64] = ACTIONS(743), - [anon_sym_i64] = ACTIONS(743), - [anon_sym_u128] = ACTIONS(743), - [anon_sym_i128] = ACTIONS(743), - [anon_sym_isize] = ACTIONS(743), - [anon_sym_usize] = ACTIONS(743), - [anon_sym_f32] = ACTIONS(743), - [anon_sym_f64] = ACTIONS(743), - [anon_sym_bool] = ACTIONS(743), - [anon_sym_str] = ACTIONS(743), - [anon_sym_char] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(1047), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_ref] = ACTIONS(767), + [sym_box_pattern] = STATE(1360), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(621), + [anon_sym_i8] = ACTIONS(621), + [anon_sym_u16] = ACTIONS(621), + [anon_sym_i16] = ACTIONS(621), + [anon_sym_u32] = ACTIONS(621), + [anon_sym_i32] = ACTIONS(621), + [anon_sym_u64] = ACTIONS(621), + [anon_sym_i64] = ACTIONS(621), + [anon_sym_u128] = ACTIONS(621), + [anon_sym_i128] = ACTIONS(621), + [anon_sym_isize] = ACTIONS(621), + [anon_sym_usize] = ACTIONS(621), + [anon_sym_f32] = ACTIONS(621), + [anon_sym_f64] = ACTIONS(621), + [anon_sym_bool] = ACTIONS(621), + [anon_sym_str] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(579), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym__] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(1069), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(625), + [anon_sym__] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(785), + [sym_char_literal] = ACTIONS(599), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1071), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym_raw_string_literal] = ACTIONS(785), - [sym_float_literal] = ACTIONS(785), + [sym_self] = ACTIONS(1073), + [sym_super] = ACTIONS(633), + [sym_crate] = ACTIONS(633), + [sym_metavariable] = ACTIONS(635), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1824), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1824), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1824), - [sym_tuple_type] = STATE(1824), - [sym_unit_type] = STATE(1824), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1824), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1824), - [sym_pointer_type] = STATE(1824), - [sym_empty_type] = STATE(1824), - [sym_abstract_type] = STATE(1824), - [sym_dynamic_type] = STATE(1824), - [sym_macro_invocation] = STATE(1824), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2052), - [sym_boolean_literal] = STATE(2052), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(1083), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_integer_literal] = ACTIONS(1089), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [sym__else_tail] = STATE(214), + [sym_identifier] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u128] = ACTIONS(397), + [anon_sym_i128] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_str] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_ref] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym__] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [sym_mutable_specifier] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_else] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_box] = ACTIONS(397), + [sym_integer_literal] = ACTIONS(395), + [aux_sym_string_literal_token1] = ACTIONS(395), + [sym_char_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), - [sym_raw_string_literal] = ACTIONS(1089), - [sym_float_literal] = ACTIONS(1089), + [sym_self] = ACTIONS(397), + [sym_super] = ACTIONS(397), + [sym_crate] = ACTIONS(397), + [sym_metavariable] = ACTIONS(395), + [sym_raw_string_literal] = ACTIONS(395), + [sym_float_literal] = ACTIONS(395), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1824), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1824), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1824), - [sym_tuple_type] = STATE(1824), - [sym_unit_type] = STATE(1824), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1824), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1824), - [sym_pointer_type] = STATE(1824), - [sym_empty_type] = STATE(1824), - [sym_abstract_type] = STATE(1824), - [sym_dynamic_type] = STATE(1824), - [sym_macro_invocation] = STATE(1824), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2052), - [sym_boolean_literal] = STATE(2052), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_integer_literal] = ACTIONS(1089), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), - [sym_raw_string_literal] = ACTIONS(1089), - [sym_float_literal] = ACTIONS(1089), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1824), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1824), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1824), - [sym_tuple_type] = STATE(1824), - [sym_unit_type] = STATE(1824), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1824), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1824), - [sym_pointer_type] = STATE(1824), - [sym_empty_type] = STATE(1824), - [sym_abstract_type] = STATE(1824), - [sym_dynamic_type] = STATE(1824), - [sym_macro_invocation] = STATE(1824), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2052), - [sym_boolean_literal] = STATE(2052), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(1101), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_integer_literal] = ACTIONS(1089), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), - [sym_raw_string_literal] = ACTIONS(1089), - [sym_float_literal] = ACTIONS(1089), - [sym_block_comment] = ACTIONS(3), - }, - [206] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1824), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1824), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1824), - [sym_tuple_type] = STATE(1824), - [sym_unit_type] = STATE(1824), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1824), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1824), - [sym_pointer_type] = STATE(1824), - [sym_empty_type] = STATE(1824), - [sym_abstract_type] = STATE(1824), - [sym_dynamic_type] = STATE(1824), - [sym_macro_invocation] = STATE(1824), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2052), - [sym_boolean_literal] = STATE(2052), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(1103), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_integer_literal] = ACTIONS(1089), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), - [sym_raw_string_literal] = ACTIONS(1089), - [sym_float_literal] = ACTIONS(1089), - [sym_block_comment] = ACTIONS(3), - }, - [207] = { - [sym__else_tail] = STATE(231), + [sym__else_tail] = STATE(216), [sym_identifier] = ACTIONS(391), [anon_sym_LPAREN] = ACTIONS(389), [anon_sym_RBRACE] = ACTIONS(389), @@ -29975,8 +29819,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(389), [anon_sym_LT_LT_EQ] = ACTIONS(389), [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_else] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1075), [anon_sym_DOT] = ACTIONS(391), + [anon_sym_box] = ACTIONS(391), [sym_integer_literal] = ACTIONS(389), [aux_sym_string_literal_token1] = ACTIONS(389), [sym_char_literal] = ACTIONS(389), @@ -29991,398 +29836,323 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(389), [sym_block_comment] = ACTIONS(3), }, - [208] = { - [sym__else_tail] = STATE(227), - [sym_identifier] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u128] = ACTIONS(397), - [anon_sym_i128] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_str] = ACTIONS(397), - [anon_sym_char] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(395), - [anon_sym_ref] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym__] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_mutable_specifier] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(397), - [sym_integer_literal] = ACTIONS(395), - [aux_sym_string_literal_token1] = ACTIONS(395), - [sym_char_literal] = ACTIONS(395), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), + [205] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1828), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1833), + [sym_array_type] = STATE(1828), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1828), + [sym_tuple_type] = STATE(1828), + [sym_unit_type] = STATE(1828), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1828), + [sym_type_binding] = STATE(2148), + [sym_reference_type] = STATE(1828), + [sym_pointer_type] = STATE(1828), + [sym_empty_type] = STATE(1828), + [sym_abstract_type] = STATE(1828), + [sym_dynamic_type] = STATE(1828), + [sym_macro_invocation] = STATE(1828), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [sym_block] = STATE(2148), + [sym__literal] = STATE(2148), + [sym_string_literal] = STATE(2148), + [sym_boolean_literal] = STATE(2148), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_integer_literal] = ACTIONS(1093), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_crate] = ACTIONS(397), - [sym_metavariable] = ACTIONS(395), - [sym_raw_string_literal] = ACTIONS(395), - [sym_float_literal] = ACTIONS(395), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), + [sym_raw_string_literal] = ACTIONS(1093), + [sym_float_literal] = ACTIONS(1093), [sym_block_comment] = ACTIONS(3), }, - [209] = { - [sym_empty_statement] = STATE(219), - [sym_macro_definition] = STATE(219), - [sym_attribute_item] = STATE(219), - [sym_inner_attribute_item] = STATE(219), - [sym_mod_item] = STATE(219), - [sym_foreign_mod_item] = STATE(219), - [sym_struct_item] = STATE(219), - [sym_union_item] = STATE(219), - [sym_enum_item] = STATE(219), - [sym_extern_crate_declaration] = STATE(219), - [sym_const_item] = STATE(219), - [sym_static_item] = STATE(219), - [sym_type_item] = STATE(219), - [sym_function_item] = STATE(219), - [sym_function_signature_item] = STATE(219), - [sym_function_modifiers] = STATE(2394), - [sym_impl_item] = STATE(219), - [sym_trait_item] = STATE(219), - [sym_associated_type] = STATE(219), - [sym_let_declaration] = STATE(219), - [sym_use_declaration] = STATE(219), - [sym_extern_modifier] = STATE(1400), - [sym_visibility_modifier] = STATE(1247), - [sym_bracketed_type] = STATE(2221), - [sym_generic_type_with_turbofish] = STATE(2232), - [sym_macro_invocation] = STATE(219), - [sym_scoped_identifier] = STATE(2104), - [aux_sym_declaration_list_repeat1] = STATE(219), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_macro_rules_BANG] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_default] = ACTIONS(747), - [anon_sym_enum] = ACTIONS(1119), - [anon_sym_fn] = ACTIONS(1121), - [anon_sym_impl] = ACTIONS(1123), - [anon_sym_let] = ACTIONS(1125), - [anon_sym_mod] = ACTIONS(1127), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_trait] = ACTIONS(1133), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1137), - [anon_sym_unsafe] = ACTIONS(1139), - [anon_sym_use] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1145), + [206] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1828), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1833), + [sym_array_type] = STATE(1828), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1828), + [sym_tuple_type] = STATE(1828), + [sym_unit_type] = STATE(1828), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1828), + [sym_type_binding] = STATE(2148), + [sym_reference_type] = STATE(1828), + [sym_pointer_type] = STATE(1828), + [sym_empty_type] = STATE(1828), + [sym_abstract_type] = STATE(1828), + [sym_dynamic_type] = STATE(1828), + [sym_macro_invocation] = STATE(1828), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [sym_block] = STATE(2148), + [sym__literal] = STATE(2148), + [sym_string_literal] = STATE(2148), + [sym_boolean_literal] = STATE(2148), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1103), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_integer_literal] = ACTIONS(1093), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1149), - [sym_super] = ACTIONS(1149), - [sym_crate] = ACTIONS(1151), - [sym_metavariable] = ACTIONS(1153), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), + [sym_raw_string_literal] = ACTIONS(1093), + [sym_float_literal] = ACTIONS(1093), [sym_block_comment] = ACTIONS(3), }, - [210] = { - [sym_empty_statement] = STATE(218), - [sym_macro_definition] = STATE(218), - [sym_attribute_item] = STATE(218), - [sym_inner_attribute_item] = STATE(218), - [sym_mod_item] = STATE(218), - [sym_foreign_mod_item] = STATE(218), - [sym_struct_item] = STATE(218), - [sym_union_item] = STATE(218), - [sym_enum_item] = STATE(218), - [sym_extern_crate_declaration] = STATE(218), - [sym_const_item] = STATE(218), - [sym_static_item] = STATE(218), - [sym_type_item] = STATE(218), - [sym_function_item] = STATE(218), - [sym_function_signature_item] = STATE(218), - [sym_function_modifiers] = STATE(2394), - [sym_impl_item] = STATE(218), - [sym_trait_item] = STATE(218), - [sym_associated_type] = STATE(218), - [sym_let_declaration] = STATE(218), - [sym_use_declaration] = STATE(218), - [sym_extern_modifier] = STATE(1400), - [sym_visibility_modifier] = STATE(1247), - [sym_bracketed_type] = STATE(2221), - [sym_generic_type_with_turbofish] = STATE(2232), - [sym_macro_invocation] = STATE(218), - [sym_scoped_identifier] = STATE(2104), - [aux_sym_declaration_list_repeat1] = STATE(218), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_macro_rules_BANG] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_default] = ACTIONS(747), - [anon_sym_enum] = ACTIONS(1119), - [anon_sym_fn] = ACTIONS(1121), - [anon_sym_impl] = ACTIONS(1123), - [anon_sym_let] = ACTIONS(1125), - [anon_sym_mod] = ACTIONS(1127), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_trait] = ACTIONS(1133), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1137), - [anon_sym_unsafe] = ACTIONS(1139), - [anon_sym_use] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1145), + [207] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1828), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1833), + [sym_array_type] = STATE(1828), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1828), + [sym_tuple_type] = STATE(1828), + [sym_unit_type] = STATE(1828), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1828), + [sym_type_binding] = STATE(2148), + [sym_reference_type] = STATE(1828), + [sym_pointer_type] = STATE(1828), + [sym_empty_type] = STATE(1828), + [sym_abstract_type] = STATE(1828), + [sym_dynamic_type] = STATE(1828), + [sym_macro_invocation] = STATE(1828), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [sym_block] = STATE(2148), + [sym__literal] = STATE(2148), + [sym_string_literal] = STATE(2148), + [sym_boolean_literal] = STATE(2148), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1147), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_integer_literal] = ACTIONS(1093), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1149), - [sym_super] = ACTIONS(1149), - [sym_crate] = ACTIONS(1151), - [sym_metavariable] = ACTIONS(1153), - [sym_block_comment] = ACTIONS(3), - }, - [211] = { - [sym__token_pattern] = STATE(211), - [sym_token_tree_pattern] = STATE(211), - [sym_token_binding_pattern] = STATE(211), - [sym_token_repetition_pattern] = STATE(211), - [sym__literal] = STATE(211), - [sym_string_literal] = STATE(211), - [sym_boolean_literal] = STATE(211), - [aux_sym_token_tree_pattern_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1163), - [anon_sym_DOLLAR] = ACTIONS(1171), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [aux_sym__non_special_token_token1] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_as] = ACTIONS(1157), - [anon_sym_async] = ACTIONS(1157), - [anon_sym_await] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_fn] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_impl] = ACTIONS(1157), - [anon_sym_let] = ACTIONS(1157), - [anon_sym_loop] = ACTIONS(1157), - [anon_sym_match] = ACTIONS(1157), - [anon_sym_mod] = ACTIONS(1157), - [anon_sym_pub] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_trait] = ACTIONS(1157), - [anon_sym_type] = ACTIONS(1157), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_unsafe] = ACTIONS(1157), - [anon_sym_use] = ACTIONS(1157), - [anon_sym_where] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [sym_mutable_specifier] = ACTIONS(1157), - [sym_integer_literal] = ACTIONS(1177), - [aux_sym_string_literal_token1] = ACTIONS(1180), - [sym_char_literal] = ACTIONS(1177), - [anon_sym_true] = ACTIONS(1183), - [anon_sym_false] = ACTIONS(1183), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1157), - [sym_super] = ACTIONS(1157), - [sym_crate] = ACTIONS(1157), - [sym_metavariable] = ACTIONS(1188), - [sym_raw_string_literal] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1177), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), + [sym_raw_string_literal] = ACTIONS(1093), + [sym_float_literal] = ACTIONS(1093), [sym_block_comment] = ACTIONS(3), }, - [212] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1824), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1824), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1824), - [sym_tuple_type] = STATE(1824), - [sym_unit_type] = STATE(1824), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1824), - [sym_type_binding] = STATE(2052), - [sym_reference_type] = STATE(1824), - [sym_pointer_type] = STATE(1824), - [sym_empty_type] = STATE(1824), - [sym_abstract_type] = STATE(1824), - [sym_dynamic_type] = STATE(1824), - [sym_macro_invocation] = STATE(1824), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [sym_block] = STATE(2052), - [sym__literal] = STATE(2052), - [sym_string_literal] = STATE(2052), - [sym_boolean_literal] = STATE(2052), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_integer_literal] = ACTIONS(1089), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [208] = { + [sym_identifier] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(401), + [anon_sym_i8] = ACTIONS(401), + [anon_sym_u16] = ACTIONS(401), + [anon_sym_i16] = ACTIONS(401), + [anon_sym_u32] = ACTIONS(401), + [anon_sym_i32] = ACTIONS(401), + [anon_sym_u64] = ACTIONS(401), + [anon_sym_i64] = ACTIONS(401), + [anon_sym_u128] = ACTIONS(401), + [anon_sym_i128] = ACTIONS(401), + [anon_sym_isize] = ACTIONS(401), + [anon_sym_usize] = ACTIONS(401), + [anon_sym_f32] = ACTIONS(401), + [anon_sym_f64] = ACTIONS(401), + [anon_sym_bool] = ACTIONS(401), + [anon_sym_str] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_POUND] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_ref] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(399), + [anon_sym__] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_mutable_specifier] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_else] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_box] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(399), + [aux_sym_string_literal_token1] = ACTIONS(399), + [sym_char_literal] = ACTIONS(399), + [anon_sym_true] = ACTIONS(401), + [anon_sym_false] = ACTIONS(401), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), - [sym_raw_string_literal] = ACTIONS(1089), - [sym_float_literal] = ACTIONS(1089), + [sym_self] = ACTIONS(401), + [sym_super] = ACTIONS(401), + [sym_crate] = ACTIONS(401), + [sym_metavariable] = ACTIONS(399), + [sym_raw_string_literal] = ACTIONS(399), + [sym_float_literal] = ACTIONS(399), [sym_block_comment] = ACTIONS(3), }, - [213] = { + [209] = { [sym_identifier] = ACTIONS(413), [anon_sym_LPAREN] = ACTIONS(411), [anon_sym_RBRACE] = ACTIONS(411), @@ -30446,6 +30216,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(411), [anon_sym_else] = ACTIONS(413), [anon_sym_DOT] = ACTIONS(413), + [anon_sym_box] = ACTIONS(413), [sym_integer_literal] = ACTIONS(411), [aux_sym_string_literal_token1] = ACTIONS(411), [sym_char_literal] = ACTIONS(411), @@ -30460,630 +30231,1023 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(411), [sym_block_comment] = ACTIONS(3), }, - [214] = { - [sym_identifier] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_u8] = ACTIONS(401), - [anon_sym_i8] = ACTIONS(401), - [anon_sym_u16] = ACTIONS(401), - [anon_sym_i16] = ACTIONS(401), - [anon_sym_u32] = ACTIONS(401), - [anon_sym_i32] = ACTIONS(401), - [anon_sym_u64] = ACTIONS(401), - [anon_sym_i64] = ACTIONS(401), - [anon_sym_u128] = ACTIONS(401), - [anon_sym_i128] = ACTIONS(401), - [anon_sym_isize] = ACTIONS(401), - [anon_sym_usize] = ACTIONS(401), - [anon_sym_f32] = ACTIONS(401), - [anon_sym_f64] = ACTIONS(401), - [anon_sym_bool] = ACTIONS(401), - [anon_sym_str] = ACTIONS(401), - [anon_sym_char] = ACTIONS(401), - [anon_sym_as] = ACTIONS(401), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_ref] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(399), - [anon_sym__] = ACTIONS(401), - [anon_sym_AMP] = ACTIONS(401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(399), - [sym_mutable_specifier] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(401), - [anon_sym_GT_GT] = ACTIONS(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_PERCENT_EQ] = ACTIONS(399), - [anon_sym_AMP_EQ] = ACTIONS(399), - [anon_sym_PIPE_EQ] = ACTIONS(399), - [anon_sym_CARET_EQ] = ACTIONS(399), - [anon_sym_LT_LT_EQ] = ACTIONS(399), - [anon_sym_GT_GT_EQ] = ACTIONS(399), - [anon_sym_else] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(399), - [aux_sym_string_literal_token1] = ACTIONS(399), - [sym_char_literal] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(401), - [sym_super] = ACTIONS(401), - [sym_crate] = ACTIONS(401), - [sym_metavariable] = ACTIONS(399), - [sym_raw_string_literal] = ACTIONS(399), - [sym_float_literal] = ACTIONS(399), - [sym_block_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_QMARK] = ACTIONS(421), - [anon_sym_u8] = ACTIONS(423), - [anon_sym_i8] = ACTIONS(423), - [anon_sym_u16] = ACTIONS(423), - [anon_sym_i16] = ACTIONS(423), - [anon_sym_u32] = ACTIONS(423), - [anon_sym_i32] = ACTIONS(423), - [anon_sym_u64] = ACTIONS(423), - [anon_sym_i64] = ACTIONS(423), - [anon_sym_u128] = ACTIONS(423), - [anon_sym_i128] = ACTIONS(423), - [anon_sym_isize] = ACTIONS(423), - [anon_sym_usize] = ACTIONS(423), - [anon_sym_f32] = ACTIONS(423), - [anon_sym_f64] = ACTIONS(423), - [anon_sym_bool] = ACTIONS(423), - [anon_sym_str] = ACTIONS(423), - [anon_sym_char] = ACTIONS(423), - [anon_sym_as] = ACTIONS(423), - [anon_sym_POUND] = ACTIONS(421), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_COMMA] = ACTIONS(421), - [anon_sym_ref] = ACTIONS(423), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_COLON_COLON] = ACTIONS(421), - [anon_sym__] = ACTIONS(423), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(421), - [sym_mutable_specifier] = ACTIONS(423), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(421), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_AMP_AMP] = ACTIONS(421), - [anon_sym_PIPE_PIPE] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT_EQ] = ACTIONS(421), - [anon_sym_GT_EQ] = ACTIONS(421), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_PERCENT] = ACTIONS(423), - [anon_sym_PLUS_EQ] = ACTIONS(421), - [anon_sym_DASH_EQ] = ACTIONS(421), - [anon_sym_STAR_EQ] = ACTIONS(421), - [anon_sym_SLASH_EQ] = ACTIONS(421), - [anon_sym_PERCENT_EQ] = ACTIONS(421), - [anon_sym_AMP_EQ] = ACTIONS(421), - [anon_sym_PIPE_EQ] = ACTIONS(421), - [anon_sym_CARET_EQ] = ACTIONS(421), - [anon_sym_LT_LT_EQ] = ACTIONS(421), - [anon_sym_GT_GT_EQ] = ACTIONS(421), - [anon_sym_else] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [sym_integer_literal] = ACTIONS(421), - [aux_sym_string_literal_token1] = ACTIONS(421), - [sym_char_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), + [210] = { + [sym_identifier] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(415), + [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_as] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_EQ] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_ref] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym__] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(415), + [sym_mutable_specifier] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ] = ACTIONS(415), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PERCENT] = ACTIONS(417), + [anon_sym_PLUS_EQ] = ACTIONS(415), + [anon_sym_DASH_EQ] = ACTIONS(415), + [anon_sym_STAR_EQ] = ACTIONS(415), + [anon_sym_SLASH_EQ] = ACTIONS(415), + [anon_sym_PERCENT_EQ] = ACTIONS(415), + [anon_sym_AMP_EQ] = ACTIONS(415), + [anon_sym_PIPE_EQ] = ACTIONS(415), + [anon_sym_CARET_EQ] = ACTIONS(415), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_GT_GT_EQ] = ACTIONS(415), + [anon_sym_else] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(417), + [anon_sym_box] = ACTIONS(417), + [sym_integer_literal] = ACTIONS(415), + [aux_sym_string_literal_token1] = ACTIONS(415), + [sym_char_literal] = ACTIONS(415), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(423), - [sym_super] = ACTIONS(423), - [sym_crate] = ACTIONS(423), - [sym_metavariable] = ACTIONS(421), - [sym_raw_string_literal] = ACTIONS(421), - [sym_float_literal] = ACTIONS(421), + [sym_self] = ACTIONS(417), + [sym_super] = ACTIONS(417), + [sym_crate] = ACTIONS(417), + [sym_metavariable] = ACTIONS(415), + [sym_raw_string_literal] = ACTIONS(415), + [sym_float_literal] = ACTIONS(415), [sym_block_comment] = ACTIONS(3), }, - [216] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1697), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1696), - [sym_array_type] = STATE(1697), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1697), - [sym_tuple_type] = STATE(1697), - [sym_unit_type] = STATE(1697), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1697), - [sym_type_binding] = STATE(1800), - [sym_reference_type] = STATE(1697), - [sym_pointer_type] = STATE(1697), - [sym_empty_type] = STATE(1697), - [sym_abstract_type] = STATE(1697), - [sym_dynamic_type] = STATE(1697), - [sym_macro_invocation] = STATE(1697), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [sym_block] = STATE(1800), - [sym__literal] = STATE(1800), - [sym_string_literal] = STATE(1800), - [sym_boolean_literal] = STATE(1800), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [211] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1828), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1833), + [sym_array_type] = STATE(1828), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1828), + [sym_tuple_type] = STATE(1828), + [sym_unit_type] = STATE(1828), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1828), + [sym_type_binding] = STATE(2148), + [sym_reference_type] = STATE(1828), + [sym_pointer_type] = STATE(1828), + [sym_empty_type] = STATE(1828), + [sym_abstract_type] = STATE(1828), + [sym_dynamic_type] = STATE(1828), + [sym_macro_invocation] = STATE(1828), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [sym_block] = STATE(2148), + [sym__literal] = STATE(2148), + [sym_string_literal] = STATE(2148), + [sym_boolean_literal] = STATE(2148), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_integer_literal] = ACTIONS(1191), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(1191), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1107), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_integer_literal] = ACTIONS(1093), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), - [sym_raw_string_literal] = ACTIONS(1191), - [sym_float_literal] = ACTIONS(1191), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), + [sym_raw_string_literal] = ACTIONS(1093), + [sym_float_literal] = ACTIONS(1093), [sym_block_comment] = ACTIONS(3), }, - [217] = { - [sym_empty_statement] = STATE(217), - [sym_macro_definition] = STATE(217), - [sym_attribute_item] = STATE(217), - [sym_inner_attribute_item] = STATE(217), - [sym_mod_item] = STATE(217), - [sym_foreign_mod_item] = STATE(217), - [sym_struct_item] = STATE(217), - [sym_union_item] = STATE(217), - [sym_enum_item] = STATE(217), - [sym_extern_crate_declaration] = STATE(217), - [sym_const_item] = STATE(217), - [sym_static_item] = STATE(217), - [sym_type_item] = STATE(217), - [sym_function_item] = STATE(217), - [sym_function_signature_item] = STATE(217), - [sym_function_modifiers] = STATE(2394), - [sym_impl_item] = STATE(217), - [sym_trait_item] = STATE(217), - [sym_associated_type] = STATE(217), - [sym_let_declaration] = STATE(217), - [sym_use_declaration] = STATE(217), - [sym_extern_modifier] = STATE(1400), - [sym_visibility_modifier] = STATE(1247), - [sym_bracketed_type] = STATE(2221), - [sym_generic_type_with_turbofish] = STATE(2232), - [sym_macro_invocation] = STATE(217), - [sym_scoped_identifier] = STATE(2104), - [aux_sym_declaration_list_repeat1] = STATE(217), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_macro_rules_BANG] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_u8] = ACTIONS(1204), - [anon_sym_i8] = ACTIONS(1204), - [anon_sym_u16] = ACTIONS(1204), - [anon_sym_i16] = ACTIONS(1204), - [anon_sym_u32] = ACTIONS(1204), - [anon_sym_i32] = ACTIONS(1204), - [anon_sym_u64] = ACTIONS(1204), - [anon_sym_i64] = ACTIONS(1204), - [anon_sym_u128] = ACTIONS(1204), - [anon_sym_i128] = ACTIONS(1204), - [anon_sym_isize] = ACTIONS(1204), - [anon_sym_usize] = ACTIONS(1204), - [anon_sym_f32] = ACTIONS(1204), - [anon_sym_f64] = ACTIONS(1204), - [anon_sym_bool] = ACTIONS(1204), - [anon_sym_str] = ACTIONS(1204), - [anon_sym_char] = ACTIONS(1204), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_fn] = ACTIONS(1216), - [anon_sym_impl] = ACTIONS(1219), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1225), - [anon_sym_pub] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1237), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1249), - [anon_sym_POUND] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_COLON_COLON] = ACTIONS(1261), + [212] = { + [sym_identifier] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_u8] = ACTIONS(507), + [anon_sym_i8] = ACTIONS(507), + [anon_sym_u16] = ACTIONS(507), + [anon_sym_i16] = ACTIONS(507), + [anon_sym_u32] = ACTIONS(507), + [anon_sym_i32] = ACTIONS(507), + [anon_sym_u64] = ACTIONS(507), + [anon_sym_i64] = ACTIONS(507), + [anon_sym_u128] = ACTIONS(507), + [anon_sym_i128] = ACTIONS(507), + [anon_sym_isize] = ACTIONS(507), + [anon_sym_usize] = ACTIONS(507), + [anon_sym_f32] = ACTIONS(507), + [anon_sym_f64] = ACTIONS(507), + [anon_sym_bool] = ACTIONS(507), + [anon_sym_str] = ACTIONS(507), + [anon_sym_char] = ACTIONS(507), + [anon_sym_as] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_ref] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_COLON_COLON] = ACTIONS(505), + [anon_sym__] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(505), + [sym_mutable_specifier] = ACTIONS(507), + [anon_sym_DOT_DOT] = ACTIONS(507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(507), + [anon_sym_EQ_EQ] = ACTIONS(505), + [anon_sym_BANG_EQ] = ACTIONS(505), + [anon_sym_LT_EQ] = ACTIONS(505), + [anon_sym_GT_EQ] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_PLUS_EQ] = ACTIONS(505), + [anon_sym_DASH_EQ] = ACTIONS(505), + [anon_sym_STAR_EQ] = ACTIONS(505), + [anon_sym_SLASH_EQ] = ACTIONS(505), + [anon_sym_PERCENT_EQ] = ACTIONS(505), + [anon_sym_AMP_EQ] = ACTIONS(505), + [anon_sym_PIPE_EQ] = ACTIONS(505), + [anon_sym_CARET_EQ] = ACTIONS(505), + [anon_sym_LT_LT_EQ] = ACTIONS(505), + [anon_sym_GT_GT_EQ] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_box] = ACTIONS(507), + [sym_integer_literal] = ACTIONS(505), + [aux_sym_string_literal_token1] = ACTIONS(505), + [sym_char_literal] = ACTIONS(505), + [anon_sym_true] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1264), - [sym_super] = ACTIONS(1264), - [sym_crate] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1270), + [sym_self] = ACTIONS(507), + [sym_super] = ACTIONS(507), + [sym_crate] = ACTIONS(507), + [sym_metavariable] = ACTIONS(505), + [sym_raw_string_literal] = ACTIONS(505), + [sym_float_literal] = ACTIONS(505), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym_empty_statement] = STATE(217), - [sym_macro_definition] = STATE(217), - [sym_attribute_item] = STATE(217), - [sym_inner_attribute_item] = STATE(217), - [sym_mod_item] = STATE(217), - [sym_foreign_mod_item] = STATE(217), - [sym_struct_item] = STATE(217), - [sym_union_item] = STATE(217), - [sym_enum_item] = STATE(217), - [sym_extern_crate_declaration] = STATE(217), - [sym_const_item] = STATE(217), - [sym_static_item] = STATE(217), - [sym_type_item] = STATE(217), - [sym_function_item] = STATE(217), - [sym_function_signature_item] = STATE(217), - [sym_function_modifiers] = STATE(2394), - [sym_impl_item] = STATE(217), - [sym_trait_item] = STATE(217), - [sym_associated_type] = STATE(217), - [sym_let_declaration] = STATE(217), - [sym_use_declaration] = STATE(217), - [sym_extern_modifier] = STATE(1400), - [sym_visibility_modifier] = STATE(1247), - [sym_bracketed_type] = STATE(2221), - [sym_generic_type_with_turbofish] = STATE(2232), - [sym_macro_invocation] = STATE(217), - [sym_scoped_identifier] = STATE(2104), - [aux_sym_declaration_list_repeat1] = STATE(217), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_macro_rules_BANG] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_default] = ACTIONS(747), - [anon_sym_enum] = ACTIONS(1119), - [anon_sym_fn] = ACTIONS(1121), - [anon_sym_impl] = ACTIONS(1123), - [anon_sym_let] = ACTIONS(1125), - [anon_sym_mod] = ACTIONS(1127), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_trait] = ACTIONS(1133), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1137), - [anon_sym_unsafe] = ACTIONS(1139), - [anon_sym_use] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1147), + [213] = { + [sym_identifier] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(473), + [anon_sym_i8] = ACTIONS(473), + [anon_sym_u16] = ACTIONS(473), + [anon_sym_i16] = ACTIONS(473), + [anon_sym_u32] = ACTIONS(473), + [anon_sym_i32] = ACTIONS(473), + [anon_sym_u64] = ACTIONS(473), + [anon_sym_i64] = ACTIONS(473), + [anon_sym_u128] = ACTIONS(473), + [anon_sym_i128] = ACTIONS(473), + [anon_sym_isize] = ACTIONS(473), + [anon_sym_usize] = ACTIONS(473), + [anon_sym_f32] = ACTIONS(473), + [anon_sym_f64] = ACTIONS(473), + [anon_sym_bool] = ACTIONS(473), + [anon_sym_str] = ACTIONS(473), + [anon_sym_char] = ACTIONS(473), + [anon_sym_as] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(471), + [anon_sym_ref] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym__] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(471), + [sym_mutable_specifier] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(471), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_AMP_AMP] = ACTIONS(471), + [anon_sym_PIPE_PIPE] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_EQ_EQ] = ACTIONS(471), + [anon_sym_BANG_EQ] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(471), + [anon_sym_DASH_EQ] = ACTIONS(471), + [anon_sym_STAR_EQ] = ACTIONS(471), + [anon_sym_SLASH_EQ] = ACTIONS(471), + [anon_sym_PERCENT_EQ] = ACTIONS(471), + [anon_sym_AMP_EQ] = ACTIONS(471), + [anon_sym_PIPE_EQ] = ACTIONS(471), + [anon_sym_CARET_EQ] = ACTIONS(471), + [anon_sym_LT_LT_EQ] = ACTIONS(471), + [anon_sym_GT_GT_EQ] = ACTIONS(471), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_box] = ACTIONS(473), + [sym_integer_literal] = ACTIONS(471), + [aux_sym_string_literal_token1] = ACTIONS(471), + [sym_char_literal] = ACTIONS(471), + [anon_sym_true] = ACTIONS(473), + [anon_sym_false] = ACTIONS(473), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1149), - [sym_super] = ACTIONS(1149), - [sym_crate] = ACTIONS(1151), - [sym_metavariable] = ACTIONS(1153), + [sym_self] = ACTIONS(473), + [sym_super] = ACTIONS(473), + [sym_crate] = ACTIONS(473), + [sym_metavariable] = ACTIONS(471), + [sym_raw_string_literal] = ACTIONS(471), + [sym_float_literal] = ACTIONS(471), [sym_block_comment] = ACTIONS(3), }, - [219] = { - [sym_empty_statement] = STATE(217), - [sym_macro_definition] = STATE(217), - [sym_attribute_item] = STATE(217), - [sym_inner_attribute_item] = STATE(217), - [sym_mod_item] = STATE(217), - [sym_foreign_mod_item] = STATE(217), - [sym_struct_item] = STATE(217), - [sym_union_item] = STATE(217), - [sym_enum_item] = STATE(217), - [sym_extern_crate_declaration] = STATE(217), - [sym_const_item] = STATE(217), - [sym_static_item] = STATE(217), - [sym_type_item] = STATE(217), - [sym_function_item] = STATE(217), - [sym_function_signature_item] = STATE(217), - [sym_function_modifiers] = STATE(2394), - [sym_impl_item] = STATE(217), - [sym_trait_item] = STATE(217), - [sym_associated_type] = STATE(217), - [sym_let_declaration] = STATE(217), - [sym_use_declaration] = STATE(217), - [sym_extern_modifier] = STATE(1400), - [sym_visibility_modifier] = STATE(1247), - [sym_bracketed_type] = STATE(2221), - [sym_generic_type_with_turbofish] = STATE(2232), - [sym_macro_invocation] = STATE(217), - [sym_scoped_identifier] = STATE(2104), - [aux_sym_declaration_list_repeat1] = STATE(217), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_macro_rules_BANG] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u128] = ACTIONS(1115), - [anon_sym_i128] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_str] = ACTIONS(1115), - [anon_sym_char] = ACTIONS(1115), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_default] = ACTIONS(747), - [anon_sym_enum] = ACTIONS(1119), - [anon_sym_fn] = ACTIONS(1121), - [anon_sym_impl] = ACTIONS(1123), - [anon_sym_let] = ACTIONS(1125), - [anon_sym_mod] = ACTIONS(1127), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_trait] = ACTIONS(1133), - [anon_sym_type] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1137), - [anon_sym_unsafe] = ACTIONS(1139), - [anon_sym_use] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1147), + [214] = { + [sym_identifier] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_u8] = ACTIONS(491), + [anon_sym_i8] = ACTIONS(491), + [anon_sym_u16] = ACTIONS(491), + [anon_sym_i16] = ACTIONS(491), + [anon_sym_u32] = ACTIONS(491), + [anon_sym_i32] = ACTIONS(491), + [anon_sym_u64] = ACTIONS(491), + [anon_sym_i64] = ACTIONS(491), + [anon_sym_u128] = ACTIONS(491), + [anon_sym_i128] = ACTIONS(491), + [anon_sym_isize] = ACTIONS(491), + [anon_sym_usize] = ACTIONS(491), + [anon_sym_f32] = ACTIONS(491), + [anon_sym_f64] = ACTIONS(491), + [anon_sym_bool] = ACTIONS(491), + [anon_sym_str] = ACTIONS(491), + [anon_sym_char] = ACTIONS(491), + [anon_sym_as] = ACTIONS(491), + [anon_sym_POUND] = ACTIONS(489), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_ref] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_COLON_COLON] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(489), + [sym_mutable_specifier] = ACTIONS(491), + [anon_sym_DOT_DOT] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_CARET] = ACTIONS(491), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(491), + [anon_sym_GT_GT] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(491), + [anon_sym_PERCENT] = ACTIONS(491), + [anon_sym_PLUS_EQ] = ACTIONS(489), + [anon_sym_DASH_EQ] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(489), + [anon_sym_SLASH_EQ] = ACTIONS(489), + [anon_sym_PERCENT_EQ] = ACTIONS(489), + [anon_sym_AMP_EQ] = ACTIONS(489), + [anon_sym_PIPE_EQ] = ACTIONS(489), + [anon_sym_CARET_EQ] = ACTIONS(489), + [anon_sym_LT_LT_EQ] = ACTIONS(489), + [anon_sym_GT_GT_EQ] = ACTIONS(489), + [anon_sym_DOT] = ACTIONS(491), + [anon_sym_box] = ACTIONS(491), + [sym_integer_literal] = ACTIONS(489), + [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_char_literal] = ACTIONS(489), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(489), + [sym_raw_string_literal] = ACTIONS(489), + [sym_float_literal] = ACTIONS(489), + [sym_block_comment] = ACTIONS(3), + }, + [215] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1700), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1698), + [sym_array_type] = STATE(1700), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1700), + [sym_tuple_type] = STATE(1700), + [sym_unit_type] = STATE(1700), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1700), + [sym_type_binding] = STATE(1959), + [sym_reference_type] = STATE(1700), + [sym_pointer_type] = STATE(1700), + [sym_empty_type] = STATE(1700), + [sym_abstract_type] = STATE(1700), + [sym_dynamic_type] = STATE(1700), + [sym_macro_invocation] = STATE(1700), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [sym_block] = STATE(1959), + [sym__literal] = STATE(1959), + [sym_string_literal] = STATE(1959), + [sym_boolean_literal] = STATE(1959), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_integer_literal] = ACTIONS(1109), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(1109), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), + [sym_raw_string_literal] = ACTIONS(1109), + [sym_float_literal] = ACTIONS(1109), + [sym_block_comment] = ACTIONS(3), + }, + [216] = { + [sym_identifier] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(447), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_u8] = ACTIONS(449), + [anon_sym_i8] = ACTIONS(449), + [anon_sym_u16] = ACTIONS(449), + [anon_sym_i16] = ACTIONS(449), + [anon_sym_u32] = ACTIONS(449), + [anon_sym_i32] = ACTIONS(449), + [anon_sym_u64] = ACTIONS(449), + [anon_sym_i64] = ACTIONS(449), + [anon_sym_u128] = ACTIONS(449), + [anon_sym_i128] = ACTIONS(449), + [anon_sym_isize] = ACTIONS(449), + [anon_sym_usize] = ACTIONS(449), + [anon_sym_f32] = ACTIONS(449), + [anon_sym_f64] = ACTIONS(449), + [anon_sym_bool] = ACTIONS(449), + [anon_sym_str] = ACTIONS(449), + [anon_sym_char] = ACTIONS(449), + [anon_sym_as] = ACTIONS(449), + [anon_sym_POUND] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_ref] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(447), + [anon_sym__] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(447), + [sym_mutable_specifier] = ACTIONS(449), + [anon_sym_DOT_DOT] = ACTIONS(449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(447), + [anon_sym_PIPE_PIPE] = ACTIONS(447), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(447), + [anon_sym_BANG_EQ] = ACTIONS(447), + [anon_sym_LT_EQ] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(447), + [anon_sym_LT_LT] = ACTIONS(449), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_PERCENT] = ACTIONS(449), + [anon_sym_PLUS_EQ] = ACTIONS(447), + [anon_sym_DASH_EQ] = ACTIONS(447), + [anon_sym_STAR_EQ] = ACTIONS(447), + [anon_sym_SLASH_EQ] = ACTIONS(447), + [anon_sym_PERCENT_EQ] = ACTIONS(447), + [anon_sym_AMP_EQ] = ACTIONS(447), + [anon_sym_PIPE_EQ] = ACTIONS(447), + [anon_sym_CARET_EQ] = ACTIONS(447), + [anon_sym_LT_LT_EQ] = ACTIONS(447), + [anon_sym_GT_GT_EQ] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_box] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(447), + [aux_sym_string_literal_token1] = ACTIONS(447), + [sym_char_literal] = ACTIONS(447), + [anon_sym_true] = ACTIONS(449), + [anon_sym_false] = ACTIONS(449), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(449), + [sym_super] = ACTIONS(449), + [sym_crate] = ACTIONS(449), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(447), + [sym_float_literal] = ACTIONS(447), + [sym_block_comment] = ACTIONS(3), + }, + [217] = { + [sym_identifier] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(435), + [anon_sym_u8] = ACTIONS(437), + [anon_sym_i8] = ACTIONS(437), + [anon_sym_u16] = ACTIONS(437), + [anon_sym_i16] = ACTIONS(437), + [anon_sym_u32] = ACTIONS(437), + [anon_sym_i32] = ACTIONS(437), + [anon_sym_u64] = ACTIONS(437), + [anon_sym_i64] = ACTIONS(437), + [anon_sym_u128] = ACTIONS(437), + [anon_sym_i128] = ACTIONS(437), + [anon_sym_isize] = ACTIONS(437), + [anon_sym_usize] = ACTIONS(437), + [anon_sym_f32] = ACTIONS(437), + [anon_sym_f64] = ACTIONS(437), + [anon_sym_bool] = ACTIONS(437), + [anon_sym_str] = ACTIONS(437), + [anon_sym_char] = ACTIONS(437), + [anon_sym_as] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(437), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_ref] = ACTIONS(437), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(435), + [anon_sym__] = ACTIONS(437), + [anon_sym_AMP] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(435), + [sym_mutable_specifier] = ACTIONS(437), + [anon_sym_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(437), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(435), + [anon_sym_LT_EQ] = ACTIONS(435), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_GT_GT] = ACTIONS(437), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(437), + [anon_sym_PLUS_EQ] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(435), + [anon_sym_STAR_EQ] = ACTIONS(435), + [anon_sym_SLASH_EQ] = ACTIONS(435), + [anon_sym_PERCENT_EQ] = ACTIONS(435), + [anon_sym_AMP_EQ] = ACTIONS(435), + [anon_sym_PIPE_EQ] = ACTIONS(435), + [anon_sym_CARET_EQ] = ACTIONS(435), + [anon_sym_LT_LT_EQ] = ACTIONS(435), + [anon_sym_GT_GT_EQ] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [anon_sym_box] = ACTIONS(437), + [sym_integer_literal] = ACTIONS(435), + [aux_sym_string_literal_token1] = ACTIONS(435), + [sym_char_literal] = ACTIONS(435), + [anon_sym_true] = ACTIONS(437), + [anon_sym_false] = ACTIONS(437), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(437), + [sym_crate] = ACTIONS(437), + [sym_metavariable] = ACTIONS(435), + [sym_raw_string_literal] = ACTIONS(435), + [sym_float_literal] = ACTIONS(435), + [sym_block_comment] = ACTIONS(3), + }, + [218] = { + [sym_identifier] = ACTIONS(537), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_LBRACK] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_u8] = ACTIONS(537), + [anon_sym_i8] = ACTIONS(537), + [anon_sym_u16] = ACTIONS(537), + [anon_sym_i16] = ACTIONS(537), + [anon_sym_u32] = ACTIONS(537), + [anon_sym_i32] = ACTIONS(537), + [anon_sym_u64] = ACTIONS(537), + [anon_sym_i64] = ACTIONS(537), + [anon_sym_u128] = ACTIONS(537), + [anon_sym_i128] = ACTIONS(537), + [anon_sym_isize] = ACTIONS(537), + [anon_sym_usize] = ACTIONS(537), + [anon_sym_f32] = ACTIONS(537), + [anon_sym_f64] = ACTIONS(537), + [anon_sym_bool] = ACTIONS(537), + [anon_sym_str] = ACTIONS(537), + [anon_sym_char] = ACTIONS(537), + [anon_sym_as] = ACTIONS(537), + [anon_sym_POUND] = ACTIONS(535), + [anon_sym_EQ] = ACTIONS(537), + [anon_sym_COMMA] = ACTIONS(535), + [anon_sym_ref] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(537), + [anon_sym_COLON_COLON] = ACTIONS(535), + [anon_sym__] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(535), + [sym_mutable_specifier] = ACTIONS(537), + [anon_sym_DOT_DOT] = ACTIONS(537), + [anon_sym_DOT_DOT_EQ] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ] = ACTIONS(535), + [anon_sym_LT_EQ] = ACTIONS(535), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(537), + [anon_sym_GT_GT] = ACTIONS(537), + [anon_sym_SLASH] = ACTIONS(537), + [anon_sym_PERCENT] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(535), + [anon_sym_DASH_EQ] = ACTIONS(535), + [anon_sym_STAR_EQ] = ACTIONS(535), + [anon_sym_SLASH_EQ] = ACTIONS(535), + [anon_sym_PERCENT_EQ] = ACTIONS(535), + [anon_sym_AMP_EQ] = ACTIONS(535), + [anon_sym_PIPE_EQ] = ACTIONS(535), + [anon_sym_CARET_EQ] = ACTIONS(535), + [anon_sym_LT_LT_EQ] = ACTIONS(535), + [anon_sym_GT_GT_EQ] = ACTIONS(535), + [anon_sym_DOT] = ACTIONS(537), + [anon_sym_box] = ACTIONS(537), + [sym_integer_literal] = ACTIONS(535), + [aux_sym_string_literal_token1] = ACTIONS(535), + [sym_char_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(537), + [sym_super] = ACTIONS(537), + [sym_crate] = ACTIONS(537), + [sym_metavariable] = ACTIONS(535), + [sym_raw_string_literal] = ACTIONS(535), + [sym_float_literal] = ACTIONS(535), + [sym_block_comment] = ACTIONS(3), + }, + [219] = { + [sym_identifier] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(441), + [anon_sym_QMARK] = ACTIONS(439), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_isize] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_f32] = ACTIONS(441), + [anon_sym_f64] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_str] = ACTIONS(441), + [anon_sym_char] = ACTIONS(441), + [anon_sym_as] = ACTIONS(441), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(439), + [anon_sym_ref] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_GT] = ACTIONS(441), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym__] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(439), + [sym_mutable_specifier] = ACTIONS(441), + [anon_sym_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), + [anon_sym_STAR_EQ] = ACTIONS(439), + [anon_sym_SLASH_EQ] = ACTIONS(439), + [anon_sym_PERCENT_EQ] = ACTIONS(439), + [anon_sym_AMP_EQ] = ACTIONS(439), + [anon_sym_PIPE_EQ] = ACTIONS(439), + [anon_sym_CARET_EQ] = ACTIONS(439), + [anon_sym_LT_LT_EQ] = ACTIONS(439), + [anon_sym_GT_GT_EQ] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_box] = ACTIONS(441), + [sym_integer_literal] = ACTIONS(439), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(439), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1149), - [sym_super] = ACTIONS(1149), - [sym_crate] = ACTIONS(1151), - [sym_metavariable] = ACTIONS(1153), + [sym_self] = ACTIONS(441), + [sym_super] = ACTIONS(441), + [sym_crate] = ACTIONS(441), + [sym_metavariable] = ACTIONS(439), + [sym_raw_string_literal] = ACTIONS(439), + [sym_float_literal] = ACTIONS(439), [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1688), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1703), - [sym_array_type] = STATE(1688), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1688), - [sym_tuple_type] = STATE(1688), - [sym_unit_type] = STATE(1688), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1688), - [sym_type_binding] = STATE(1952), - [sym_reference_type] = STATE(1688), - [sym_pointer_type] = STATE(1688), - [sym_empty_type] = STATE(1688), - [sym_abstract_type] = STATE(1688), - [sym_dynamic_type] = STATE(1688), - [sym_macro_invocation] = STATE(1688), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [sym_block] = STATE(1952), - [sym__literal] = STATE(1952), - [sym_string_literal] = STATE(1952), - [sym_boolean_literal] = STATE(1952), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_empty_statement] = STATE(237), + [sym_macro_definition] = STATE(237), + [sym_attribute_item] = STATE(237), + [sym_inner_attribute_item] = STATE(237), + [sym_mod_item] = STATE(237), + [sym_foreign_mod_item] = STATE(237), + [sym_struct_item] = STATE(237), + [sym_union_item] = STATE(237), + [sym_enum_item] = STATE(237), + [sym_extern_crate_declaration] = STATE(237), + [sym_const_item] = STATE(237), + [sym_static_item] = STATE(237), + [sym_type_item] = STATE(237), + [sym_function_item] = STATE(237), + [sym_function_signature_item] = STATE(237), + [sym_function_modifiers] = STATE(2397), + [sym_impl_item] = STATE(237), + [sym_trait_item] = STATE(237), + [sym_associated_type] = STATE(237), + [sym_let_declaration] = STATE(237), + [sym_use_declaration] = STATE(237), + [sym_extern_modifier] = STATE(1397), + [sym_visibility_modifier] = STATE(1251), + [sym_bracketed_type] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(2311), + [sym_macro_invocation] = STATE(237), + [sym_scoped_identifier] = STATE(2157), + [aux_sym_declaration_list_repeat1] = STATE(237), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_macro_rules_BANG] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_u8] = ACTIONS(1119), + [anon_sym_i8] = ACTIONS(1119), + [anon_sym_u16] = ACTIONS(1119), + [anon_sym_i16] = ACTIONS(1119), + [anon_sym_u32] = ACTIONS(1119), + [anon_sym_i32] = ACTIONS(1119), + [anon_sym_u64] = ACTIONS(1119), + [anon_sym_i64] = ACTIONS(1119), + [anon_sym_u128] = ACTIONS(1119), + [anon_sym_i128] = ACTIONS(1119), + [anon_sym_isize] = ACTIONS(1119), + [anon_sym_usize] = ACTIONS(1119), + [anon_sym_f32] = ACTIONS(1119), + [anon_sym_f64] = ACTIONS(1119), + [anon_sym_bool] = ACTIONS(1119), + [anon_sym_str] = ACTIONS(1119), + [anon_sym_char] = ACTIONS(1119), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_default] = ACTIONS(559), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_fn] = ACTIONS(1125), + [anon_sym_impl] = ACTIONS(1127), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1131), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_trait] = ACTIONS(1137), + [anon_sym_type] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1141), + [anon_sym_unsafe] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1149), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_integer_literal] = ACTIONS(1277), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [anon_sym_COLON_COLON] = ACTIONS(1151), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), - [sym_raw_string_literal] = ACTIONS(1277), - [sym_float_literal] = ACTIONS(1277), + [sym_self] = ACTIONS(1153), + [sym_super] = ACTIONS(1153), + [sym_crate] = ACTIONS(1155), + [sym_metavariable] = ACTIONS(1157), [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(513), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(513), - [anon_sym_STAR] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_u8] = ACTIONS(513), - [anon_sym_i8] = ACTIONS(513), - [anon_sym_u16] = ACTIONS(513), - [anon_sym_i16] = ACTIONS(513), - [anon_sym_u32] = ACTIONS(513), - [anon_sym_i32] = ACTIONS(513), - [anon_sym_u64] = ACTIONS(513), - [anon_sym_i64] = ACTIONS(513), - [anon_sym_u128] = ACTIONS(513), - [anon_sym_i128] = ACTIONS(513), - [anon_sym_isize] = ACTIONS(513), - [anon_sym_usize] = ACTIONS(513), - [anon_sym_f32] = ACTIONS(513), - [anon_sym_f64] = ACTIONS(513), - [anon_sym_bool] = ACTIONS(513), - [anon_sym_str] = ACTIONS(513), - [anon_sym_char] = ACTIONS(513), - [anon_sym_as] = ACTIONS(513), - [anon_sym_POUND] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(513), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_ref] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_GT] = ACTIONS(513), - [anon_sym_COLON_COLON] = ACTIONS(511), - [anon_sym__] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(511), - [sym_mutable_specifier] = ACTIONS(513), - [anon_sym_DOT_DOT] = ACTIONS(513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(511), - [anon_sym_PIPE_PIPE] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(513), - [anon_sym_CARET] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(511), - [anon_sym_BANG_EQ] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(511), - [anon_sym_GT_EQ] = ACTIONS(511), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_SLASH] = ACTIONS(513), - [anon_sym_PERCENT] = ACTIONS(513), - [anon_sym_PLUS_EQ] = ACTIONS(511), - [anon_sym_DASH_EQ] = ACTIONS(511), - [anon_sym_STAR_EQ] = ACTIONS(511), - [anon_sym_SLASH_EQ] = ACTIONS(511), - [anon_sym_PERCENT_EQ] = ACTIONS(511), - [anon_sym_AMP_EQ] = ACTIONS(511), - [anon_sym_PIPE_EQ] = ACTIONS(511), - [anon_sym_CARET_EQ] = ACTIONS(511), - [anon_sym_LT_LT_EQ] = ACTIONS(511), - [anon_sym_GT_GT_EQ] = ACTIONS(511), - [anon_sym_DOT] = ACTIONS(513), - [sym_integer_literal] = ACTIONS(511), - [aux_sym_string_literal_token1] = ACTIONS(511), - [sym_char_literal] = ACTIONS(511), - [anon_sym_true] = ACTIONS(513), - [anon_sym_false] = ACTIONS(513), + [sym_identifier] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(467), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(467), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(467), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_as] = ACTIONS(469), + [anon_sym_POUND] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_COMMA] = ACTIONS(467), + [anon_sym_ref] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_COLON_COLON] = ACTIONS(467), + [anon_sym__] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(467), + [sym_mutable_specifier] = ACTIONS(469), + [anon_sym_DOT_DOT] = ACTIONS(469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_AMP_AMP] = ACTIONS(467), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_CARET] = ACTIONS(469), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(467), + [anon_sym_LT_EQ] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(469), + [anon_sym_PERCENT] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(467), + [anon_sym_DASH_EQ] = ACTIONS(467), + [anon_sym_STAR_EQ] = ACTIONS(467), + [anon_sym_SLASH_EQ] = ACTIONS(467), + [anon_sym_PERCENT_EQ] = ACTIONS(467), + [anon_sym_AMP_EQ] = ACTIONS(467), + [anon_sym_PIPE_EQ] = ACTIONS(467), + [anon_sym_CARET_EQ] = ACTIONS(467), + [anon_sym_LT_LT_EQ] = ACTIONS(467), + [anon_sym_GT_GT_EQ] = ACTIONS(467), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_box] = ACTIONS(469), + [sym_integer_literal] = ACTIONS(467), + [aux_sym_string_literal_token1] = ACTIONS(467), + [sym_char_literal] = ACTIONS(467), + [anon_sym_true] = ACTIONS(469), + [anon_sym_false] = ACTIONS(469), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_crate] = ACTIONS(513), - [sym_metavariable] = ACTIONS(511), - [sym_raw_string_literal] = ACTIONS(511), - [sym_float_literal] = ACTIONS(511), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(469), + [sym_crate] = ACTIONS(469), + [sym_metavariable] = ACTIONS(467), + [sym_raw_string_literal] = ACTIONS(467), + [sym_float_literal] = ACTIONS(467), [sym_block_comment] = ACTIONS(3), }, [222] = { + [sym_identifier] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(461), + [anon_sym_i8] = ACTIONS(461), + [anon_sym_u16] = ACTIONS(461), + [anon_sym_i16] = ACTIONS(461), + [anon_sym_u32] = ACTIONS(461), + [anon_sym_i32] = ACTIONS(461), + [anon_sym_u64] = ACTIONS(461), + [anon_sym_i64] = ACTIONS(461), + [anon_sym_u128] = ACTIONS(461), + [anon_sym_i128] = ACTIONS(461), + [anon_sym_isize] = ACTIONS(461), + [anon_sym_usize] = ACTIONS(461), + [anon_sym_f32] = ACTIONS(461), + [anon_sym_f64] = ACTIONS(461), + [anon_sym_bool] = ACTIONS(461), + [anon_sym_str] = ACTIONS(461), + [anon_sym_char] = ACTIONS(461), + [anon_sym_as] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(459), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(459), + [anon_sym_ref] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(459), + [anon_sym__] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(459), + [sym_mutable_specifier] = ACTIONS(461), + [anon_sym_DOT_DOT] = ACTIONS(461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(459), + [anon_sym_BANG_EQ] = ACTIONS(459), + [anon_sym_LT_EQ] = ACTIONS(459), + [anon_sym_GT_EQ] = ACTIONS(459), + [anon_sym_LT_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_PLUS_EQ] = ACTIONS(459), + [anon_sym_DASH_EQ] = ACTIONS(459), + [anon_sym_STAR_EQ] = ACTIONS(459), + [anon_sym_SLASH_EQ] = ACTIONS(459), + [anon_sym_PERCENT_EQ] = ACTIONS(459), + [anon_sym_AMP_EQ] = ACTIONS(459), + [anon_sym_PIPE_EQ] = ACTIONS(459), + [anon_sym_CARET_EQ] = ACTIONS(459), + [anon_sym_LT_LT_EQ] = ACTIONS(459), + [anon_sym_GT_GT_EQ] = ACTIONS(459), + [anon_sym_DOT] = ACTIONS(461), + [anon_sym_box] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(459), + [aux_sym_string_literal_token1] = ACTIONS(459), + [sym_char_literal] = ACTIONS(459), + [anon_sym_true] = ACTIONS(461), + [anon_sym_false] = ACTIONS(461), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(461), + [sym_super] = ACTIONS(461), + [sym_crate] = ACTIONS(461), + [sym_metavariable] = ACTIONS(459), + [sym_raw_string_literal] = ACTIONS(459), + [sym_float_literal] = ACTIONS(459), + [sym_block_comment] = ACTIONS(3), + }, + [223] = { [sym_identifier] = ACTIONS(453), [anon_sym_LPAREN] = ACTIONS(451), [anon_sym_RBRACE] = ACTIONS(451), @@ -31146,6 +31310,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(451), [anon_sym_GT_GT_EQ] = ACTIONS(451), [anon_sym_DOT] = ACTIONS(453), + [anon_sym_box] = ACTIONS(453), [sym_integer_literal] = ACTIONS(451), [aux_sym_string_literal_token1] = ACTIONS(451), [sym_char_literal] = ACTIONS(451), @@ -31160,315 +31325,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(523), - [anon_sym_u8] = ACTIONS(525), - [anon_sym_i8] = ACTIONS(525), - [anon_sym_u16] = ACTIONS(525), - [anon_sym_i16] = ACTIONS(525), - [anon_sym_u32] = ACTIONS(525), - [anon_sym_i32] = ACTIONS(525), - [anon_sym_u64] = ACTIONS(525), - [anon_sym_i64] = ACTIONS(525), - [anon_sym_u128] = ACTIONS(525), - [anon_sym_i128] = ACTIONS(525), - [anon_sym_isize] = ACTIONS(525), - [anon_sym_usize] = ACTIONS(525), - [anon_sym_f32] = ACTIONS(525), - [anon_sym_f64] = ACTIONS(525), - [anon_sym_bool] = ACTIONS(525), - [anon_sym_str] = ACTIONS(525), - [anon_sym_char] = ACTIONS(525), - [anon_sym_as] = ACTIONS(525), - [anon_sym_POUND] = ACTIONS(523), - [anon_sym_EQ] = ACTIONS(525), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_ref] = ACTIONS(525), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_GT] = ACTIONS(525), - [anon_sym_COLON_COLON] = ACTIONS(523), - [anon_sym__] = ACTIONS(525), - [anon_sym_AMP] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(523), - [sym_mutable_specifier] = ACTIONS(525), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(523), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_AMP_AMP] = ACTIONS(523), - [anon_sym_PIPE_PIPE] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(525), - [anon_sym_EQ_EQ] = ACTIONS(523), - [anon_sym_BANG_EQ] = ACTIONS(523), - [anon_sym_LT_EQ] = ACTIONS(523), - [anon_sym_GT_EQ] = ACTIONS(523), - [anon_sym_LT_LT] = ACTIONS(525), - [anon_sym_GT_GT] = ACTIONS(525), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_PLUS_EQ] = ACTIONS(523), - [anon_sym_DASH_EQ] = ACTIONS(523), - [anon_sym_STAR_EQ] = ACTIONS(523), - [anon_sym_SLASH_EQ] = ACTIONS(523), - [anon_sym_PERCENT_EQ] = ACTIONS(523), - [anon_sym_AMP_EQ] = ACTIONS(523), - [anon_sym_PIPE_EQ] = ACTIONS(523), - [anon_sym_CARET_EQ] = ACTIONS(523), - [anon_sym_LT_LT_EQ] = ACTIONS(523), - [anon_sym_GT_GT_EQ] = ACTIONS(523), - [anon_sym_DOT] = ACTIONS(525), - [sym_integer_literal] = ACTIONS(523), - [aux_sym_string_literal_token1] = ACTIONS(523), - [sym_char_literal] = ACTIONS(523), - [anon_sym_true] = ACTIONS(525), - [anon_sym_false] = ACTIONS(525), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(525), - [sym_super] = ACTIONS(525), - [sym_crate] = ACTIONS(525), - [sym_metavariable] = ACTIONS(523), - [sym_raw_string_literal] = ACTIONS(523), - [sym_float_literal] = ACTIONS(523), - [sym_block_comment] = ACTIONS(3), - }, [224] = { - [sym_identifier] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_STAR] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_u8] = ACTIONS(463), - [anon_sym_i8] = ACTIONS(463), - [anon_sym_u16] = ACTIONS(463), - [anon_sym_i16] = ACTIONS(463), - [anon_sym_u32] = ACTIONS(463), - [anon_sym_i32] = ACTIONS(463), - [anon_sym_u64] = ACTIONS(463), - [anon_sym_i64] = ACTIONS(463), - [anon_sym_u128] = ACTIONS(463), - [anon_sym_i128] = ACTIONS(463), - [anon_sym_isize] = ACTIONS(463), - [anon_sym_usize] = ACTIONS(463), - [anon_sym_f32] = ACTIONS(463), - [anon_sym_f64] = ACTIONS(463), - [anon_sym_bool] = ACTIONS(463), - [anon_sym_str] = ACTIONS(463), - [anon_sym_char] = ACTIONS(463), - [anon_sym_as] = ACTIONS(463), - [anon_sym_POUND] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_COMMA] = ACTIONS(461), - [anon_sym_ref] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_COLON_COLON] = ACTIONS(461), - [anon_sym__] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(461), - [sym_mutable_specifier] = ACTIONS(463), - [anon_sym_DOT_DOT] = ACTIONS(463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(463), - [anon_sym_PERCENT] = ACTIONS(463), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_STAR_EQ] = ACTIONS(461), - [anon_sym_SLASH_EQ] = ACTIONS(461), - [anon_sym_PERCENT_EQ] = ACTIONS(461), - [anon_sym_AMP_EQ] = ACTIONS(461), - [anon_sym_PIPE_EQ] = ACTIONS(461), - [anon_sym_CARET_EQ] = ACTIONS(461), - [anon_sym_LT_LT_EQ] = ACTIONS(461), - [anon_sym_GT_GT_EQ] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(463), - [sym_integer_literal] = ACTIONS(461), - [aux_sym_string_literal_token1] = ACTIONS(461), - [sym_char_literal] = ACTIONS(461), - [anon_sym_true] = ACTIONS(463), - [anon_sym_false] = ACTIONS(463), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(463), - [sym_super] = ACTIONS(463), - [sym_crate] = ACTIONS(463), - [sym_metavariable] = ACTIONS(461), - [sym_raw_string_literal] = ACTIONS(461), - [sym_float_literal] = ACTIONS(461), - [sym_block_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(483), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_u8] = ACTIONS(483), - [anon_sym_i8] = ACTIONS(483), - [anon_sym_u16] = ACTIONS(483), - [anon_sym_i16] = ACTIONS(483), - [anon_sym_u32] = ACTIONS(483), - [anon_sym_i32] = ACTIONS(483), - [anon_sym_u64] = ACTIONS(483), - [anon_sym_i64] = ACTIONS(483), - [anon_sym_u128] = ACTIONS(483), - [anon_sym_i128] = ACTIONS(483), - [anon_sym_isize] = ACTIONS(483), - [anon_sym_usize] = ACTIONS(483), - [anon_sym_f32] = ACTIONS(483), - [anon_sym_f64] = ACTIONS(483), - [anon_sym_bool] = ACTIONS(483), - [anon_sym_str] = ACTIONS(483), - [anon_sym_char] = ACTIONS(483), - [anon_sym_as] = ACTIONS(483), - [anon_sym_POUND] = ACTIONS(481), - [anon_sym_EQ] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_ref] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_COLON_COLON] = ACTIONS(481), - [anon_sym__] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(481), - [sym_mutable_specifier] = ACTIONS(483), - [anon_sym_DOT_DOT] = ACTIONS(483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(483), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PERCENT] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(481), - [anon_sym_DASH_EQ] = ACTIONS(481), - [anon_sym_STAR_EQ] = ACTIONS(481), - [anon_sym_SLASH_EQ] = ACTIONS(481), - [anon_sym_PERCENT_EQ] = ACTIONS(481), - [anon_sym_AMP_EQ] = ACTIONS(481), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_CARET_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(483), - [sym_integer_literal] = ACTIONS(481), - [aux_sym_string_literal_token1] = ACTIONS(481), - [sym_char_literal] = ACTIONS(481), - [anon_sym_true] = ACTIONS(483), - [anon_sym_false] = ACTIONS(483), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(483), - [sym_super] = ACTIONS(483), - [sym_crate] = ACTIONS(483), - [sym_metavariable] = ACTIONS(481), - [sym_raw_string_literal] = ACTIONS(481), - [sym_float_literal] = ACTIONS(481), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_STAR] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_u8] = ACTIONS(479), - [anon_sym_i8] = ACTIONS(479), - [anon_sym_u16] = ACTIONS(479), - [anon_sym_i16] = ACTIONS(479), - [anon_sym_u32] = ACTIONS(479), - [anon_sym_i32] = ACTIONS(479), - [anon_sym_u64] = ACTIONS(479), - [anon_sym_i64] = ACTIONS(479), - [anon_sym_u128] = ACTIONS(479), - [anon_sym_i128] = ACTIONS(479), - [anon_sym_isize] = ACTIONS(479), - [anon_sym_usize] = ACTIONS(479), - [anon_sym_f32] = ACTIONS(479), - [anon_sym_f64] = ACTIONS(479), - [anon_sym_bool] = ACTIONS(479), - [anon_sym_str] = ACTIONS(479), - [anon_sym_char] = ACTIONS(479), - [anon_sym_as] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_ref] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_COLON_COLON] = ACTIONS(477), - [anon_sym__] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(477), - [sym_mutable_specifier] = ACTIONS(479), - [anon_sym_DOT_DOT] = ACTIONS(479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(479), - [anon_sym_GT_GT] = ACTIONS(479), - [anon_sym_SLASH] = ACTIONS(479), - [anon_sym_PERCENT] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_DOT] = ACTIONS(479), - [sym_integer_literal] = ACTIONS(477), - [aux_sym_string_literal_token1] = ACTIONS(477), - [sym_char_literal] = ACTIONS(477), - [anon_sym_true] = ACTIONS(479), - [anon_sym_false] = ACTIONS(479), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(479), - [sym_super] = ACTIONS(479), - [sym_crate] = ACTIONS(479), - [sym_metavariable] = ACTIONS(477), - [sym_raw_string_literal] = ACTIONS(477), - [sym_float_literal] = ACTIONS(477), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { [sym_identifier] = ACTIONS(503), [anon_sym_LPAREN] = ACTIONS(501), [anon_sym_RBRACE] = ACTIONS(501), @@ -31531,6 +31388,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(501), [anon_sym_GT_GT_EQ] = ACTIONS(501), [anon_sym_DOT] = ACTIONS(503), + [anon_sym_box] = ACTIONS(503), [sym_integer_literal] = ACTIONS(501), [aux_sym_string_literal_token1] = ACTIONS(501), [sym_char_literal] = ACTIONS(501), @@ -31545,7 +31403,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(501), [sym_block_comment] = ACTIONS(3), }, - [228] = { + [225] = { [sym_identifier] = ACTIONS(529), [anon_sym_LPAREN] = ACTIONS(527), [anon_sym_RBRACE] = ACTIONS(527), @@ -31608,6 +31466,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(527), [anon_sym_GT_GT_EQ] = ACTIONS(527), [anon_sym_DOT] = ACTIONS(529), + [anon_sym_box] = ACTIONS(529), [sym_integer_literal] = ACTIONS(527), [aux_sym_string_literal_token1] = ACTIONS(527), [sym_char_literal] = ACTIONS(527), @@ -31622,84 +31481,163 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(527), [sym_block_comment] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(475), - [anon_sym_QMARK] = ACTIONS(473), - [anon_sym_u8] = ACTIONS(475), - [anon_sym_i8] = ACTIONS(475), - [anon_sym_u16] = ACTIONS(475), - [anon_sym_i16] = ACTIONS(475), - [anon_sym_u32] = ACTIONS(475), - [anon_sym_i32] = ACTIONS(475), - [anon_sym_u64] = ACTIONS(475), - [anon_sym_i64] = ACTIONS(475), - [anon_sym_u128] = ACTIONS(475), - [anon_sym_i128] = ACTIONS(475), - [anon_sym_isize] = ACTIONS(475), - [anon_sym_usize] = ACTIONS(475), - [anon_sym_f32] = ACTIONS(475), - [anon_sym_f64] = ACTIONS(475), - [anon_sym_bool] = ACTIONS(475), - [anon_sym_str] = ACTIONS(475), - [anon_sym_char] = ACTIONS(475), - [anon_sym_as] = ACTIONS(475), - [anon_sym_POUND] = ACTIONS(473), - [anon_sym_EQ] = ACTIONS(475), - [anon_sym_COMMA] = ACTIONS(473), - [anon_sym_ref] = ACTIONS(475), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym__] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(473), - [sym_mutable_specifier] = ACTIONS(475), - [anon_sym_DOT_DOT] = ACTIONS(475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(473), - [anon_sym_PIPE_PIPE] = ACTIONS(473), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_EQ_EQ] = ACTIONS(473), - [anon_sym_BANG_EQ] = ACTIONS(473), - [anon_sym_LT_EQ] = ACTIONS(473), - [anon_sym_GT_EQ] = ACTIONS(473), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_PERCENT] = ACTIONS(475), - [anon_sym_PLUS_EQ] = ACTIONS(473), - [anon_sym_DASH_EQ] = ACTIONS(473), - [anon_sym_STAR_EQ] = ACTIONS(473), - [anon_sym_SLASH_EQ] = ACTIONS(473), - [anon_sym_PERCENT_EQ] = ACTIONS(473), - [anon_sym_AMP_EQ] = ACTIONS(473), - [anon_sym_PIPE_EQ] = ACTIONS(473), - [anon_sym_CARET_EQ] = ACTIONS(473), - [anon_sym_LT_LT_EQ] = ACTIONS(473), - [anon_sym_GT_GT_EQ] = ACTIONS(473), - [anon_sym_DOT] = ACTIONS(475), - [sym_integer_literal] = ACTIONS(473), - [aux_sym_string_literal_token1] = ACTIONS(473), - [sym_char_literal] = ACTIONS(473), - [anon_sym_true] = ACTIONS(475), - [anon_sym_false] = ACTIONS(475), + [226] = { + [sym_identifier] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(515), + [anon_sym_QMARK] = ACTIONS(513), + [anon_sym_u8] = ACTIONS(1159), + [anon_sym_i8] = ACTIONS(1159), + [anon_sym_u16] = ACTIONS(1159), + [anon_sym_i16] = ACTIONS(1159), + [anon_sym_u32] = ACTIONS(1159), + [anon_sym_i32] = ACTIONS(1159), + [anon_sym_u64] = ACTIONS(1159), + [anon_sym_i64] = ACTIONS(1159), + [anon_sym_u128] = ACTIONS(1159), + [anon_sym_i128] = ACTIONS(1159), + [anon_sym_isize] = ACTIONS(1159), + [anon_sym_usize] = ACTIONS(1159), + [anon_sym_f32] = ACTIONS(1159), + [anon_sym_f64] = ACTIONS(1159), + [anon_sym_bool] = ACTIONS(1159), + [anon_sym_str] = ACTIONS(1159), + [anon_sym_char] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(1161), + [anon_sym_EQ] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(513), + [anon_sym_ref] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_COLON_COLON] = ACTIONS(1161), + [anon_sym__] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(513), + [sym_mutable_specifier] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT_EQ] = ACTIONS(513), + [anon_sym_GT_EQ] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(515), + [anon_sym_PLUS_EQ] = ACTIONS(513), + [anon_sym_DASH_EQ] = ACTIONS(513), + [anon_sym_STAR_EQ] = ACTIONS(513), + [anon_sym_SLASH_EQ] = ACTIONS(513), + [anon_sym_PERCENT_EQ] = ACTIONS(513), + [anon_sym_AMP_EQ] = ACTIONS(513), + [anon_sym_PIPE_EQ] = ACTIONS(513), + [anon_sym_CARET_EQ] = ACTIONS(513), + [anon_sym_LT_LT_EQ] = ACTIONS(513), + [anon_sym_GT_GT_EQ] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_box] = ACTIONS(1159), + [sym_integer_literal] = ACTIONS(1161), + [aux_sym_string_literal_token1] = ACTIONS(1161), + [sym_char_literal] = ACTIONS(1161), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(475), - [sym_crate] = ACTIONS(475), - [sym_metavariable] = ACTIONS(473), - [sym_raw_string_literal] = ACTIONS(473), - [sym_float_literal] = ACTIONS(473), + [sym_self] = ACTIONS(1159), + [sym_super] = ACTIONS(1159), + [sym_crate] = ACTIONS(1159), + [sym_metavariable] = ACTIONS(1161), + [sym_raw_string_literal] = ACTIONS(1161), + [sym_float_literal] = ACTIONS(1161), [sym_block_comment] = ACTIONS(3), }, - [230] = { + [227] = { + [sym_identifier] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_QMARK] = ACTIONS(493), + [anon_sym_u8] = ACTIONS(495), + [anon_sym_i8] = ACTIONS(495), + [anon_sym_u16] = ACTIONS(495), + [anon_sym_i16] = ACTIONS(495), + [anon_sym_u32] = ACTIONS(495), + [anon_sym_i32] = ACTIONS(495), + [anon_sym_u64] = ACTIONS(495), + [anon_sym_i64] = ACTIONS(495), + [anon_sym_u128] = ACTIONS(495), + [anon_sym_i128] = ACTIONS(495), + [anon_sym_isize] = ACTIONS(495), + [anon_sym_usize] = ACTIONS(495), + [anon_sym_f32] = ACTIONS(495), + [anon_sym_f64] = ACTIONS(495), + [anon_sym_bool] = ACTIONS(495), + [anon_sym_str] = ACTIONS(495), + [anon_sym_char] = ACTIONS(495), + [anon_sym_as] = ACTIONS(495), + [anon_sym_POUND] = ACTIONS(493), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_COMMA] = ACTIONS(493), + [anon_sym_ref] = ACTIONS(495), + [anon_sym_LT] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(495), + [anon_sym_COLON_COLON] = ACTIONS(493), + [anon_sym__] = ACTIONS(495), + [anon_sym_AMP] = ACTIONS(495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(493), + [sym_mutable_specifier] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(493), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_LT_LT] = ACTIONS(495), + [anon_sym_GT_GT] = ACTIONS(495), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_PERCENT] = ACTIONS(495), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_STAR_EQ] = ACTIONS(493), + [anon_sym_SLASH_EQ] = ACTIONS(493), + [anon_sym_PERCENT_EQ] = ACTIONS(493), + [anon_sym_AMP_EQ] = ACTIONS(493), + [anon_sym_PIPE_EQ] = ACTIONS(493), + [anon_sym_CARET_EQ] = ACTIONS(493), + [anon_sym_LT_LT_EQ] = ACTIONS(493), + [anon_sym_GT_GT_EQ] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_box] = ACTIONS(495), + [sym_integer_literal] = ACTIONS(493), + [aux_sym_string_literal_token1] = ACTIONS(493), + [sym_char_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(495), + [sym_super] = ACTIONS(495), + [sym_crate] = ACTIONS(495), + [sym_metavariable] = ACTIONS(493), + [sym_raw_string_literal] = ACTIONS(493), + [sym_float_literal] = ACTIONS(493), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { [sym_identifier] = ACTIONS(499), [anon_sym_LPAREN] = ACTIONS(497), [anon_sym_RBRACE] = ACTIONS(497), @@ -31762,6 +31700,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(497), [anon_sym_GT_GT_EQ] = ACTIONS(497), [anon_sym_DOT] = ACTIONS(499), + [anon_sym_box] = ACTIONS(499), [sym_integer_literal] = ACTIONS(497), [aux_sym_string_literal_token1] = ACTIONS(497), [sym_char_literal] = ACTIONS(497), @@ -31776,700 +31715,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(497), [sym_block_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(431), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_STAR] = ACTIONS(433), - [anon_sym_QMARK] = ACTIONS(431), - [anon_sym_u8] = ACTIONS(433), - [anon_sym_i8] = ACTIONS(433), - [anon_sym_u16] = ACTIONS(433), - [anon_sym_i16] = ACTIONS(433), - [anon_sym_u32] = ACTIONS(433), - [anon_sym_i32] = ACTIONS(433), - [anon_sym_u64] = ACTIONS(433), - [anon_sym_i64] = ACTIONS(433), - [anon_sym_u128] = ACTIONS(433), - [anon_sym_i128] = ACTIONS(433), - [anon_sym_isize] = ACTIONS(433), - [anon_sym_usize] = ACTIONS(433), - [anon_sym_f32] = ACTIONS(433), - [anon_sym_f64] = ACTIONS(433), - [anon_sym_bool] = ACTIONS(433), - [anon_sym_str] = ACTIONS(433), - [anon_sym_char] = ACTIONS(433), - [anon_sym_as] = ACTIONS(433), - [anon_sym_POUND] = ACTIONS(431), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_COMMA] = ACTIONS(431), - [anon_sym_ref] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_GT] = ACTIONS(433), - [anon_sym_COLON_COLON] = ACTIONS(431), - [anon_sym__] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_mutable_specifier] = ACTIONS(433), - [anon_sym_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(431), - [anon_sym_PIPE_PIPE] = ACTIONS(431), - [anon_sym_PIPE] = ACTIONS(433), - [anon_sym_CARET] = ACTIONS(433), - [anon_sym_EQ_EQ] = ACTIONS(431), - [anon_sym_BANG_EQ] = ACTIONS(431), - [anon_sym_LT_EQ] = ACTIONS(431), - [anon_sym_GT_EQ] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_GT_GT] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(433), - [anon_sym_PLUS_EQ] = ACTIONS(431), - [anon_sym_DASH_EQ] = ACTIONS(431), - [anon_sym_STAR_EQ] = ACTIONS(431), - [anon_sym_SLASH_EQ] = ACTIONS(431), - [anon_sym_PERCENT_EQ] = ACTIONS(431), - [anon_sym_AMP_EQ] = ACTIONS(431), - [anon_sym_PIPE_EQ] = ACTIONS(431), - [anon_sym_CARET_EQ] = ACTIONS(431), - [anon_sym_LT_LT_EQ] = ACTIONS(431), - [anon_sym_GT_GT_EQ] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(431), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(431), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), + [229] = { + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(455), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_u8] = ACTIONS(457), + [anon_sym_i8] = ACTIONS(457), + [anon_sym_u16] = ACTIONS(457), + [anon_sym_i16] = ACTIONS(457), + [anon_sym_u32] = ACTIONS(457), + [anon_sym_i32] = ACTIONS(457), + [anon_sym_u64] = ACTIONS(457), + [anon_sym_i64] = ACTIONS(457), + [anon_sym_u128] = ACTIONS(457), + [anon_sym_i128] = ACTIONS(457), + [anon_sym_isize] = ACTIONS(457), + [anon_sym_usize] = ACTIONS(457), + [anon_sym_f32] = ACTIONS(457), + [anon_sym_f64] = ACTIONS(457), + [anon_sym_bool] = ACTIONS(457), + [anon_sym_str] = ACTIONS(457), + [anon_sym_char] = ACTIONS(457), + [anon_sym_as] = ACTIONS(457), + [anon_sym_POUND] = ACTIONS(455), + [anon_sym_EQ] = ACTIONS(457), + [anon_sym_COMMA] = ACTIONS(455), + [anon_sym_ref] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_GT] = ACTIONS(457), + [anon_sym_COLON_COLON] = ACTIONS(455), + [anon_sym__] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym_mutable_specifier] = ACTIONS(457), + [anon_sym_DOT_DOT] = ACTIONS(457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_AMP_AMP] = ACTIONS(455), + [anon_sym_PIPE_PIPE] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(455), + [anon_sym_BANG_EQ] = ACTIONS(455), + [anon_sym_LT_EQ] = ACTIONS(455), + [anon_sym_GT_EQ] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(457), + [anon_sym_PERCENT] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(455), + [anon_sym_DASH_EQ] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(455), + [anon_sym_SLASH_EQ] = ACTIONS(455), + [anon_sym_PERCENT_EQ] = ACTIONS(455), + [anon_sym_AMP_EQ] = ACTIONS(455), + [anon_sym_PIPE_EQ] = ACTIONS(455), + [anon_sym_CARET_EQ] = ACTIONS(455), + [anon_sym_LT_LT_EQ] = ACTIONS(455), + [anon_sym_GT_GT_EQ] = ACTIONS(455), + [anon_sym_DOT] = ACTIONS(457), + [anon_sym_box] = ACTIONS(457), + [sym_integer_literal] = ACTIONS(455), + [aux_sym_string_literal_token1] = ACTIONS(455), + [sym_char_literal] = ACTIONS(455), + [anon_sym_true] = ACTIONS(457), + [anon_sym_false] = ACTIONS(457), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(433), - [sym_super] = ACTIONS(433), - [sym_crate] = ACTIONS(433), - [sym_metavariable] = ACTIONS(431), - [sym_raw_string_literal] = ACTIONS(431), - [sym_float_literal] = ACTIONS(431), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(457), + [sym_crate] = ACTIONS(457), + [sym_metavariable] = ACTIONS(455), + [sym_raw_string_literal] = ACTIONS(455), + [sym_float_literal] = ACTIONS(455), [sym_block_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(493), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_LBRACK] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(493), - [anon_sym_u8] = ACTIONS(495), - [anon_sym_i8] = ACTIONS(495), - [anon_sym_u16] = ACTIONS(495), - [anon_sym_i16] = ACTIONS(495), - [anon_sym_u32] = ACTIONS(495), - [anon_sym_i32] = ACTIONS(495), - [anon_sym_u64] = ACTIONS(495), - [anon_sym_i64] = ACTIONS(495), - [anon_sym_u128] = ACTIONS(495), - [anon_sym_i128] = ACTIONS(495), - [anon_sym_isize] = ACTIONS(495), - [anon_sym_usize] = ACTIONS(495), - [anon_sym_f32] = ACTIONS(495), - [anon_sym_f64] = ACTIONS(495), - [anon_sym_bool] = ACTIONS(495), - [anon_sym_str] = ACTIONS(495), - [anon_sym_char] = ACTIONS(495), - [anon_sym_as] = ACTIONS(495), - [anon_sym_POUND] = ACTIONS(493), - [anon_sym_EQ] = ACTIONS(495), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_ref] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(495), - [anon_sym_COLON_COLON] = ACTIONS(493), - [anon_sym__] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(493), - [sym_mutable_specifier] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_PIPE] = ACTIONS(495), - [anon_sym_CARET] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(493), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_GT_GT] = ACTIONS(495), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_STAR_EQ] = ACTIONS(493), - [anon_sym_SLASH_EQ] = ACTIONS(493), - [anon_sym_PERCENT_EQ] = ACTIONS(493), - [anon_sym_AMP_EQ] = ACTIONS(493), - [anon_sym_PIPE_EQ] = ACTIONS(493), - [anon_sym_CARET_EQ] = ACTIONS(493), - [anon_sym_LT_LT_EQ] = ACTIONS(493), - [anon_sym_GT_GT_EQ] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(495), - [sym_integer_literal] = ACTIONS(493), - [aux_sym_string_literal_token1] = ACTIONS(493), - [sym_char_literal] = ACTIONS(493), - [anon_sym_true] = ACTIONS(495), - [anon_sym_false] = ACTIONS(495), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(495), - [sym_super] = ACTIONS(495), - [sym_crate] = ACTIONS(495), - [sym_metavariable] = ACTIONS(493), - [sym_raw_string_literal] = ACTIONS(493), - [sym_float_literal] = ACTIONS(493), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_QMARK] = ACTIONS(457), - [anon_sym_u8] = ACTIONS(459), - [anon_sym_i8] = ACTIONS(459), - [anon_sym_u16] = ACTIONS(459), - [anon_sym_i16] = ACTIONS(459), - [anon_sym_u32] = ACTIONS(459), - [anon_sym_i32] = ACTIONS(459), - [anon_sym_u64] = ACTIONS(459), - [anon_sym_i64] = ACTIONS(459), - [anon_sym_u128] = ACTIONS(459), - [anon_sym_i128] = ACTIONS(459), - [anon_sym_isize] = ACTIONS(459), - [anon_sym_usize] = ACTIONS(459), - [anon_sym_f32] = ACTIONS(459), - [anon_sym_f64] = ACTIONS(459), - [anon_sym_bool] = ACTIONS(459), - [anon_sym_str] = ACTIONS(459), - [anon_sym_char] = ACTIONS(459), - [anon_sym_as] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(457), - [anon_sym_EQ] = ACTIONS(459), - [anon_sym_COMMA] = ACTIONS(457), - [anon_sym_ref] = ACTIONS(459), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(457), - [anon_sym__] = ACTIONS(459), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(457), - [sym_mutable_specifier] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(457), - [anon_sym_PIPE_PIPE] = ACTIONS(457), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_EQ_EQ] = ACTIONS(457), - [anon_sym_BANG_EQ] = ACTIONS(457), - [anon_sym_LT_EQ] = ACTIONS(457), - [anon_sym_GT_EQ] = ACTIONS(457), - [anon_sym_LT_LT] = ACTIONS(459), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(459), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_STAR_EQ] = ACTIONS(457), - [anon_sym_SLASH_EQ] = ACTIONS(457), - [anon_sym_PERCENT_EQ] = ACTIONS(457), - [anon_sym_AMP_EQ] = ACTIONS(457), - [anon_sym_PIPE_EQ] = ACTIONS(457), - [anon_sym_CARET_EQ] = ACTIONS(457), - [anon_sym_LT_LT_EQ] = ACTIONS(457), - [anon_sym_GT_GT_EQ] = ACTIONS(457), - [anon_sym_DOT] = ACTIONS(459), - [sym_integer_literal] = ACTIONS(457), - [aux_sym_string_literal_token1] = ACTIONS(457), - [sym_char_literal] = ACTIONS(457), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(459), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(457), - [sym_raw_string_literal] = ACTIONS(457), - [sym_float_literal] = ACTIONS(457), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_LBRACK] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(519), - [anon_sym_u8] = ACTIONS(1279), - [anon_sym_i8] = ACTIONS(1279), - [anon_sym_u16] = ACTIONS(1279), - [anon_sym_i16] = ACTIONS(1279), - [anon_sym_u32] = ACTIONS(1279), - [anon_sym_i32] = ACTIONS(1279), - [anon_sym_u64] = ACTIONS(1279), - [anon_sym_i64] = ACTIONS(1279), - [anon_sym_u128] = ACTIONS(1279), - [anon_sym_i128] = ACTIONS(1279), - [anon_sym_isize] = ACTIONS(1279), - [anon_sym_usize] = ACTIONS(1279), - [anon_sym_f32] = ACTIONS(1279), - [anon_sym_f64] = ACTIONS(1279), - [anon_sym_bool] = ACTIONS(1279), - [anon_sym_str] = ACTIONS(1279), - [anon_sym_char] = ACTIONS(1279), - [anon_sym_as] = ACTIONS(521), - [anon_sym_POUND] = ACTIONS(1281), - [anon_sym_EQ] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(519), - [anon_sym_ref] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(521), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym__] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(519), - [sym_mutable_specifier] = ACTIONS(1279), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_DOT_DOT_EQ] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(519), - [anon_sym_PIPE_PIPE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(521), - [anon_sym_CARET] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ] = ACTIONS(519), - [anon_sym_LT_EQ] = ACTIONS(519), - [anon_sym_GT_EQ] = ACTIONS(519), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(521), - [anon_sym_PLUS_EQ] = ACTIONS(519), - [anon_sym_DASH_EQ] = ACTIONS(519), - [anon_sym_STAR_EQ] = ACTIONS(519), - [anon_sym_SLASH_EQ] = ACTIONS(519), - [anon_sym_PERCENT_EQ] = ACTIONS(519), - [anon_sym_AMP_EQ] = ACTIONS(519), - [anon_sym_PIPE_EQ] = ACTIONS(519), - [anon_sym_CARET_EQ] = ACTIONS(519), - [anon_sym_LT_LT_EQ] = ACTIONS(519), - [anon_sym_GT_GT_EQ] = ACTIONS(519), - [anon_sym_DOT] = ACTIONS(521), - [sym_integer_literal] = ACTIONS(1281), - [aux_sym_string_literal_token1] = ACTIONS(1281), - [sym_char_literal] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(1279), - [anon_sym_false] = ACTIONS(1279), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1279), - [sym_super] = ACTIONS(1279), - [sym_crate] = ACTIONS(1279), - [sym_metavariable] = ACTIONS(1281), - [sym_raw_string_literal] = ACTIONS(1281), - [sym_float_literal] = ACTIONS(1281), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(1283), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(519), - [anon_sym_u8] = ACTIONS(1283), - [anon_sym_i8] = ACTIONS(1283), - [anon_sym_u16] = ACTIONS(1283), - [anon_sym_i16] = ACTIONS(1283), - [anon_sym_u32] = ACTIONS(1283), - [anon_sym_i32] = ACTIONS(1283), - [anon_sym_u64] = ACTIONS(1283), - [anon_sym_i64] = ACTIONS(1283), - [anon_sym_u128] = ACTIONS(1283), - [anon_sym_i128] = ACTIONS(1283), - [anon_sym_isize] = ACTIONS(1283), - [anon_sym_usize] = ACTIONS(1283), - [anon_sym_f32] = ACTIONS(1283), - [anon_sym_f64] = ACTIONS(1283), - [anon_sym_bool] = ACTIONS(1283), - [anon_sym_str] = ACTIONS(1283), - [anon_sym_char] = ACTIONS(1283), - [anon_sym_as] = ACTIONS(521), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(519), - [anon_sym_ref] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(521), - [anon_sym_COLON_COLON] = ACTIONS(1285), - [anon_sym__] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(519), - [sym_mutable_specifier] = ACTIONS(1283), - [anon_sym_DOT_DOT] = ACTIONS(1283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(519), - [anon_sym_PIPE_PIPE] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(521), - [anon_sym_CARET] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ] = ACTIONS(519), - [anon_sym_LT_EQ] = ACTIONS(519), - [anon_sym_GT_EQ] = ACTIONS(519), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(521), - [anon_sym_PLUS_EQ] = ACTIONS(519), - [anon_sym_DASH_EQ] = ACTIONS(519), - [anon_sym_STAR_EQ] = ACTIONS(519), - [anon_sym_SLASH_EQ] = ACTIONS(519), - [anon_sym_PERCENT_EQ] = ACTIONS(519), - [anon_sym_AMP_EQ] = ACTIONS(519), - [anon_sym_PIPE_EQ] = ACTIONS(519), - [anon_sym_CARET_EQ] = ACTIONS(519), - [anon_sym_LT_LT_EQ] = ACTIONS(519), - [anon_sym_GT_GT_EQ] = ACTIONS(519), - [anon_sym_DOT] = ACTIONS(521), - [sym_integer_literal] = ACTIONS(1285), - [aux_sym_string_literal_token1] = ACTIONS(1285), - [sym_char_literal] = ACTIONS(1285), - [anon_sym_true] = ACTIONS(1283), - [anon_sym_false] = ACTIONS(1283), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1283), - [sym_super] = ACTIONS(1283), - [sym_crate] = ACTIONS(1283), - [sym_metavariable] = ACTIONS(1285), - [sym_raw_string_literal] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1285), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [sym_identifier] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(447), - [anon_sym_u8] = ACTIONS(449), - [anon_sym_i8] = ACTIONS(449), - [anon_sym_u16] = ACTIONS(449), - [anon_sym_i16] = ACTIONS(449), - [anon_sym_u32] = ACTIONS(449), - [anon_sym_i32] = ACTIONS(449), - [anon_sym_u64] = ACTIONS(449), - [anon_sym_i64] = ACTIONS(449), - [anon_sym_u128] = ACTIONS(449), - [anon_sym_i128] = ACTIONS(449), - [anon_sym_isize] = ACTIONS(449), - [anon_sym_usize] = ACTIONS(449), - [anon_sym_f32] = ACTIONS(449), - [anon_sym_f64] = ACTIONS(449), - [anon_sym_bool] = ACTIONS(449), - [anon_sym_str] = ACTIONS(449), - [anon_sym_char] = ACTIONS(449), - [anon_sym_as] = ACTIONS(449), - [anon_sym_POUND] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(447), - [anon_sym_ref] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(449), - [anon_sym_COLON_COLON] = ACTIONS(447), - [anon_sym__] = ACTIONS(449), - [anon_sym_AMP] = ACTIONS(449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(447), - [sym_mutable_specifier] = ACTIONS(449), - [anon_sym_DOT_DOT] = ACTIONS(449), - [anon_sym_DOT_DOT_EQ] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(447), - [anon_sym_PIPE_PIPE] = ACTIONS(447), - [anon_sym_PIPE] = ACTIONS(449), - [anon_sym_CARET] = ACTIONS(449), - [anon_sym_EQ_EQ] = ACTIONS(447), - [anon_sym_BANG_EQ] = ACTIONS(447), - [anon_sym_LT_EQ] = ACTIONS(447), - [anon_sym_GT_EQ] = ACTIONS(447), - [anon_sym_LT_LT] = ACTIONS(449), - [anon_sym_GT_GT] = ACTIONS(449), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_PERCENT] = ACTIONS(449), - [anon_sym_PLUS_EQ] = ACTIONS(447), - [anon_sym_DASH_EQ] = ACTIONS(447), - [anon_sym_STAR_EQ] = ACTIONS(447), - [anon_sym_SLASH_EQ] = ACTIONS(447), - [anon_sym_PERCENT_EQ] = ACTIONS(447), - [anon_sym_AMP_EQ] = ACTIONS(447), - [anon_sym_PIPE_EQ] = ACTIONS(447), - [anon_sym_CARET_EQ] = ACTIONS(447), - [anon_sym_LT_LT_EQ] = ACTIONS(447), - [anon_sym_GT_GT_EQ] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(447), - [aux_sym_string_literal_token1] = ACTIONS(447), - [sym_char_literal] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(449), - [sym_super] = ACTIONS(449), - [sym_crate] = ACTIONS(449), - [sym_metavariable] = ACTIONS(447), - [sym_raw_string_literal] = ACTIONS(447), - [sym_float_literal] = ACTIONS(447), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [sym_identifier] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_PLUS] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(435), - [anon_sym_u8] = ACTIONS(437), - [anon_sym_i8] = ACTIONS(437), - [anon_sym_u16] = ACTIONS(437), - [anon_sym_i16] = ACTIONS(437), - [anon_sym_u32] = ACTIONS(437), - [anon_sym_i32] = ACTIONS(437), - [anon_sym_u64] = ACTIONS(437), - [anon_sym_i64] = ACTIONS(437), - [anon_sym_u128] = ACTIONS(437), - [anon_sym_i128] = ACTIONS(437), - [anon_sym_isize] = ACTIONS(437), - [anon_sym_usize] = ACTIONS(437), - [anon_sym_f32] = ACTIONS(437), - [anon_sym_f64] = ACTIONS(437), - [anon_sym_bool] = ACTIONS(437), - [anon_sym_str] = ACTIONS(437), - [anon_sym_char] = ACTIONS(437), - [anon_sym_as] = ACTIONS(437), - [anon_sym_POUND] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(435), - [anon_sym_ref] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_GT] = ACTIONS(437), - [anon_sym_COLON_COLON] = ACTIONS(435), - [anon_sym__] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(435), - [sym_mutable_specifier] = ACTIONS(437), - [anon_sym_DOT_DOT] = ACTIONS(437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(437), - [anon_sym_AMP_AMP] = ACTIONS(435), - [anon_sym_PIPE_PIPE] = ACTIONS(435), - [anon_sym_PIPE] = ACTIONS(437), - [anon_sym_CARET] = ACTIONS(437), - [anon_sym_EQ_EQ] = ACTIONS(435), - [anon_sym_BANG_EQ] = ACTIONS(435), - [anon_sym_LT_EQ] = ACTIONS(435), - [anon_sym_GT_EQ] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(437), - [anon_sym_GT_GT] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(437), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_PLUS_EQ] = ACTIONS(435), - [anon_sym_DASH_EQ] = ACTIONS(435), - [anon_sym_STAR_EQ] = ACTIONS(435), - [anon_sym_SLASH_EQ] = ACTIONS(435), - [anon_sym_PERCENT_EQ] = ACTIONS(435), - [anon_sym_AMP_EQ] = ACTIONS(435), - [anon_sym_PIPE_EQ] = ACTIONS(435), - [anon_sym_CARET_EQ] = ACTIONS(435), - [anon_sym_LT_LT_EQ] = ACTIONS(435), - [anon_sym_GT_GT_EQ] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(437), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(435), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(437), - [anon_sym_false] = ACTIONS(437), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(437), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(435), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - [sym_block_comment] = ACTIONS(3), - }, - [238] = { - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(467), - [anon_sym_STAR] = ACTIONS(467), - [anon_sym_QMARK] = ACTIONS(465), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_as] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(465), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(465), - [anon_sym_ref] = ACTIONS(467), - [anon_sym_LT] = ACTIONS(467), - [anon_sym_GT] = ACTIONS(467), - [anon_sym_COLON_COLON] = ACTIONS(465), - [anon_sym__] = ACTIONS(467), - [anon_sym_AMP] = ACTIONS(467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(465), - [sym_mutable_specifier] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(465), - [anon_sym_DASH] = ACTIONS(467), - [anon_sym_AMP_AMP] = ACTIONS(465), - [anon_sym_PIPE_PIPE] = ACTIONS(465), - [anon_sym_PIPE] = ACTIONS(467), - [anon_sym_CARET] = ACTIONS(467), - [anon_sym_EQ_EQ] = ACTIONS(465), - [anon_sym_BANG_EQ] = ACTIONS(465), - [anon_sym_LT_EQ] = ACTIONS(465), - [anon_sym_GT_EQ] = ACTIONS(465), - [anon_sym_LT_LT] = ACTIONS(467), - [anon_sym_GT_GT] = ACTIONS(467), - [anon_sym_SLASH] = ACTIONS(467), - [anon_sym_PERCENT] = ACTIONS(467), - [anon_sym_PLUS_EQ] = ACTIONS(465), - [anon_sym_DASH_EQ] = ACTIONS(465), - [anon_sym_STAR_EQ] = ACTIONS(465), - [anon_sym_SLASH_EQ] = ACTIONS(465), - [anon_sym_PERCENT_EQ] = ACTIONS(465), - [anon_sym_AMP_EQ] = ACTIONS(465), - [anon_sym_PIPE_EQ] = ACTIONS(465), - [anon_sym_CARET_EQ] = ACTIONS(465), - [anon_sym_LT_LT_EQ] = ACTIONS(465), - [anon_sym_GT_GT_EQ] = ACTIONS(465), - [anon_sym_DOT] = ACTIONS(467), - [sym_integer_literal] = ACTIONS(465), - [aux_sym_string_literal_token1] = ACTIONS(465), - [sym_char_literal] = ACTIONS(465), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(467), - [sym_super] = ACTIONS(467), - [sym_crate] = ACTIONS(467), - [sym_metavariable] = ACTIONS(465), - [sym_raw_string_literal] = ACTIONS(465), - [sym_float_literal] = ACTIONS(465), - [sym_block_comment] = ACTIONS(3), - }, - [239] = { - [sym_identifier] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(441), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_u8] = ACTIONS(441), - [anon_sym_i8] = ACTIONS(441), - [anon_sym_u16] = ACTIONS(441), - [anon_sym_i16] = ACTIONS(441), - [anon_sym_u32] = ACTIONS(441), - [anon_sym_i32] = ACTIONS(441), - [anon_sym_u64] = ACTIONS(441), - [anon_sym_i64] = ACTIONS(441), - [anon_sym_u128] = ACTIONS(441), - [anon_sym_i128] = ACTIONS(441), - [anon_sym_isize] = ACTIONS(441), - [anon_sym_usize] = ACTIONS(441), - [anon_sym_f32] = ACTIONS(441), - [anon_sym_f64] = ACTIONS(441), - [anon_sym_bool] = ACTIONS(441), - [anon_sym_str] = ACTIONS(441), - [anon_sym_char] = ACTIONS(441), - [anon_sym_as] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_ref] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_COLON_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(439), - [sym_mutable_specifier] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_AMP_AMP] = ACTIONS(439), - [anon_sym_PIPE_PIPE] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(441), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_LT_EQ] = ACTIONS(439), - [anon_sym_GT_EQ] = ACTIONS(439), - [anon_sym_LT_LT] = ACTIONS(441), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_SLASH] = ACTIONS(441), - [anon_sym_PERCENT] = ACTIONS(441), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(441), - [sym_integer_literal] = ACTIONS(439), - [aux_sym_string_literal_token1] = ACTIONS(439), - [sym_char_literal] = ACTIONS(439), - [anon_sym_true] = ACTIONS(441), - [anon_sym_false] = ACTIONS(441), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(441), - [sym_crate] = ACTIONS(441), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(439), - [sym_float_literal] = ACTIONS(439), - [sym_block_comment] = ACTIONS(3), - }, - [240] = { + [230] = { [sym_identifier] = ACTIONS(487), [anon_sym_LPAREN] = ACTIONS(485), [anon_sym_RBRACE] = ACTIONS(485), @@ -32532,6 +31856,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(485), [anon_sym_GT_GT_EQ] = ACTIONS(485), [anon_sym_DOT] = ACTIONS(487), + [anon_sym_box] = ACTIONS(487), [sym_integer_literal] = ACTIONS(485), [aux_sym_string_literal_token1] = ACTIONS(485), [sym_char_literal] = ACTIONS(485), @@ -32546,2543 +31871,3331 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(485), [sym_block_comment] = ACTIONS(3), }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_identifier] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_macro_rules_BANG] = ACTIONS(1287), - [anon_sym_LPAREN] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1287), + [231] = { + [sym_identifier] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(515), + [anon_sym_QMARK] = ACTIONS(513), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u128] = ACTIONS(1163), + [anon_sym_i128] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_str] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_as] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(1165), + [anon_sym_EQ] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(513), + [anon_sym_ref] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(1163), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_COLON_COLON] = ACTIONS(1165), + [anon_sym__] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(513), + [sym_mutable_specifier] = ACTIONS(1163), + [anon_sym_DOT_DOT] = ACTIONS(1163), + [anon_sym_DOT_DOT_EQ] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT_EQ] = ACTIONS(513), + [anon_sym_GT_EQ] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(515), + [anon_sym_PLUS_EQ] = ACTIONS(513), + [anon_sym_DASH_EQ] = ACTIONS(513), + [anon_sym_STAR_EQ] = ACTIONS(513), + [anon_sym_SLASH_EQ] = ACTIONS(513), + [anon_sym_PERCENT_EQ] = ACTIONS(513), + [anon_sym_AMP_EQ] = ACTIONS(513), + [anon_sym_PIPE_EQ] = ACTIONS(513), + [anon_sym_CARET_EQ] = ACTIONS(513), + [anon_sym_LT_LT_EQ] = ACTIONS(513), + [anon_sym_GT_GT_EQ] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_box] = ACTIONS(1163), + [sym_integer_literal] = ACTIONS(1165), + [aux_sym_string_literal_token1] = ACTIONS(1165), + [sym_char_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1163), + [sym_super] = ACTIONS(1163), + [sym_crate] = ACTIONS(1163), + [sym_metavariable] = ACTIONS(1165), + [sym_raw_string_literal] = ACTIONS(1165), + [sym_float_literal] = ACTIONS(1165), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1687), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1688), + [sym_array_type] = STATE(1687), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1687), + [sym_tuple_type] = STATE(1687), + [sym_unit_type] = STATE(1687), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1687), + [sym_type_binding] = STATE(1960), + [sym_reference_type] = STATE(1687), + [sym_pointer_type] = STATE(1687), + [sym_empty_type] = STATE(1687), + [sym_abstract_type] = STATE(1687), + [sym_dynamic_type] = STATE(1687), + [sym_macro_invocation] = STATE(1687), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [sym_block] = STATE(1960), + [sym__literal] = STATE(1960), + [sym_string_literal] = STATE(1960), + [sym_boolean_literal] = STATE(1960), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_integer_literal] = ACTIONS(1167), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(1167), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), + [sym_raw_string_literal] = ACTIONS(1167), + [sym_float_literal] = ACTIONS(1167), + [sym_block_comment] = ACTIONS(3), + }, + [233] = { + [sym__token_pattern] = STATE(233), + [sym_token_tree_pattern] = STATE(233), + [sym_token_binding_pattern] = STATE(233), + [sym_token_repetition_pattern] = STATE(233), + [sym__literal] = STATE(233), + [sym_string_literal] = STATE(233), + [sym_boolean_literal] = STATE(233), + [aux_sym_token_tree_pattern_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1172), + [anon_sym_RPAREN] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_RBRACK] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1183), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_as] = ACTIONS(1169), + [anon_sym_async] = ACTIONS(1169), + [anon_sym_await] = ACTIONS(1169), + [anon_sym_break] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_continue] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_fn] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1169), + [anon_sym_impl] = ACTIONS(1169), + [anon_sym_let] = ACTIONS(1169), + [anon_sym_loop] = ACTIONS(1169), + [anon_sym_match] = ACTIONS(1169), + [anon_sym_mod] = ACTIONS(1169), + [anon_sym_pub] = ACTIONS(1169), + [anon_sym_return] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_trait] = ACTIONS(1169), + [anon_sym_type] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [anon_sym_unsafe] = ACTIONS(1169), + [anon_sym_use] = ACTIONS(1169), + [anon_sym_where] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1169), + [sym_integer_literal] = ACTIONS(1189), + [aux_sym_string_literal_token1] = ACTIONS(1192), + [sym_char_literal] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1195), + [anon_sym_false] = ACTIONS(1195), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1169), + [sym_super] = ACTIONS(1169), + [sym_crate] = ACTIONS(1169), + [sym_metavariable] = ACTIONS(1200), + [sym_raw_string_literal] = ACTIONS(1189), + [sym_float_literal] = ACTIONS(1189), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [sym_empty_statement] = STATE(239), + [sym_macro_definition] = STATE(239), + [sym_attribute_item] = STATE(239), + [sym_inner_attribute_item] = STATE(239), + [sym_mod_item] = STATE(239), + [sym_foreign_mod_item] = STATE(239), + [sym_struct_item] = STATE(239), + [sym_union_item] = STATE(239), + [sym_enum_item] = STATE(239), + [sym_extern_crate_declaration] = STATE(239), + [sym_const_item] = STATE(239), + [sym_static_item] = STATE(239), + [sym_type_item] = STATE(239), + [sym_function_item] = STATE(239), + [sym_function_signature_item] = STATE(239), + [sym_function_modifiers] = STATE(2397), + [sym_impl_item] = STATE(239), + [sym_trait_item] = STATE(239), + [sym_associated_type] = STATE(239), + [sym_let_declaration] = STATE(239), + [sym_use_declaration] = STATE(239), + [sym_extern_modifier] = STATE(1397), + [sym_visibility_modifier] = STATE(1251), + [sym_bracketed_type] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(2311), + [sym_macro_invocation] = STATE(239), + [sym_scoped_identifier] = STATE(2157), + [aux_sym_declaration_list_repeat1] = STATE(239), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_macro_rules_BANG] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1119), + [anon_sym_i8] = ACTIONS(1119), + [anon_sym_u16] = ACTIONS(1119), + [anon_sym_i16] = ACTIONS(1119), + [anon_sym_u32] = ACTIONS(1119), + [anon_sym_i32] = ACTIONS(1119), + [anon_sym_u64] = ACTIONS(1119), + [anon_sym_i64] = ACTIONS(1119), + [anon_sym_u128] = ACTIONS(1119), + [anon_sym_i128] = ACTIONS(1119), + [anon_sym_isize] = ACTIONS(1119), + [anon_sym_usize] = ACTIONS(1119), + [anon_sym_f32] = ACTIONS(1119), + [anon_sym_f64] = ACTIONS(1119), + [anon_sym_bool] = ACTIONS(1119), + [anon_sym_str] = ACTIONS(1119), + [anon_sym_char] = ACTIONS(1119), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_default] = ACTIONS(559), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_fn] = ACTIONS(1125), + [anon_sym_impl] = ACTIONS(1127), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1131), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_trait] = ACTIONS(1137), + [anon_sym_type] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1141), + [anon_sym_unsafe] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1151), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1153), + [sym_super] = ACTIONS(1153), + [sym_crate] = ACTIONS(1155), + [sym_metavariable] = ACTIONS(1157), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1828), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1833), + [sym_array_type] = STATE(1828), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1828), + [sym_tuple_type] = STATE(1828), + [sym_unit_type] = STATE(1828), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1828), + [sym_type_binding] = STATE(2148), + [sym_reference_type] = STATE(1828), + [sym_pointer_type] = STATE(1828), + [sym_empty_type] = STATE(1828), + [sym_abstract_type] = STATE(1828), + [sym_dynamic_type] = STATE(1828), + [sym_macro_invocation] = STATE(1828), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [sym_block] = STATE(2148), + [sym__literal] = STATE(2148), + [sym_string_literal] = STATE(2148), + [sym_boolean_literal] = STATE(2148), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(557), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_integer_literal] = ACTIONS(1093), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), + [sym_raw_string_literal] = ACTIONS(1093), + [sym_float_literal] = ACTIONS(1093), + [sym_block_comment] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(479), + [anon_sym_u8] = ACTIONS(481), + [anon_sym_i8] = ACTIONS(481), + [anon_sym_u16] = ACTIONS(481), + [anon_sym_i16] = ACTIONS(481), + [anon_sym_u32] = ACTIONS(481), + [anon_sym_i32] = ACTIONS(481), + [anon_sym_u64] = ACTIONS(481), + [anon_sym_i64] = ACTIONS(481), + [anon_sym_u128] = ACTIONS(481), + [anon_sym_i128] = ACTIONS(481), + [anon_sym_isize] = ACTIONS(481), + [anon_sym_usize] = ACTIONS(481), + [anon_sym_f32] = ACTIONS(481), + [anon_sym_f64] = ACTIONS(481), + [anon_sym_bool] = ACTIONS(481), + [anon_sym_str] = ACTIONS(481), + [anon_sym_char] = ACTIONS(481), + [anon_sym_as] = ACTIONS(481), + [anon_sym_POUND] = ACTIONS(479), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_COMMA] = ACTIONS(479), + [anon_sym_ref] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_COLON_COLON] = ACTIONS(479), + [anon_sym__] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(479), + [sym_mutable_specifier] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(479), + [anon_sym_LT_EQ] = ACTIONS(479), + [anon_sym_GT_EQ] = ACTIONS(479), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_PERCENT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(479), + [anon_sym_STAR_EQ] = ACTIONS(479), + [anon_sym_SLASH_EQ] = ACTIONS(479), + [anon_sym_PERCENT_EQ] = ACTIONS(479), + [anon_sym_AMP_EQ] = ACTIONS(479), + [anon_sym_PIPE_EQ] = ACTIONS(479), + [anon_sym_CARET_EQ] = ACTIONS(479), + [anon_sym_LT_LT_EQ] = ACTIONS(479), + [anon_sym_GT_GT_EQ] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(481), + [anon_sym_box] = ACTIONS(481), + [sym_integer_literal] = ACTIONS(479), + [aux_sym_string_literal_token1] = ACTIONS(479), + [sym_char_literal] = ACTIONS(479), + [anon_sym_true] = ACTIONS(481), + [anon_sym_false] = ACTIONS(481), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(481), + [sym_super] = ACTIONS(481), + [sym_crate] = ACTIONS(481), + [sym_metavariable] = ACTIONS(479), + [sym_raw_string_literal] = ACTIONS(479), + [sym_float_literal] = ACTIONS(479), + [sym_block_comment] = ACTIONS(3), + }, + [237] = { + [sym_empty_statement] = STATE(239), + [sym_macro_definition] = STATE(239), + [sym_attribute_item] = STATE(239), + [sym_inner_attribute_item] = STATE(239), + [sym_mod_item] = STATE(239), + [sym_foreign_mod_item] = STATE(239), + [sym_struct_item] = STATE(239), + [sym_union_item] = STATE(239), + [sym_enum_item] = STATE(239), + [sym_extern_crate_declaration] = STATE(239), + [sym_const_item] = STATE(239), + [sym_static_item] = STATE(239), + [sym_type_item] = STATE(239), + [sym_function_item] = STATE(239), + [sym_function_signature_item] = STATE(239), + [sym_function_modifiers] = STATE(2397), + [sym_impl_item] = STATE(239), + [sym_trait_item] = STATE(239), + [sym_associated_type] = STATE(239), + [sym_let_declaration] = STATE(239), + [sym_use_declaration] = STATE(239), + [sym_extern_modifier] = STATE(1397), + [sym_visibility_modifier] = STATE(1251), + [sym_bracketed_type] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(2311), + [sym_macro_invocation] = STATE(239), + [sym_scoped_identifier] = STATE(2157), + [aux_sym_declaration_list_repeat1] = STATE(239), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_macro_rules_BANG] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1119), + [anon_sym_i8] = ACTIONS(1119), + [anon_sym_u16] = ACTIONS(1119), + [anon_sym_i16] = ACTIONS(1119), + [anon_sym_u32] = ACTIONS(1119), + [anon_sym_i32] = ACTIONS(1119), + [anon_sym_u64] = ACTIONS(1119), + [anon_sym_i64] = ACTIONS(1119), + [anon_sym_u128] = ACTIONS(1119), + [anon_sym_i128] = ACTIONS(1119), + [anon_sym_isize] = ACTIONS(1119), + [anon_sym_usize] = ACTIONS(1119), + [anon_sym_f32] = ACTIONS(1119), + [anon_sym_f64] = ACTIONS(1119), + [anon_sym_bool] = ACTIONS(1119), + [anon_sym_str] = ACTIONS(1119), + [anon_sym_char] = ACTIONS(1119), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_default] = ACTIONS(559), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_fn] = ACTIONS(1125), + [anon_sym_impl] = ACTIONS(1127), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1131), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_trait] = ACTIONS(1137), + [anon_sym_type] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1141), + [anon_sym_unsafe] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1151), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1153), + [sym_super] = ACTIONS(1153), + [sym_crate] = ACTIONS(1155), + [sym_metavariable] = ACTIONS(1157), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(475), + [anon_sym_u8] = ACTIONS(477), + [anon_sym_i8] = ACTIONS(477), + [anon_sym_u16] = ACTIONS(477), + [anon_sym_i16] = ACTIONS(477), + [anon_sym_u32] = ACTIONS(477), + [anon_sym_i32] = ACTIONS(477), + [anon_sym_u64] = ACTIONS(477), + [anon_sym_i64] = ACTIONS(477), + [anon_sym_u128] = ACTIONS(477), + [anon_sym_i128] = ACTIONS(477), + [anon_sym_isize] = ACTIONS(477), + [anon_sym_usize] = ACTIONS(477), + [anon_sym_f32] = ACTIONS(477), + [anon_sym_f64] = ACTIONS(477), + [anon_sym_bool] = ACTIONS(477), + [anon_sym_str] = ACTIONS(477), + [anon_sym_char] = ACTIONS(477), + [anon_sym_as] = ACTIONS(477), + [anon_sym_POUND] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_ref] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(477), + [anon_sym_GT] = ACTIONS(477), + [anon_sym_COLON_COLON] = ACTIONS(475), + [anon_sym__] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(475), + [sym_mutable_specifier] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(475), + [anon_sym_PIPE_PIPE] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(475), + [anon_sym_BANG_EQ] = ACTIONS(475), + [anon_sym_LT_EQ] = ACTIONS(475), + [anon_sym_GT_EQ] = ACTIONS(475), + [anon_sym_LT_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(475), + [anon_sym_DASH_EQ] = ACTIONS(475), + [anon_sym_STAR_EQ] = ACTIONS(475), + [anon_sym_SLASH_EQ] = ACTIONS(475), + [anon_sym_PERCENT_EQ] = ACTIONS(475), + [anon_sym_AMP_EQ] = ACTIONS(475), + [anon_sym_PIPE_EQ] = ACTIONS(475), + [anon_sym_CARET_EQ] = ACTIONS(475), + [anon_sym_LT_LT_EQ] = ACTIONS(475), + [anon_sym_GT_GT_EQ] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(477), + [anon_sym_box] = ACTIONS(477), + [sym_integer_literal] = ACTIONS(475), + [aux_sym_string_literal_token1] = ACTIONS(475), + [sym_char_literal] = ACTIONS(475), + [anon_sym_true] = ACTIONS(477), + [anon_sym_false] = ACTIONS(477), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(477), + [sym_crate] = ACTIONS(477), + [sym_metavariable] = ACTIONS(475), + [sym_raw_string_literal] = ACTIONS(475), + [sym_float_literal] = ACTIONS(475), + [sym_block_comment] = ACTIONS(3), + }, + [239] = { + [sym_empty_statement] = STATE(239), + [sym_macro_definition] = STATE(239), + [sym_attribute_item] = STATE(239), + [sym_inner_attribute_item] = STATE(239), + [sym_mod_item] = STATE(239), + [sym_foreign_mod_item] = STATE(239), + [sym_struct_item] = STATE(239), + [sym_union_item] = STATE(239), + [sym_enum_item] = STATE(239), + [sym_extern_crate_declaration] = STATE(239), + [sym_const_item] = STATE(239), + [sym_static_item] = STATE(239), + [sym_type_item] = STATE(239), + [sym_function_item] = STATE(239), + [sym_function_signature_item] = STATE(239), + [sym_function_modifiers] = STATE(2397), + [sym_impl_item] = STATE(239), + [sym_trait_item] = STATE(239), + [sym_associated_type] = STATE(239), + [sym_let_declaration] = STATE(239), + [sym_use_declaration] = STATE(239), + [sym_extern_modifier] = STATE(1397), + [sym_visibility_modifier] = STATE(1251), + [sym_bracketed_type] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(2311), + [sym_macro_invocation] = STATE(239), + [sym_scoped_identifier] = STATE(2157), + [aux_sym_declaration_list_repeat1] = STATE(239), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_macro_rules_BANG] = ACTIONS(1213), + [anon_sym_RBRACE] = 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_async] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_fn] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1233), + [anon_sym_let] = ACTIONS(1236), + [anon_sym_mod] = ACTIONS(1239), + [anon_sym_pub] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1245), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_trait] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1257), + [anon_sym_unsafe] = ACTIONS(1260), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_COLON_COLON] = ACTIONS(1275), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1278), + [sym_super] = ACTIONS(1278), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1284), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { + [sym_empty_statement] = STATE(234), + [sym_macro_definition] = STATE(234), + [sym_attribute_item] = STATE(234), + [sym_inner_attribute_item] = STATE(234), + [sym_mod_item] = STATE(234), + [sym_foreign_mod_item] = STATE(234), + [sym_struct_item] = STATE(234), + [sym_union_item] = STATE(234), + [sym_enum_item] = STATE(234), + [sym_extern_crate_declaration] = STATE(234), + [sym_const_item] = STATE(234), + [sym_static_item] = STATE(234), + [sym_type_item] = STATE(234), + [sym_function_item] = STATE(234), + [sym_function_signature_item] = STATE(234), + [sym_function_modifiers] = STATE(2397), + [sym_impl_item] = STATE(234), + [sym_trait_item] = STATE(234), + [sym_associated_type] = STATE(234), + [sym_let_declaration] = STATE(234), + [sym_use_declaration] = STATE(234), + [sym_extern_modifier] = STATE(1397), + [sym_visibility_modifier] = STATE(1251), + [sym_bracketed_type] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(2311), + [sym_macro_invocation] = STATE(234), + [sym_scoped_identifier] = STATE(2157), + [aux_sym_declaration_list_repeat1] = STATE(234), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_macro_rules_BANG] = ACTIONS(1115), [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_u8] = ACTIONS(1289), - [anon_sym_i8] = ACTIONS(1289), - [anon_sym_u16] = ACTIONS(1289), - [anon_sym_i16] = ACTIONS(1289), - [anon_sym_u32] = ACTIONS(1289), - [anon_sym_i32] = ACTIONS(1289), - [anon_sym_u64] = ACTIONS(1289), - [anon_sym_i64] = ACTIONS(1289), - [anon_sym_u128] = ACTIONS(1289), - [anon_sym_i128] = ACTIONS(1289), - [anon_sym_isize] = ACTIONS(1289), - [anon_sym_usize] = ACTIONS(1289), - [anon_sym_f32] = ACTIONS(1289), - [anon_sym_f64] = ACTIONS(1289), - [anon_sym_bool] = ACTIONS(1289), - [anon_sym_str] = ACTIONS(1289), - [anon_sym_char] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [anon_sym_async] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_fn] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_impl] = ACTIONS(1289), - [anon_sym_let] = ACTIONS(1289), - [anon_sym_loop] = ACTIONS(1289), - [anon_sym_match] = ACTIONS(1289), - [anon_sym_mod] = ACTIONS(1289), - [anon_sym_pub] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_trait] = ACTIONS(1289), - [anon_sym_type] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_unsafe] = ACTIONS(1289), - [anon_sym_use] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_POUND] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym_LT] = ACTIONS(1287), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_move] = ACTIONS(1289), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1287), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1289), - [anon_sym_false] = ACTIONS(1289), + [anon_sym_u8] = ACTIONS(1119), + [anon_sym_i8] = ACTIONS(1119), + [anon_sym_u16] = ACTIONS(1119), + [anon_sym_i16] = ACTIONS(1119), + [anon_sym_u32] = ACTIONS(1119), + [anon_sym_i32] = ACTIONS(1119), + [anon_sym_u64] = ACTIONS(1119), + [anon_sym_i64] = ACTIONS(1119), + [anon_sym_u128] = ACTIONS(1119), + [anon_sym_i128] = ACTIONS(1119), + [anon_sym_isize] = ACTIONS(1119), + [anon_sym_usize] = ACTIONS(1119), + [anon_sym_f32] = ACTIONS(1119), + [anon_sym_f64] = ACTIONS(1119), + [anon_sym_bool] = ACTIONS(1119), + [anon_sym_str] = ACTIONS(1119), + [anon_sym_char] = ACTIONS(1119), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(1121), + [anon_sym_default] = ACTIONS(559), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_fn] = ACTIONS(1125), + [anon_sym_impl] = ACTIONS(1127), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_mod] = ACTIONS(1131), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(1133), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_trait] = ACTIONS(1137), + [anon_sym_type] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1141), + [anon_sym_unsafe] = ACTIONS(1143), + [anon_sym_use] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1151), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1153), + [sym_super] = ACTIONS(1153), + [sym_crate] = ACTIONS(1155), + [sym_metavariable] = ACTIONS(1157), + [sym_block_comment] = ACTIONS(3), + }, + [241] = { + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_macro_rules_BANG] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_u8] = ACTIONS(1291), + [anon_sym_i8] = ACTIONS(1291), + [anon_sym_u16] = ACTIONS(1291), + [anon_sym_i16] = ACTIONS(1291), + [anon_sym_u32] = ACTIONS(1291), + [anon_sym_i32] = ACTIONS(1291), + [anon_sym_u64] = ACTIONS(1291), + [anon_sym_i64] = ACTIONS(1291), + [anon_sym_u128] = ACTIONS(1291), + [anon_sym_i128] = ACTIONS(1291), + [anon_sym_isize] = ACTIONS(1291), + [anon_sym_usize] = ACTIONS(1291), + [anon_sym_f32] = ACTIONS(1291), + [anon_sym_f64] = ACTIONS(1291), + [anon_sym_bool] = ACTIONS(1291), + [anon_sym_str] = ACTIONS(1291), + [anon_sym_char] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_fn] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_impl] = ACTIONS(1291), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_loop] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_mod] = ACTIONS(1291), + [anon_sym_pub] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_unsafe] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1289), + [anon_sym_COLON_COLON] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1289), + [anon_sym_move] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(1289), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1289), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1289), - [sym_super] = ACTIONS(1289), - [sym_crate] = ACTIONS(1289), - [sym_metavariable] = ACTIONS(1287), - [sym_raw_string_literal] = ACTIONS(1287), - [sym_float_literal] = ACTIONS(1287), + [sym_self] = ACTIONS(1291), + [sym_super] = ACTIONS(1291), + [sym_crate] = ACTIONS(1291), + [sym_metavariable] = ACTIONS(1289), + [sym_raw_string_literal] = ACTIONS(1289), + [sym_float_literal] = ACTIONS(1289), [sym_block_comment] = ACTIONS(3), }, [242] = { - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1293), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_macro_rules_BANG] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1293), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1293), - [anon_sym_enum] = ACTIONS(1293), - [anon_sym_fn] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_impl] = ACTIONS(1293), - [anon_sym_let] = ACTIONS(1293), - [anon_sym_loop] = ACTIONS(1293), - [anon_sym_match] = ACTIONS(1293), - [anon_sym_mod] = ACTIONS(1293), - [anon_sym_pub] = ACTIONS(1293), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_static] = ACTIONS(1293), - [anon_sym_struct] = ACTIONS(1293), - [anon_sym_trait] = ACTIONS(1293), - [anon_sym_type] = ACTIONS(1293), - [anon_sym_union] = ACTIONS(1293), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_use] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_POUND] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_extern] = ACTIONS(1293), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_COLON_COLON] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1293), - [sym_integer_literal] = ACTIONS(1291), - [aux_sym_string_literal_token1] = ACTIONS(1291), - [sym_char_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(1293), - [anon_sym_false] = ACTIONS(1293), + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_macro_rules_BANG] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_u8] = ACTIONS(1295), + [anon_sym_i8] = ACTIONS(1295), + [anon_sym_u16] = ACTIONS(1295), + [anon_sym_i16] = ACTIONS(1295), + [anon_sym_u32] = ACTIONS(1295), + [anon_sym_i32] = ACTIONS(1295), + [anon_sym_u64] = ACTIONS(1295), + [anon_sym_i64] = ACTIONS(1295), + [anon_sym_u128] = ACTIONS(1295), + [anon_sym_i128] = ACTIONS(1295), + [anon_sym_isize] = ACTIONS(1295), + [anon_sym_usize] = ACTIONS(1295), + [anon_sym_f32] = ACTIONS(1295), + [anon_sym_f64] = ACTIONS(1295), + [anon_sym_bool] = ACTIONS(1295), + [anon_sym_str] = ACTIONS(1295), + [anon_sym_char] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_fn] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_impl] = ACTIONS(1295), + [anon_sym_let] = ACTIONS(1295), + [anon_sym_loop] = ACTIONS(1295), + [anon_sym_match] = ACTIONS(1295), + [anon_sym_mod] = ACTIONS(1295), + [anon_sym_pub] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_trait] = ACTIONS(1295), + [anon_sym_type] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_unsafe] = ACTIONS(1295), + [anon_sym_use] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1293), + [anon_sym_COLON_COLON] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(1293), + [anon_sym_move] = ACTIONS(1295), + [sym_integer_literal] = ACTIONS(1293), + [aux_sym_string_literal_token1] = ACTIONS(1293), + [sym_char_literal] = ACTIONS(1293), + [anon_sym_true] = ACTIONS(1295), + [anon_sym_false] = ACTIONS(1295), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1293), - [sym_super] = ACTIONS(1293), - [sym_crate] = ACTIONS(1293), - [sym_metavariable] = ACTIONS(1291), - [sym_raw_string_literal] = ACTIONS(1291), - [sym_float_literal] = ACTIONS(1291), + [sym_self] = ACTIONS(1295), + [sym_super] = ACTIONS(1295), + [sym_crate] = ACTIONS(1295), + [sym_metavariable] = ACTIONS(1293), + [sym_raw_string_literal] = ACTIONS(1293), + [sym_float_literal] = ACTIONS(1293), [sym_block_comment] = ACTIONS(3), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_identifier] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_macro_rules_BANG] = ACTIONS(1295), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_u8] = ACTIONS(1297), - [anon_sym_i8] = ACTIONS(1297), - [anon_sym_u16] = ACTIONS(1297), - [anon_sym_i16] = ACTIONS(1297), - [anon_sym_u32] = ACTIONS(1297), - [anon_sym_i32] = ACTIONS(1297), - [anon_sym_u64] = ACTIONS(1297), - [anon_sym_i64] = ACTIONS(1297), - [anon_sym_u128] = ACTIONS(1297), - [anon_sym_i128] = ACTIONS(1297), - [anon_sym_isize] = ACTIONS(1297), - [anon_sym_usize] = ACTIONS(1297), - [anon_sym_f32] = ACTIONS(1297), - [anon_sym_f64] = ACTIONS(1297), - [anon_sym_bool] = ACTIONS(1297), - [anon_sym_str] = ACTIONS(1297), - [anon_sym_char] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_async] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_impl] = ACTIONS(1297), - [anon_sym_let] = ACTIONS(1297), - [anon_sym_loop] = ACTIONS(1297), - [anon_sym_match] = ACTIONS(1297), - [anon_sym_mod] = ACTIONS(1297), - [anon_sym_pub] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_trait] = ACTIONS(1297), - [anon_sym_type] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_unsafe] = ACTIONS(1297), - [anon_sym_use] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_POUND] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(1295), - [anon_sym_COLON_COLON] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_DOT_DOT] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_move] = ACTIONS(1297), - [sym_integer_literal] = ACTIONS(1295), - [aux_sym_string_literal_token1] = ACTIONS(1295), - [sym_char_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(1297), - [anon_sym_false] = ACTIONS(1297), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_macro_rules_BANG] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_impl] = ACTIONS(1299), + [anon_sym_let] = ACTIONS(1299), + [anon_sym_loop] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_mod] = ACTIONS(1299), + [anon_sym_pub] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_trait] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_unsafe] = ACTIONS(1299), + [anon_sym_use] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1297), + [anon_sym_move] = ACTIONS(1299), + [sym_integer_literal] = ACTIONS(1297), + [aux_sym_string_literal_token1] = ACTIONS(1297), + [sym_char_literal] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_crate] = ACTIONS(1297), - [sym_metavariable] = ACTIONS(1295), - [sym_raw_string_literal] = ACTIONS(1295), - [sym_float_literal] = ACTIONS(1295), + [sym_self] = ACTIONS(1299), + [sym_super] = ACTIONS(1299), + [sym_crate] = ACTIONS(1299), + [sym_metavariable] = ACTIONS(1297), + [sym_raw_string_literal] = ACTIONS(1297), + [sym_float_literal] = ACTIONS(1297), [sym_block_comment] = ACTIONS(3), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_identifier] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_macro_rules_BANG] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_u8] = ACTIONS(1301), - [anon_sym_i8] = ACTIONS(1301), - [anon_sym_u16] = ACTIONS(1301), - [anon_sym_i16] = ACTIONS(1301), - [anon_sym_u32] = ACTIONS(1301), - [anon_sym_i32] = ACTIONS(1301), - [anon_sym_u64] = ACTIONS(1301), - [anon_sym_i64] = ACTIONS(1301), - [anon_sym_u128] = ACTIONS(1301), - [anon_sym_i128] = ACTIONS(1301), - [anon_sym_isize] = ACTIONS(1301), - [anon_sym_usize] = ACTIONS(1301), - [anon_sym_f32] = ACTIONS(1301), - [anon_sym_f64] = ACTIONS(1301), - [anon_sym_bool] = ACTIONS(1301), - [anon_sym_str] = ACTIONS(1301), - [anon_sym_char] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_async] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_fn] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_impl] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_loop] = ACTIONS(1301), - [anon_sym_match] = ACTIONS(1301), - [anon_sym_mod] = ACTIONS(1301), - [anon_sym_pub] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_trait] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [anon_sym_unsafe] = ACTIONS(1301), - [anon_sym_use] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_POUND] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1299), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1299), - [anon_sym_move] = ACTIONS(1301), - [sym_integer_literal] = ACTIONS(1299), - [aux_sym_string_literal_token1] = ACTIONS(1299), - [sym_char_literal] = ACTIONS(1299), - [anon_sym_true] = ACTIONS(1301), - [anon_sym_false] = ACTIONS(1301), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_macro_rules_BANG] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_u8] = ACTIONS(1303), + [anon_sym_i8] = ACTIONS(1303), + [anon_sym_u16] = ACTIONS(1303), + [anon_sym_i16] = ACTIONS(1303), + [anon_sym_u32] = ACTIONS(1303), + [anon_sym_i32] = ACTIONS(1303), + [anon_sym_u64] = ACTIONS(1303), + [anon_sym_i64] = ACTIONS(1303), + [anon_sym_u128] = ACTIONS(1303), + [anon_sym_i128] = ACTIONS(1303), + [anon_sym_isize] = ACTIONS(1303), + [anon_sym_usize] = ACTIONS(1303), + [anon_sym_f32] = ACTIONS(1303), + [anon_sym_f64] = ACTIONS(1303), + [anon_sym_bool] = ACTIONS(1303), + [anon_sym_str] = ACTIONS(1303), + [anon_sym_char] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1303), + [anon_sym_let] = ACTIONS(1303), + [anon_sym_loop] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_mod] = ACTIONS(1303), + [anon_sym_pub] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_trait] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1303), + [anon_sym_use] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(1301), + [anon_sym_COLON_COLON] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_move] = ACTIONS(1303), + [sym_integer_literal] = ACTIONS(1301), + [aux_sym_string_literal_token1] = ACTIONS(1301), + [sym_char_literal] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1301), - [sym_super] = ACTIONS(1301), - [sym_crate] = ACTIONS(1301), - [sym_metavariable] = ACTIONS(1299), - [sym_raw_string_literal] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1299), + [sym_self] = ACTIONS(1303), + [sym_super] = ACTIONS(1303), + [sym_crate] = ACTIONS(1303), + [sym_metavariable] = ACTIONS(1301), + [sym_raw_string_literal] = ACTIONS(1301), + [sym_float_literal] = ACTIONS(1301), [sym_block_comment] = ACTIONS(3), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_identifier] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_macro_rules_BANG] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_u8] = ACTIONS(1305), - [anon_sym_i8] = ACTIONS(1305), - [anon_sym_u16] = ACTIONS(1305), - [anon_sym_i16] = ACTIONS(1305), - [anon_sym_u32] = ACTIONS(1305), - [anon_sym_i32] = ACTIONS(1305), - [anon_sym_u64] = ACTIONS(1305), - [anon_sym_i64] = ACTIONS(1305), - [anon_sym_u128] = ACTIONS(1305), - [anon_sym_i128] = ACTIONS(1305), - [anon_sym_isize] = ACTIONS(1305), - [anon_sym_usize] = ACTIONS(1305), - [anon_sym_f32] = ACTIONS(1305), - [anon_sym_f64] = ACTIONS(1305), - [anon_sym_bool] = ACTIONS(1305), - [anon_sym_str] = ACTIONS(1305), - [anon_sym_char] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_async] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_fn] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_let] = ACTIONS(1305), - [anon_sym_loop] = ACTIONS(1305), - [anon_sym_match] = ACTIONS(1305), - [anon_sym_mod] = ACTIONS(1305), - [anon_sym_pub] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_trait] = ACTIONS(1305), - [anon_sym_type] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [anon_sym_unsafe] = ACTIONS(1305), - [anon_sym_use] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_POUND] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1303), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_move] = ACTIONS(1305), - [sym_integer_literal] = ACTIONS(1303), - [aux_sym_string_literal_token1] = ACTIONS(1303), - [sym_char_literal] = ACTIONS(1303), - [anon_sym_true] = ACTIONS(1305), - [anon_sym_false] = ACTIONS(1305), + [ts_builtin_sym_end] = ACTIONS(1305), + [sym_identifier] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_macro_rules_BANG] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_u8] = ACTIONS(1307), + [anon_sym_i8] = ACTIONS(1307), + [anon_sym_u16] = ACTIONS(1307), + [anon_sym_i16] = ACTIONS(1307), + [anon_sym_u32] = ACTIONS(1307), + [anon_sym_i32] = ACTIONS(1307), + [anon_sym_u64] = ACTIONS(1307), + [anon_sym_i64] = ACTIONS(1307), + [anon_sym_u128] = ACTIONS(1307), + [anon_sym_i128] = ACTIONS(1307), + [anon_sym_isize] = ACTIONS(1307), + [anon_sym_usize] = ACTIONS(1307), + [anon_sym_f32] = ACTIONS(1307), + [anon_sym_f64] = ACTIONS(1307), + [anon_sym_bool] = ACTIONS(1307), + [anon_sym_str] = ACTIONS(1307), + [anon_sym_char] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_mod] = ACTIONS(1307), + [anon_sym_pub] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_trait] = ACTIONS(1307), + [anon_sym_type] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_move] = ACTIONS(1307), + [sym_integer_literal] = ACTIONS(1305), + [aux_sym_string_literal_token1] = ACTIONS(1305), + [sym_char_literal] = ACTIONS(1305), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1305), - [sym_super] = ACTIONS(1305), - [sym_crate] = ACTIONS(1305), - [sym_metavariable] = ACTIONS(1303), - [sym_raw_string_literal] = ACTIONS(1303), - [sym_float_literal] = ACTIONS(1303), + [sym_self] = ACTIONS(1307), + [sym_super] = ACTIONS(1307), + [sym_crate] = ACTIONS(1307), + [sym_metavariable] = ACTIONS(1305), + [sym_raw_string_literal] = ACTIONS(1305), + [sym_float_literal] = ACTIONS(1305), [sym_block_comment] = ACTIONS(3), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(1307), - [sym_identifier] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_macro_rules_BANG] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_u8] = ACTIONS(1309), - [anon_sym_i8] = ACTIONS(1309), - [anon_sym_u16] = ACTIONS(1309), - [anon_sym_i16] = ACTIONS(1309), - [anon_sym_u32] = ACTIONS(1309), - [anon_sym_i32] = ACTIONS(1309), - [anon_sym_u64] = ACTIONS(1309), - [anon_sym_i64] = ACTIONS(1309), - [anon_sym_u128] = ACTIONS(1309), - [anon_sym_i128] = ACTIONS(1309), - [anon_sym_isize] = ACTIONS(1309), - [anon_sym_usize] = ACTIONS(1309), - [anon_sym_f32] = ACTIONS(1309), - [anon_sym_f64] = ACTIONS(1309), - [anon_sym_bool] = ACTIONS(1309), - [anon_sym_str] = ACTIONS(1309), - [anon_sym_char] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_async] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_impl] = ACTIONS(1309), - [anon_sym_let] = ACTIONS(1309), - [anon_sym_loop] = ACTIONS(1309), - [anon_sym_match] = ACTIONS(1309), - [anon_sym_mod] = ACTIONS(1309), - [anon_sym_pub] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_trait] = ACTIONS(1309), - [anon_sym_type] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_unsafe] = ACTIONS(1309), - [anon_sym_use] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym_LT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_DOT_DOT] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_move] = ACTIONS(1309), - [sym_integer_literal] = ACTIONS(1307), - [aux_sym_string_literal_token1] = ACTIONS(1307), - [sym_char_literal] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_macro_rules_BANG] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_u8] = ACTIONS(1311), + [anon_sym_i8] = ACTIONS(1311), + [anon_sym_u16] = ACTIONS(1311), + [anon_sym_i16] = ACTIONS(1311), + [anon_sym_u32] = ACTIONS(1311), + [anon_sym_i32] = ACTIONS(1311), + [anon_sym_u64] = ACTIONS(1311), + [anon_sym_i64] = ACTIONS(1311), + [anon_sym_u128] = ACTIONS(1311), + [anon_sym_i128] = ACTIONS(1311), + [anon_sym_isize] = ACTIONS(1311), + [anon_sym_usize] = ACTIONS(1311), + [anon_sym_f32] = ACTIONS(1311), + [anon_sym_f64] = ACTIONS(1311), + [anon_sym_bool] = ACTIONS(1311), + [anon_sym_str] = ACTIONS(1311), + [anon_sym_char] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_fn] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1311), + [anon_sym_let] = ACTIONS(1311), + [anon_sym_loop] = ACTIONS(1311), + [anon_sym_match] = ACTIONS(1311), + [anon_sym_mod] = ACTIONS(1311), + [anon_sym_pub] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_trait] = ACTIONS(1311), + [anon_sym_type] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1311), + [anon_sym_use] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1311), + [sym_integer_literal] = ACTIONS(1309), + [aux_sym_string_literal_token1] = ACTIONS(1309), + [sym_char_literal] = ACTIONS(1309), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1309), - [sym_crate] = ACTIONS(1309), - [sym_metavariable] = ACTIONS(1307), - [sym_raw_string_literal] = ACTIONS(1307), - [sym_float_literal] = ACTIONS(1307), + [sym_self] = ACTIONS(1311), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1309), + [sym_raw_string_literal] = ACTIONS(1309), + [sym_float_literal] = ACTIONS(1309), [sym_block_comment] = ACTIONS(3), }, [247] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym_macro_rules_BANG] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_u8] = ACTIONS(1313), - [anon_sym_i8] = ACTIONS(1313), - [anon_sym_u16] = ACTIONS(1313), - [anon_sym_i16] = ACTIONS(1313), - [anon_sym_u32] = ACTIONS(1313), - [anon_sym_i32] = ACTIONS(1313), - [anon_sym_u64] = ACTIONS(1313), - [anon_sym_i64] = ACTIONS(1313), - [anon_sym_u128] = ACTIONS(1313), - [anon_sym_i128] = ACTIONS(1313), - [anon_sym_isize] = ACTIONS(1313), - [anon_sym_usize] = ACTIONS(1313), - [anon_sym_f32] = ACTIONS(1313), - [anon_sym_f64] = ACTIONS(1313), - [anon_sym_bool] = ACTIONS(1313), - [anon_sym_str] = ACTIONS(1313), - [anon_sym_char] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_async] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_fn] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_impl] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_mod] = ACTIONS(1313), - [anon_sym_pub] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_trait] = ACTIONS(1313), - [anon_sym_type] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [anon_sym_unsafe] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1311), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PIPE] = ACTIONS(1311), - [anon_sym_move] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1311), - [aux_sym_string_literal_token1] = ACTIONS(1311), - [sym_char_literal] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_macro_rules_BANG] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_u8] = ACTIONS(1315), + [anon_sym_i8] = ACTIONS(1315), + [anon_sym_u16] = ACTIONS(1315), + [anon_sym_i16] = ACTIONS(1315), + [anon_sym_u32] = ACTIONS(1315), + [anon_sym_i32] = ACTIONS(1315), + [anon_sym_u64] = ACTIONS(1315), + [anon_sym_i64] = ACTIONS(1315), + [anon_sym_u128] = ACTIONS(1315), + [anon_sym_i128] = ACTIONS(1315), + [anon_sym_isize] = ACTIONS(1315), + [anon_sym_usize] = ACTIONS(1315), + [anon_sym_f32] = ACTIONS(1315), + [anon_sym_f64] = ACTIONS(1315), + [anon_sym_bool] = ACTIONS(1315), + [anon_sym_str] = ACTIONS(1315), + [anon_sym_char] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_fn] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_impl] = ACTIONS(1315), + [anon_sym_let] = ACTIONS(1315), + [anon_sym_loop] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_mod] = ACTIONS(1315), + [anon_sym_pub] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_trait] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_unsafe] = ACTIONS(1315), + [anon_sym_use] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1315), + [sym_integer_literal] = ACTIONS(1313), + [aux_sym_string_literal_token1] = ACTIONS(1313), + [sym_char_literal] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1313), - [sym_crate] = ACTIONS(1313), - [sym_metavariable] = ACTIONS(1311), - [sym_raw_string_literal] = ACTIONS(1311), - [sym_float_literal] = ACTIONS(1311), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1313), + [sym_raw_string_literal] = ACTIONS(1313), + [sym_float_literal] = ACTIONS(1313), [sym_block_comment] = ACTIONS(3), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [sym_identifier] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_macro_rules_BANG] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_u8] = ACTIONS(1317), - [anon_sym_i8] = ACTIONS(1317), - [anon_sym_u16] = ACTIONS(1317), - [anon_sym_i16] = ACTIONS(1317), - [anon_sym_u32] = ACTIONS(1317), - [anon_sym_i32] = ACTIONS(1317), - [anon_sym_u64] = ACTIONS(1317), - [anon_sym_i64] = ACTIONS(1317), - [anon_sym_u128] = ACTIONS(1317), - [anon_sym_i128] = ACTIONS(1317), - [anon_sym_isize] = ACTIONS(1317), - [anon_sym_usize] = ACTIONS(1317), - [anon_sym_f32] = ACTIONS(1317), - [anon_sym_f64] = ACTIONS(1317), - [anon_sym_bool] = ACTIONS(1317), - [anon_sym_str] = ACTIONS(1317), - [anon_sym_char] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_fn] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_impl] = ACTIONS(1317), - [anon_sym_let] = ACTIONS(1317), - [anon_sym_loop] = ACTIONS(1317), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_mod] = ACTIONS(1317), - [anon_sym_pub] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_trait] = ACTIONS(1317), - [anon_sym_type] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_use] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_POUND] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym_LT] = ACTIONS(1315), - [anon_sym_COLON_COLON] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_DOT_DOT] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_move] = ACTIONS(1317), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1315), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_macro_rules_BANG] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_u8] = ACTIONS(1319), + [anon_sym_i8] = ACTIONS(1319), + [anon_sym_u16] = ACTIONS(1319), + [anon_sym_i16] = ACTIONS(1319), + [anon_sym_u32] = ACTIONS(1319), + [anon_sym_i32] = ACTIONS(1319), + [anon_sym_u64] = ACTIONS(1319), + [anon_sym_i64] = ACTIONS(1319), + [anon_sym_u128] = ACTIONS(1319), + [anon_sym_i128] = ACTIONS(1319), + [anon_sym_isize] = ACTIONS(1319), + [anon_sym_usize] = ACTIONS(1319), + [anon_sym_f32] = ACTIONS(1319), + [anon_sym_f64] = ACTIONS(1319), + [anon_sym_bool] = ACTIONS(1319), + [anon_sym_str] = ACTIONS(1319), + [anon_sym_char] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_async] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_impl] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_mod] = ACTIONS(1319), + [anon_sym_pub] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_trait] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_unsafe] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_LT] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PIPE] = ACTIONS(1317), + [anon_sym_move] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1317), - [sym_super] = ACTIONS(1317), - [sym_crate] = ACTIONS(1317), - [sym_metavariable] = ACTIONS(1315), - [sym_raw_string_literal] = ACTIONS(1315), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(1319), + [sym_super] = ACTIONS(1319), + [sym_crate] = ACTIONS(1319), + [sym_metavariable] = ACTIONS(1317), + [sym_raw_string_literal] = ACTIONS(1317), + [sym_float_literal] = ACTIONS(1317), [sym_block_comment] = ACTIONS(3), }, [249] = { - [ts_builtin_sym_end] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_macro_rules_BANG] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_u8] = ACTIONS(1321), - [anon_sym_i8] = ACTIONS(1321), - [anon_sym_u16] = ACTIONS(1321), - [anon_sym_i16] = ACTIONS(1321), - [anon_sym_u32] = ACTIONS(1321), - [anon_sym_i32] = ACTIONS(1321), - [anon_sym_u64] = ACTIONS(1321), - [anon_sym_i64] = ACTIONS(1321), - [anon_sym_u128] = ACTIONS(1321), - [anon_sym_i128] = ACTIONS(1321), - [anon_sym_isize] = ACTIONS(1321), - [anon_sym_usize] = ACTIONS(1321), - [anon_sym_f32] = ACTIONS(1321), - [anon_sym_f64] = ACTIONS(1321), - [anon_sym_bool] = ACTIONS(1321), - [anon_sym_str] = ACTIONS(1321), - [anon_sym_char] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_async] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_impl] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), - [anon_sym_loop] = ACTIONS(1321), - [anon_sym_match] = ACTIONS(1321), - [anon_sym_mod] = ACTIONS(1321), - [anon_sym_pub] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_trait] = ACTIONS(1321), - [anon_sym_type] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_unsafe] = ACTIONS(1321), - [anon_sym_use] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_COLON_COLON] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_move] = ACTIONS(1321), - [sym_integer_literal] = ACTIONS(1319), - [aux_sym_string_literal_token1] = ACTIONS(1319), - [sym_char_literal] = ACTIONS(1319), - [anon_sym_true] = ACTIONS(1321), - [anon_sym_false] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_macro_rules_BANG] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_u8] = ACTIONS(1323), + [anon_sym_i8] = ACTIONS(1323), + [anon_sym_u16] = ACTIONS(1323), + [anon_sym_i16] = ACTIONS(1323), + [anon_sym_u32] = ACTIONS(1323), + [anon_sym_i32] = ACTIONS(1323), + [anon_sym_u64] = ACTIONS(1323), + [anon_sym_i64] = ACTIONS(1323), + [anon_sym_u128] = ACTIONS(1323), + [anon_sym_i128] = ACTIONS(1323), + [anon_sym_isize] = ACTIONS(1323), + [anon_sym_usize] = ACTIONS(1323), + [anon_sym_f32] = ACTIONS(1323), + [anon_sym_f64] = ACTIONS(1323), + [anon_sym_bool] = ACTIONS(1323), + [anon_sym_str] = ACTIONS(1323), + [anon_sym_char] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_fn] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_impl] = ACTIONS(1323), + [anon_sym_let] = ACTIONS(1323), + [anon_sym_loop] = ACTIONS(1323), + [anon_sym_match] = ACTIONS(1323), + [anon_sym_mod] = ACTIONS(1323), + [anon_sym_pub] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_trait] = ACTIONS(1323), + [anon_sym_type] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(1321), + [anon_sym_COLON_COLON] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1321), + [anon_sym_move] = ACTIONS(1323), + [sym_integer_literal] = ACTIONS(1321), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1321), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_crate] = ACTIONS(1321), - [sym_metavariable] = ACTIONS(1319), - [sym_raw_string_literal] = ACTIONS(1319), - [sym_float_literal] = ACTIONS(1319), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1321), + [sym_raw_string_literal] = ACTIONS(1321), + [sym_float_literal] = ACTIONS(1321), [sym_block_comment] = ACTIONS(3), }, [250] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_macro_rules_BANG] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_u8] = ACTIONS(1325), - [anon_sym_i8] = ACTIONS(1325), - [anon_sym_u16] = ACTIONS(1325), - [anon_sym_i16] = ACTIONS(1325), - [anon_sym_u32] = ACTIONS(1325), - [anon_sym_i32] = ACTIONS(1325), - [anon_sym_u64] = ACTIONS(1325), - [anon_sym_i64] = ACTIONS(1325), - [anon_sym_u128] = ACTIONS(1325), - [anon_sym_i128] = ACTIONS(1325), - [anon_sym_isize] = ACTIONS(1325), - [anon_sym_usize] = ACTIONS(1325), - [anon_sym_f32] = ACTIONS(1325), - [anon_sym_f64] = ACTIONS(1325), - [anon_sym_bool] = ACTIONS(1325), - [anon_sym_str] = ACTIONS(1325), - [anon_sym_char] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_async] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_fn] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_impl] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_mod] = ACTIONS(1325), - [anon_sym_pub] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_trait] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_unsafe] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1323), - [anon_sym_COLON_COLON] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PIPE] = ACTIONS(1323), - [anon_sym_move] = ACTIONS(1325), - [sym_integer_literal] = ACTIONS(1323), - [aux_sym_string_literal_token1] = ACTIONS(1323), - [sym_char_literal] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(1325), - [anon_sym_false] = ACTIONS(1325), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_macro_rules_BANG] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_u8] = ACTIONS(1327), + [anon_sym_i8] = ACTIONS(1327), + [anon_sym_u16] = ACTIONS(1327), + [anon_sym_i16] = ACTIONS(1327), + [anon_sym_u32] = ACTIONS(1327), + [anon_sym_i32] = ACTIONS(1327), + [anon_sym_u64] = ACTIONS(1327), + [anon_sym_i64] = ACTIONS(1327), + [anon_sym_u128] = ACTIONS(1327), + [anon_sym_i128] = ACTIONS(1327), + [anon_sym_isize] = ACTIONS(1327), + [anon_sym_usize] = ACTIONS(1327), + [anon_sym_f32] = ACTIONS(1327), + [anon_sym_f64] = ACTIONS(1327), + [anon_sym_bool] = ACTIONS(1327), + [anon_sym_str] = ACTIONS(1327), + [anon_sym_char] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_impl] = ACTIONS(1327), + [anon_sym_let] = ACTIONS(1327), + [anon_sym_loop] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_mod] = ACTIONS(1327), + [anon_sym_pub] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_trait] = ACTIONS(1327), + [anon_sym_type] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_unsafe] = ACTIONS(1327), + [anon_sym_use] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1325), + [anon_sym_COLON_COLON] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_move] = ACTIONS(1327), + [sym_integer_literal] = ACTIONS(1325), + [aux_sym_string_literal_token1] = ACTIONS(1325), + [sym_char_literal] = ACTIONS(1325), + [anon_sym_true] = ACTIONS(1327), + [anon_sym_false] = ACTIONS(1327), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1325), - [sym_super] = ACTIONS(1325), - [sym_crate] = ACTIONS(1325), - [sym_metavariable] = ACTIONS(1323), - [sym_raw_string_literal] = ACTIONS(1323), - [sym_float_literal] = ACTIONS(1323), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1325), + [sym_raw_string_literal] = ACTIONS(1325), + [sym_float_literal] = ACTIONS(1325), [sym_block_comment] = ACTIONS(3), }, [251] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_identifier] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_macro_rules_BANG] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_u8] = ACTIONS(1329), - [anon_sym_i8] = ACTIONS(1329), - [anon_sym_u16] = ACTIONS(1329), - [anon_sym_i16] = ACTIONS(1329), - [anon_sym_u32] = ACTIONS(1329), - [anon_sym_i32] = ACTIONS(1329), - [anon_sym_u64] = ACTIONS(1329), - [anon_sym_i64] = ACTIONS(1329), - [anon_sym_u128] = ACTIONS(1329), - [anon_sym_i128] = ACTIONS(1329), - [anon_sym_isize] = ACTIONS(1329), - [anon_sym_usize] = ACTIONS(1329), - [anon_sym_f32] = ACTIONS(1329), - [anon_sym_f64] = ACTIONS(1329), - [anon_sym_bool] = ACTIONS(1329), - [anon_sym_str] = ACTIONS(1329), - [anon_sym_char] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_fn] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_let] = ACTIONS(1329), - [anon_sym_loop] = ACTIONS(1329), - [anon_sym_match] = ACTIONS(1329), - [anon_sym_mod] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_trait] = ACTIONS(1329), - [anon_sym_type] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_unsafe] = ACTIONS(1329), - [anon_sym_use] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1327), - [anon_sym_COLON_COLON] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_DOT_DOT] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_move] = ACTIONS(1329), - [sym_integer_literal] = ACTIONS(1327), - [aux_sym_string_literal_token1] = ACTIONS(1327), - [sym_char_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_macro_rules_BANG] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1331), + [anon_sym_i8] = ACTIONS(1331), + [anon_sym_u16] = ACTIONS(1331), + [anon_sym_i16] = ACTIONS(1331), + [anon_sym_u32] = ACTIONS(1331), + [anon_sym_i32] = ACTIONS(1331), + [anon_sym_u64] = ACTIONS(1331), + [anon_sym_i64] = ACTIONS(1331), + [anon_sym_u128] = ACTIONS(1331), + [anon_sym_i128] = ACTIONS(1331), + [anon_sym_isize] = ACTIONS(1331), + [anon_sym_usize] = ACTIONS(1331), + [anon_sym_f32] = ACTIONS(1331), + [anon_sym_f64] = ACTIONS(1331), + [anon_sym_bool] = ACTIONS(1331), + [anon_sym_str] = ACTIONS(1331), + [anon_sym_char] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_fn] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_impl] = ACTIONS(1331), + [anon_sym_let] = ACTIONS(1331), + [anon_sym_loop] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_mod] = ACTIONS(1331), + [anon_sym_pub] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_trait] = ACTIONS(1331), + [anon_sym_type] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_unsafe] = ACTIONS(1331), + [anon_sym_use] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_POUND] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_move] = ACTIONS(1331), + [sym_integer_literal] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [sym_char_literal] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1329), - [sym_super] = ACTIONS(1329), - [sym_crate] = ACTIONS(1329), - [sym_metavariable] = ACTIONS(1327), - [sym_raw_string_literal] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1327), + [sym_self] = ACTIONS(1331), + [sym_super] = ACTIONS(1331), + [sym_crate] = ACTIONS(1331), + [sym_metavariable] = ACTIONS(1329), + [sym_raw_string_literal] = ACTIONS(1329), + [sym_float_literal] = ACTIONS(1329), [sym_block_comment] = ACTIONS(3), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(1331), - [sym_identifier] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_macro_rules_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_u8] = ACTIONS(1333), - [anon_sym_i8] = ACTIONS(1333), - [anon_sym_u16] = ACTIONS(1333), - [anon_sym_i16] = ACTIONS(1333), - [anon_sym_u32] = ACTIONS(1333), - [anon_sym_i32] = ACTIONS(1333), - [anon_sym_u64] = ACTIONS(1333), - [anon_sym_i64] = ACTIONS(1333), - [anon_sym_u128] = ACTIONS(1333), - [anon_sym_i128] = ACTIONS(1333), - [anon_sym_isize] = ACTIONS(1333), - [anon_sym_usize] = ACTIONS(1333), - [anon_sym_f32] = ACTIONS(1333), - [anon_sym_f64] = ACTIONS(1333), - [anon_sym_bool] = ACTIONS(1333), - [anon_sym_str] = ACTIONS(1333), - [anon_sym_char] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_async] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_fn] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_impl] = ACTIONS(1333), - [anon_sym_let] = ACTIONS(1333), - [anon_sym_loop] = ACTIONS(1333), - [anon_sym_match] = ACTIONS(1333), - [anon_sym_mod] = ACTIONS(1333), - [anon_sym_pub] = ACTIONS(1333), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_trait] = ACTIONS(1333), - [anon_sym_type] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [anon_sym_unsafe] = ACTIONS(1333), - [anon_sym_use] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_COLON_COLON] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_move] = ACTIONS(1333), - [sym_integer_literal] = ACTIONS(1331), - [aux_sym_string_literal_token1] = ACTIONS(1331), - [sym_char_literal] = ACTIONS(1331), - [anon_sym_true] = ACTIONS(1333), - [anon_sym_false] = ACTIONS(1333), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_macro_rules_BANG] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_let] = ACTIONS(1335), + [anon_sym_loop] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_mod] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_trait] = ACTIONS(1335), + [anon_sym_type] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1335), + [anon_sym_use] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_move] = ACTIONS(1335), + [sym_integer_literal] = ACTIONS(1333), + [aux_sym_string_literal_token1] = ACTIONS(1333), + [sym_char_literal] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1333), - [sym_super] = ACTIONS(1333), - [sym_crate] = ACTIONS(1333), - [sym_metavariable] = ACTIONS(1331), - [sym_raw_string_literal] = ACTIONS(1331), - [sym_float_literal] = ACTIONS(1331), + [sym_self] = ACTIONS(1335), + [sym_super] = ACTIONS(1335), + [sym_crate] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym_raw_string_literal] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), [sym_block_comment] = ACTIONS(3), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_macro_rules_BANG] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_u8] = ACTIONS(1337), - [anon_sym_i8] = ACTIONS(1337), - [anon_sym_u16] = ACTIONS(1337), - [anon_sym_i16] = ACTIONS(1337), - [anon_sym_u32] = ACTIONS(1337), - [anon_sym_i32] = ACTIONS(1337), - [anon_sym_u64] = ACTIONS(1337), - [anon_sym_i64] = ACTIONS(1337), - [anon_sym_u128] = ACTIONS(1337), - [anon_sym_i128] = ACTIONS(1337), - [anon_sym_isize] = ACTIONS(1337), - [anon_sym_usize] = ACTIONS(1337), - [anon_sym_f32] = ACTIONS(1337), - [anon_sym_f64] = ACTIONS(1337), - [anon_sym_bool] = ACTIONS(1337), - [anon_sym_str] = ACTIONS(1337), - [anon_sym_char] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_fn] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_impl] = ACTIONS(1337), - [anon_sym_let] = ACTIONS(1337), - [anon_sym_loop] = ACTIONS(1337), - [anon_sym_match] = ACTIONS(1337), - [anon_sym_mod] = ACTIONS(1337), - [anon_sym_pub] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_trait] = ACTIONS(1337), - [anon_sym_type] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_unsafe] = ACTIONS(1337), - [anon_sym_use] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_COLON_COLON] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_move] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1335), - [aux_sym_string_literal_token1] = ACTIONS(1335), - [sym_char_literal] = ACTIONS(1335), - [anon_sym_true] = ACTIONS(1337), - [anon_sym_false] = ACTIONS(1337), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_macro_rules_BANG] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_u8] = ACTIONS(1339), + [anon_sym_i8] = ACTIONS(1339), + [anon_sym_u16] = ACTIONS(1339), + [anon_sym_i16] = ACTIONS(1339), + [anon_sym_u32] = ACTIONS(1339), + [anon_sym_i32] = ACTIONS(1339), + [anon_sym_u64] = ACTIONS(1339), + [anon_sym_i64] = ACTIONS(1339), + [anon_sym_u128] = ACTIONS(1339), + [anon_sym_i128] = ACTIONS(1339), + [anon_sym_isize] = ACTIONS(1339), + [anon_sym_usize] = ACTIONS(1339), + [anon_sym_f32] = ACTIONS(1339), + [anon_sym_f64] = ACTIONS(1339), + [anon_sym_bool] = ACTIONS(1339), + [anon_sym_str] = ACTIONS(1339), + [anon_sym_char] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_async] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_fn] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1339), + [anon_sym_let] = ACTIONS(1339), + [anon_sym_loop] = ACTIONS(1339), + [anon_sym_match] = ACTIONS(1339), + [anon_sym_mod] = ACTIONS(1339), + [anon_sym_pub] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_trait] = ACTIONS(1339), + [anon_sym_type] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1339), + [anon_sym_use] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_POUND] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1337), + [anon_sym_move] = ACTIONS(1339), + [sym_integer_literal] = ACTIONS(1337), + [aux_sym_string_literal_token1] = ACTIONS(1337), + [sym_char_literal] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1339), + [anon_sym_false] = ACTIONS(1339), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1337), - [sym_super] = ACTIONS(1337), - [sym_crate] = ACTIONS(1337), - [sym_metavariable] = ACTIONS(1335), - [sym_raw_string_literal] = ACTIONS(1335), - [sym_float_literal] = ACTIONS(1335), + [sym_self] = ACTIONS(1339), + [sym_super] = ACTIONS(1339), + [sym_crate] = ACTIONS(1339), + [sym_metavariable] = ACTIONS(1337), + [sym_raw_string_literal] = ACTIONS(1337), + [sym_float_literal] = ACTIONS(1337), [sym_block_comment] = ACTIONS(3), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_macro_rules_BANG] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_u8] = ACTIONS(1341), - [anon_sym_i8] = ACTIONS(1341), - [anon_sym_u16] = ACTIONS(1341), - [anon_sym_i16] = ACTIONS(1341), - [anon_sym_u32] = ACTIONS(1341), - [anon_sym_i32] = ACTIONS(1341), - [anon_sym_u64] = ACTIONS(1341), - [anon_sym_i64] = ACTIONS(1341), - [anon_sym_u128] = ACTIONS(1341), - [anon_sym_i128] = ACTIONS(1341), - [anon_sym_isize] = ACTIONS(1341), - [anon_sym_usize] = ACTIONS(1341), - [anon_sym_f32] = ACTIONS(1341), - [anon_sym_f64] = ACTIONS(1341), - [anon_sym_bool] = ACTIONS(1341), - [anon_sym_str] = ACTIONS(1341), - [anon_sym_char] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_async] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_fn] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1341), - [anon_sym_let] = ACTIONS(1341), - [anon_sym_loop] = ACTIONS(1341), - [anon_sym_match] = ACTIONS(1341), - [anon_sym_mod] = ACTIONS(1341), - [anon_sym_pub] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_trait] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1341), - [anon_sym_use] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_POUND] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_COLON_COLON] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_DOT_DOT] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PIPE] = ACTIONS(1339), - [anon_sym_move] = ACTIONS(1341), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1339), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1341), - [anon_sym_false] = ACTIONS(1341), + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_macro_rules_BANG] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_async] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_impl] = ACTIONS(1343), + [anon_sym_let] = ACTIONS(1343), + [anon_sym_loop] = ACTIONS(1343), + [anon_sym_match] = ACTIONS(1343), + [anon_sym_mod] = ACTIONS(1343), + [anon_sym_pub] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_trait] = ACTIONS(1343), + [anon_sym_type] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_unsafe] = ACTIONS(1343), + [anon_sym_use] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_move] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1341), + [sym_char_literal] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_crate] = ACTIONS(1341), - [sym_metavariable] = ACTIONS(1339), - [sym_raw_string_literal] = ACTIONS(1339), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1343), + [sym_crate] = ACTIONS(1343), + [sym_metavariable] = ACTIONS(1341), + [sym_raw_string_literal] = ACTIONS(1341), + [sym_float_literal] = ACTIONS(1341), [sym_block_comment] = ACTIONS(3), }, [255] = { - [ts_builtin_sym_end] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_macro_rules_BANG] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_u8] = ACTIONS(1345), - [anon_sym_i8] = ACTIONS(1345), - [anon_sym_u16] = ACTIONS(1345), - [anon_sym_i16] = ACTIONS(1345), - [anon_sym_u32] = ACTIONS(1345), - [anon_sym_i32] = ACTIONS(1345), - [anon_sym_u64] = ACTIONS(1345), - [anon_sym_i64] = ACTIONS(1345), - [anon_sym_u128] = ACTIONS(1345), - [anon_sym_i128] = ACTIONS(1345), - [anon_sym_isize] = ACTIONS(1345), - [anon_sym_usize] = ACTIONS(1345), - [anon_sym_f32] = ACTIONS(1345), - [anon_sym_f64] = ACTIONS(1345), - [anon_sym_bool] = ACTIONS(1345), - [anon_sym_str] = ACTIONS(1345), - [anon_sym_char] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_impl] = ACTIONS(1345), - [anon_sym_let] = ACTIONS(1345), - [anon_sym_loop] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_mod] = ACTIONS(1345), - [anon_sym_pub] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_trait] = ACTIONS(1345), - [anon_sym_type] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_unsafe] = ACTIONS(1345), - [anon_sym_use] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_POUND] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_DOT_DOT] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PIPE] = ACTIONS(1343), - [anon_sym_move] = ACTIONS(1345), - [sym_integer_literal] = ACTIONS(1343), - [aux_sym_string_literal_token1] = ACTIONS(1343), - [sym_char_literal] = ACTIONS(1343), - [anon_sym_true] = ACTIONS(1345), - [anon_sym_false] = ACTIONS(1345), + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_macro_rules_BANG] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_u8] = ACTIONS(1347), + [anon_sym_i8] = ACTIONS(1347), + [anon_sym_u16] = ACTIONS(1347), + [anon_sym_i16] = ACTIONS(1347), + [anon_sym_u32] = ACTIONS(1347), + [anon_sym_i32] = ACTIONS(1347), + [anon_sym_u64] = ACTIONS(1347), + [anon_sym_i64] = ACTIONS(1347), + [anon_sym_u128] = ACTIONS(1347), + [anon_sym_i128] = ACTIONS(1347), + [anon_sym_isize] = ACTIONS(1347), + [anon_sym_usize] = ACTIONS(1347), + [anon_sym_f32] = ACTIONS(1347), + [anon_sym_f64] = ACTIONS(1347), + [anon_sym_bool] = ACTIONS(1347), + [anon_sym_str] = ACTIONS(1347), + [anon_sym_char] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_async] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_fn] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1347), + [anon_sym_let] = ACTIONS(1347), + [anon_sym_loop] = ACTIONS(1347), + [anon_sym_match] = ACTIONS(1347), + [anon_sym_mod] = ACTIONS(1347), + [anon_sym_pub] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_trait] = ACTIONS(1347), + [anon_sym_type] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1347), + [anon_sym_use] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_COLON_COLON] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_move] = ACTIONS(1347), + [sym_integer_literal] = ACTIONS(1345), + [aux_sym_string_literal_token1] = ACTIONS(1345), + [sym_char_literal] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1343), - [sym_raw_string_literal] = ACTIONS(1343), - [sym_float_literal] = ACTIONS(1343), + [sym_self] = ACTIONS(1347), + [sym_super] = ACTIONS(1347), + [sym_crate] = ACTIONS(1347), + [sym_metavariable] = ACTIONS(1345), + [sym_raw_string_literal] = ACTIONS(1345), + [sym_float_literal] = ACTIONS(1345), [sym_block_comment] = ACTIONS(3), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_identifier] = ACTIONS(1349), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_macro_rules_BANG] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_u8] = ACTIONS(1349), - [anon_sym_i8] = ACTIONS(1349), - [anon_sym_u16] = ACTIONS(1349), - [anon_sym_i16] = ACTIONS(1349), - [anon_sym_u32] = ACTIONS(1349), - [anon_sym_i32] = ACTIONS(1349), - [anon_sym_u64] = ACTIONS(1349), - [anon_sym_i64] = ACTIONS(1349), - [anon_sym_u128] = ACTIONS(1349), - [anon_sym_i128] = ACTIONS(1349), - [anon_sym_isize] = ACTIONS(1349), - [anon_sym_usize] = ACTIONS(1349), - [anon_sym_f32] = ACTIONS(1349), - [anon_sym_f64] = ACTIONS(1349), - [anon_sym_bool] = ACTIONS(1349), - [anon_sym_str] = ACTIONS(1349), - [anon_sym_char] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(1349), - [anon_sym_async] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_fn] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_impl] = ACTIONS(1349), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_loop] = ACTIONS(1349), - [anon_sym_match] = ACTIONS(1349), - [anon_sym_mod] = ACTIONS(1349), - [anon_sym_pub] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_trait] = ACTIONS(1349), - [anon_sym_type] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_unsafe] = ACTIONS(1349), - [anon_sym_use] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_move] = ACTIONS(1349), - [sym_integer_literal] = ACTIONS(1347), - [aux_sym_string_literal_token1] = ACTIONS(1347), - [sym_char_literal] = ACTIONS(1347), - [anon_sym_true] = ACTIONS(1349), - [anon_sym_false] = ACTIONS(1349), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_macro_rules_BANG] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_u8] = ACTIONS(1351), + [anon_sym_i8] = ACTIONS(1351), + [anon_sym_u16] = ACTIONS(1351), + [anon_sym_i16] = ACTIONS(1351), + [anon_sym_u32] = ACTIONS(1351), + [anon_sym_i32] = ACTIONS(1351), + [anon_sym_u64] = ACTIONS(1351), + [anon_sym_i64] = ACTIONS(1351), + [anon_sym_u128] = ACTIONS(1351), + [anon_sym_i128] = ACTIONS(1351), + [anon_sym_isize] = ACTIONS(1351), + [anon_sym_usize] = ACTIONS(1351), + [anon_sym_f32] = ACTIONS(1351), + [anon_sym_f64] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_str] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_impl] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_loop] = ACTIONS(1351), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_mod] = ACTIONS(1351), + [anon_sym_pub] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_trait] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_unsafe] = ACTIONS(1351), + [anon_sym_use] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_move] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1349), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1349), - [sym_super] = ACTIONS(1349), - [sym_crate] = ACTIONS(1349), - [sym_metavariable] = ACTIONS(1347), - [sym_raw_string_literal] = ACTIONS(1347), - [sym_float_literal] = ACTIONS(1347), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1349), + [sym_raw_string_literal] = ACTIONS(1349), + [sym_float_literal] = ACTIONS(1349), [sym_block_comment] = ACTIONS(3), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(1351), - [sym_identifier] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_macro_rules_BANG] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_u8] = ACTIONS(1353), - [anon_sym_i8] = ACTIONS(1353), - [anon_sym_u16] = ACTIONS(1353), - [anon_sym_i16] = ACTIONS(1353), - [anon_sym_u32] = ACTIONS(1353), - [anon_sym_i32] = ACTIONS(1353), - [anon_sym_u64] = ACTIONS(1353), - [anon_sym_i64] = ACTIONS(1353), - [anon_sym_u128] = ACTIONS(1353), - [anon_sym_i128] = ACTIONS(1353), - [anon_sym_isize] = ACTIONS(1353), - [anon_sym_usize] = ACTIONS(1353), - [anon_sym_f32] = ACTIONS(1353), - [anon_sym_f64] = ACTIONS(1353), - [anon_sym_bool] = ACTIONS(1353), - [anon_sym_str] = ACTIONS(1353), - [anon_sym_char] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1353), - [anon_sym_async] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_fn] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_impl] = ACTIONS(1353), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_loop] = ACTIONS(1353), - [anon_sym_match] = ACTIONS(1353), - [anon_sym_mod] = ACTIONS(1353), - [anon_sym_pub] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_trait] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_unsafe] = ACTIONS(1353), - [anon_sym_use] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_POUND] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_LT] = ACTIONS(1351), - [anon_sym_COLON_COLON] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_move] = ACTIONS(1353), - [sym_integer_literal] = ACTIONS(1351), - [aux_sym_string_literal_token1] = ACTIONS(1351), - [sym_char_literal] = ACTIONS(1351), - [anon_sym_true] = ACTIONS(1353), - [anon_sym_false] = ACTIONS(1353), + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_macro_rules_BANG] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_u8] = ACTIONS(1355), + [anon_sym_i8] = ACTIONS(1355), + [anon_sym_u16] = ACTIONS(1355), + [anon_sym_i16] = ACTIONS(1355), + [anon_sym_u32] = ACTIONS(1355), + [anon_sym_i32] = ACTIONS(1355), + [anon_sym_u64] = ACTIONS(1355), + [anon_sym_i64] = ACTIONS(1355), + [anon_sym_u128] = ACTIONS(1355), + [anon_sym_i128] = ACTIONS(1355), + [anon_sym_isize] = ACTIONS(1355), + [anon_sym_usize] = ACTIONS(1355), + [anon_sym_f32] = ACTIONS(1355), + [anon_sym_f64] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_str] = ACTIONS(1355), + [anon_sym_char] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_async] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_fn] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1355), + [anon_sym_let] = ACTIONS(1355), + [anon_sym_loop] = ACTIONS(1355), + [anon_sym_match] = ACTIONS(1355), + [anon_sym_mod] = ACTIONS(1355), + [anon_sym_pub] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_trait] = ACTIONS(1355), + [anon_sym_type] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1355), + [anon_sym_use] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_POUND] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_COLON_COLON] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1353), + [anon_sym_move] = ACTIONS(1355), + [sym_integer_literal] = ACTIONS(1353), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1353), - [sym_super] = ACTIONS(1353), - [sym_crate] = ACTIONS(1353), - [sym_metavariable] = ACTIONS(1351), - [sym_raw_string_literal] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1351), + [sym_self] = ACTIONS(1355), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1353), + [sym_raw_string_literal] = ACTIONS(1353), + [sym_float_literal] = ACTIONS(1353), [sym_block_comment] = ACTIONS(3), }, [258] = { - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_macro_rules_BANG] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_u8] = ACTIONS(1357), - [anon_sym_i8] = ACTIONS(1357), - [anon_sym_u16] = ACTIONS(1357), - [anon_sym_i16] = ACTIONS(1357), - [anon_sym_u32] = ACTIONS(1357), - [anon_sym_i32] = ACTIONS(1357), - [anon_sym_u64] = ACTIONS(1357), - [anon_sym_i64] = ACTIONS(1357), - [anon_sym_u128] = ACTIONS(1357), - [anon_sym_i128] = ACTIONS(1357), - [anon_sym_isize] = ACTIONS(1357), - [anon_sym_usize] = ACTIONS(1357), - [anon_sym_f32] = ACTIONS(1357), - [anon_sym_f64] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_str] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_impl] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(1357), - [anon_sym_loop] = ACTIONS(1357), - [anon_sym_match] = ACTIONS(1357), - [anon_sym_mod] = ACTIONS(1357), - [anon_sym_pub] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_trait] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_unsafe] = ACTIONS(1357), - [anon_sym_use] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PIPE] = ACTIONS(1355), - [anon_sym_move] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1355), - [aux_sym_string_literal_token1] = ACTIONS(1355), - [sym_char_literal] = ACTIONS(1355), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), + [ts_builtin_sym_end] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_macro_rules_BANG] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_u8] = ACTIONS(1359), + [anon_sym_i8] = ACTIONS(1359), + [anon_sym_u16] = ACTIONS(1359), + [anon_sym_i16] = ACTIONS(1359), + [anon_sym_u32] = ACTIONS(1359), + [anon_sym_i32] = ACTIONS(1359), + [anon_sym_u64] = ACTIONS(1359), + [anon_sym_i64] = ACTIONS(1359), + [anon_sym_u128] = ACTIONS(1359), + [anon_sym_i128] = ACTIONS(1359), + [anon_sym_isize] = ACTIONS(1359), + [anon_sym_usize] = ACTIONS(1359), + [anon_sym_f32] = ACTIONS(1359), + [anon_sym_f64] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_str] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_async] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_default] = ACTIONS(1359), + [anon_sym_enum] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_impl] = ACTIONS(1359), + [anon_sym_let] = ACTIONS(1359), + [anon_sym_loop] = ACTIONS(1359), + [anon_sym_match] = ACTIONS(1359), + [anon_sym_mod] = ACTIONS(1359), + [anon_sym_pub] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_struct] = ACTIONS(1359), + [anon_sym_trait] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_union] = ACTIONS(1359), + [anon_sym_unsafe] = ACTIONS(1359), + [anon_sym_use] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_POUND] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1359), + [anon_sym_LT] = ACTIONS(1357), + [anon_sym_COLON_COLON] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1357), + [anon_sym_move] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1357), + [aux_sym_string_literal_token1] = ACTIONS(1357), + [sym_char_literal] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_crate] = ACTIONS(1357), - [sym_metavariable] = ACTIONS(1355), - [sym_raw_string_literal] = ACTIONS(1355), - [sym_float_literal] = ACTIONS(1355), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1357), + [sym_raw_string_literal] = ACTIONS(1357), + [sym_float_literal] = ACTIONS(1357), [sym_block_comment] = ACTIONS(3), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_identifier] = ACTIONS(1361), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_macro_rules_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1361), - [anon_sym_i8] = ACTIONS(1361), - [anon_sym_u16] = ACTIONS(1361), - [anon_sym_i16] = ACTIONS(1361), - [anon_sym_u32] = ACTIONS(1361), - [anon_sym_i32] = ACTIONS(1361), - [anon_sym_u64] = ACTIONS(1361), - [anon_sym_i64] = ACTIONS(1361), - [anon_sym_u128] = ACTIONS(1361), - [anon_sym_i128] = ACTIONS(1361), - [anon_sym_isize] = ACTIONS(1361), - [anon_sym_usize] = ACTIONS(1361), - [anon_sym_f32] = ACTIONS(1361), - [anon_sym_f64] = ACTIONS(1361), - [anon_sym_bool] = ACTIONS(1361), - [anon_sym_str] = ACTIONS(1361), - [anon_sym_char] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1361), - [anon_sym_async] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_fn] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_impl] = ACTIONS(1361), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_loop] = ACTIONS(1361), - [anon_sym_match] = ACTIONS(1361), - [anon_sym_mod] = ACTIONS(1361), - [anon_sym_pub] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_trait] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_unsafe] = ACTIONS(1361), - [anon_sym_use] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym_LT] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_DOT_DOT] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_PIPE] = ACTIONS(1359), - [anon_sym_move] = ACTIONS(1361), - [sym_integer_literal] = ACTIONS(1359), - [aux_sym_string_literal_token1] = ACTIONS(1359), - [sym_char_literal] = ACTIONS(1359), - [anon_sym_true] = ACTIONS(1361), - [anon_sym_false] = ACTIONS(1361), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_macro_rules_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_u8] = ACTIONS(1363), + [anon_sym_i8] = ACTIONS(1363), + [anon_sym_u16] = ACTIONS(1363), + [anon_sym_i16] = ACTIONS(1363), + [anon_sym_u32] = ACTIONS(1363), + [anon_sym_i32] = ACTIONS(1363), + [anon_sym_u64] = ACTIONS(1363), + [anon_sym_i64] = ACTIONS(1363), + [anon_sym_u128] = ACTIONS(1363), + [anon_sym_i128] = ACTIONS(1363), + [anon_sym_isize] = ACTIONS(1363), + [anon_sym_usize] = ACTIONS(1363), + [anon_sym_f32] = ACTIONS(1363), + [anon_sym_f64] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_str] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_async] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_default] = ACTIONS(1363), + [anon_sym_enum] = ACTIONS(1363), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_impl] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_mod] = ACTIONS(1363), + [anon_sym_pub] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_struct] = ACTIONS(1363), + [anon_sym_trait] = ACTIONS(1363), + [anon_sym_type] = ACTIONS(1363), + [anon_sym_union] = ACTIONS(1363), + [anon_sym_unsafe] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(1361), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(1361), + [anon_sym_COLON_COLON] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(1361), + [anon_sym_move] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1361), + [aux_sym_string_literal_token1] = ACTIONS(1361), + [sym_char_literal] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1361), - [sym_super] = ACTIONS(1361), - [sym_crate] = ACTIONS(1361), - [sym_metavariable] = ACTIONS(1359), - [sym_raw_string_literal] = ACTIONS(1359), - [sym_float_literal] = ACTIONS(1359), + [sym_self] = ACTIONS(1363), + [sym_super] = ACTIONS(1363), + [sym_crate] = ACTIONS(1363), + [sym_metavariable] = ACTIONS(1361), + [sym_raw_string_literal] = ACTIONS(1361), + [sym_float_literal] = ACTIONS(1361), [sym_block_comment] = ACTIONS(3), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_macro_rules_BANG] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_u8] = ACTIONS(1365), - [anon_sym_i8] = ACTIONS(1365), - [anon_sym_u16] = ACTIONS(1365), - [anon_sym_i16] = ACTIONS(1365), - [anon_sym_u32] = ACTIONS(1365), - [anon_sym_i32] = ACTIONS(1365), - [anon_sym_u64] = ACTIONS(1365), - [anon_sym_i64] = ACTIONS(1365), - [anon_sym_u128] = ACTIONS(1365), - [anon_sym_i128] = ACTIONS(1365), - [anon_sym_isize] = ACTIONS(1365), - [anon_sym_usize] = ACTIONS(1365), - [anon_sym_f32] = ACTIONS(1365), - [anon_sym_f64] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_str] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_impl] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1365), - [anon_sym_loop] = ACTIONS(1365), - [anon_sym_match] = ACTIONS(1365), - [anon_sym_mod] = ACTIONS(1365), - [anon_sym_pub] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_trait] = ACTIONS(1365), - [anon_sym_type] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_unsafe] = ACTIONS(1365), - [anon_sym_use] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_POUND] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_COLON_COLON] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_move] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1363), - [aux_sym_string_literal_token1] = ACTIONS(1363), - [sym_char_literal] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_identifier] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_macro_rules_BANG] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_async] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_default] = ACTIONS(1367), + [anon_sym_enum] = ACTIONS(1367), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_impl] = ACTIONS(1367), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_loop] = ACTIONS(1367), + [anon_sym_match] = ACTIONS(1367), + [anon_sym_mod] = ACTIONS(1367), + [anon_sym_pub] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_struct] = ACTIONS(1367), + [anon_sym_trait] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_union] = ACTIONS(1367), + [anon_sym_unsafe] = ACTIONS(1367), + [anon_sym_use] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_COLON_COLON] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_move] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1365), + [aux_sym_string_literal_token1] = ACTIONS(1365), + [sym_char_literal] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1365), - [sym_super] = ACTIONS(1365), - [sym_crate] = ACTIONS(1365), - [sym_metavariable] = ACTIONS(1363), - [sym_raw_string_literal] = ACTIONS(1363), - [sym_float_literal] = ACTIONS(1363), + [sym_self] = ACTIONS(1367), + [sym_super] = ACTIONS(1367), + [sym_crate] = ACTIONS(1367), + [sym_metavariable] = ACTIONS(1365), + [sym_raw_string_literal] = ACTIONS(1365), + [sym_float_literal] = ACTIONS(1365), [sym_block_comment] = ACTIONS(3), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_macro_rules_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u128] = ACTIONS(1369), - [anon_sym_i128] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_str] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_async] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [anon_sym_fn] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_impl] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_pub] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_trait] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [anon_sym_unsafe] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_POUND] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_move] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [aux_sym_string_literal_token1] = ACTIONS(1367), - [sym_char_literal] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), + [ts_builtin_sym_end] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_macro_rules_BANG] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_u8] = ACTIONS(1371), + [anon_sym_i8] = ACTIONS(1371), + [anon_sym_u16] = ACTIONS(1371), + [anon_sym_i16] = ACTIONS(1371), + [anon_sym_u32] = ACTIONS(1371), + [anon_sym_i32] = ACTIONS(1371), + [anon_sym_u64] = ACTIONS(1371), + [anon_sym_i64] = ACTIONS(1371), + [anon_sym_u128] = ACTIONS(1371), + [anon_sym_i128] = ACTIONS(1371), + [anon_sym_isize] = ACTIONS(1371), + [anon_sym_usize] = ACTIONS(1371), + [anon_sym_f32] = ACTIONS(1371), + [anon_sym_f64] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_str] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_fn] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_impl] = ACTIONS(1371), + [anon_sym_let] = ACTIONS(1371), + [anon_sym_loop] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mod] = ACTIONS(1371), + [anon_sym_pub] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1371), + [anon_sym_trait] = ACTIONS(1371), + [anon_sym_type] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [anon_sym_unsafe] = ACTIONS(1371), + [anon_sym_use] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_extern] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_move] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [aux_sym_string_literal_token1] = ACTIONS(1369), + [sym_char_literal] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1369), - [sym_super] = ACTIONS(1369), - [sym_crate] = ACTIONS(1369), - [sym_metavariable] = ACTIONS(1367), - [sym_raw_string_literal] = ACTIONS(1367), - [sym_float_literal] = ACTIONS(1367), + [sym_self] = ACTIONS(1371), + [sym_super] = ACTIONS(1371), + [sym_crate] = ACTIONS(1371), + [sym_metavariable] = ACTIONS(1369), + [sym_raw_string_literal] = ACTIONS(1369), + [sym_float_literal] = ACTIONS(1369), [sym_block_comment] = ACTIONS(3), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(1371), - [sym_identifier] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_macro_rules_BANG] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1373), - [anon_sym_i8] = ACTIONS(1373), - [anon_sym_u16] = ACTIONS(1373), - [anon_sym_i16] = ACTIONS(1373), - [anon_sym_u32] = ACTIONS(1373), - [anon_sym_i32] = ACTIONS(1373), - [anon_sym_u64] = ACTIONS(1373), - [anon_sym_i64] = ACTIONS(1373), - [anon_sym_u128] = ACTIONS(1373), - [anon_sym_i128] = ACTIONS(1373), - [anon_sym_isize] = ACTIONS(1373), - [anon_sym_usize] = ACTIONS(1373), - [anon_sym_f32] = ACTIONS(1373), - [anon_sym_f64] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_str] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_impl] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_loop] = ACTIONS(1373), - [anon_sym_match] = ACTIONS(1373), - [anon_sym_mod] = ACTIONS(1373), - [anon_sym_pub] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_trait] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_unsafe] = ACTIONS(1373), - [anon_sym_use] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_POUND] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_COLON_COLON] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1371), - [anon_sym_move] = ACTIONS(1373), - [sym_integer_literal] = ACTIONS(1371), - [aux_sym_string_literal_token1] = ACTIONS(1371), - [sym_char_literal] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_macro_rules_BANG] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_u8] = ACTIONS(1375), + [anon_sym_i8] = ACTIONS(1375), + [anon_sym_u16] = ACTIONS(1375), + [anon_sym_i16] = ACTIONS(1375), + [anon_sym_u32] = ACTIONS(1375), + [anon_sym_i32] = ACTIONS(1375), + [anon_sym_u64] = ACTIONS(1375), + [anon_sym_i64] = ACTIONS(1375), + [anon_sym_u128] = ACTIONS(1375), + [anon_sym_i128] = ACTIONS(1375), + [anon_sym_isize] = ACTIONS(1375), + [anon_sym_usize] = ACTIONS(1375), + [anon_sym_f32] = ACTIONS(1375), + [anon_sym_f64] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_str] = ACTIONS(1375), + [anon_sym_char] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_impl] = ACTIONS(1375), + [anon_sym_let] = ACTIONS(1375), + [anon_sym_loop] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_mod] = ACTIONS(1375), + [anon_sym_pub] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_struct] = ACTIONS(1375), + [anon_sym_trait] = ACTIONS(1375), + [anon_sym_type] = ACTIONS(1375), + [anon_sym_union] = ACTIONS(1375), + [anon_sym_unsafe] = ACTIONS(1375), + [anon_sym_use] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_COLON_COLON] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_move] = ACTIONS(1375), + [sym_integer_literal] = ACTIONS(1373), + [aux_sym_string_literal_token1] = ACTIONS(1373), + [sym_char_literal] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1373), - [sym_super] = ACTIONS(1373), - [sym_crate] = ACTIONS(1373), - [sym_metavariable] = ACTIONS(1371), - [sym_raw_string_literal] = ACTIONS(1371), - [sym_float_literal] = ACTIONS(1371), + [sym_self] = ACTIONS(1375), + [sym_super] = ACTIONS(1375), + [sym_crate] = ACTIONS(1375), + [sym_metavariable] = ACTIONS(1373), + [sym_raw_string_literal] = ACTIONS(1373), + [sym_float_literal] = ACTIONS(1373), [sym_block_comment] = ACTIONS(3), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(1375), - [sym_identifier] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_macro_rules_BANG] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_u8] = ACTIONS(1377), - [anon_sym_i8] = ACTIONS(1377), - [anon_sym_u16] = ACTIONS(1377), - [anon_sym_i16] = ACTIONS(1377), - [anon_sym_u32] = ACTIONS(1377), - [anon_sym_i32] = ACTIONS(1377), - [anon_sym_u64] = ACTIONS(1377), - [anon_sym_i64] = ACTIONS(1377), - [anon_sym_u128] = ACTIONS(1377), - [anon_sym_i128] = ACTIONS(1377), - [anon_sym_isize] = ACTIONS(1377), - [anon_sym_usize] = ACTIONS(1377), - [anon_sym_f32] = ACTIONS(1377), - [anon_sym_f64] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_str] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_async] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_fn] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_impl] = ACTIONS(1377), - [anon_sym_let] = ACTIONS(1377), - [anon_sym_loop] = ACTIONS(1377), - [anon_sym_match] = ACTIONS(1377), - [anon_sym_mod] = ACTIONS(1377), - [anon_sym_pub] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_trait] = ACTIONS(1377), - [anon_sym_type] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_unsafe] = ACTIONS(1377), - [anon_sym_use] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_POUND] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), - [anon_sym_COLON_COLON] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_DOT_DOT] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_move] = ACTIONS(1377), - [sym_integer_literal] = ACTIONS(1375), - [aux_sym_string_literal_token1] = ACTIONS(1375), - [sym_char_literal] = ACTIONS(1375), - [anon_sym_true] = ACTIONS(1377), - [anon_sym_false] = ACTIONS(1377), + [ts_builtin_sym_end] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_macro_rules_BANG] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_impl] = ACTIONS(1379), + [anon_sym_let] = ACTIONS(1379), + [anon_sym_loop] = ACTIONS(1379), + [anon_sym_match] = ACTIONS(1379), + [anon_sym_mod] = ACTIONS(1379), + [anon_sym_pub] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_trait] = ACTIONS(1379), + [anon_sym_type] = ACTIONS(1379), + [anon_sym_union] = ACTIONS(1379), + [anon_sym_unsafe] = ACTIONS(1379), + [anon_sym_use] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_POUND] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1377), + [anon_sym_COLON_COLON] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_move] = ACTIONS(1379), + [sym_integer_literal] = ACTIONS(1377), + [aux_sym_string_literal_token1] = ACTIONS(1377), + [sym_char_literal] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1377), - [sym_super] = ACTIONS(1377), - [sym_crate] = ACTIONS(1377), - [sym_metavariable] = ACTIONS(1375), - [sym_raw_string_literal] = ACTIONS(1375), - [sym_float_literal] = ACTIONS(1375), + [sym_self] = ACTIONS(1379), + [sym_super] = ACTIONS(1379), + [sym_crate] = ACTIONS(1379), + [sym_metavariable] = ACTIONS(1377), + [sym_raw_string_literal] = ACTIONS(1377), + [sym_float_literal] = ACTIONS(1377), [sym_block_comment] = ACTIONS(3), }, [264] = { - [ts_builtin_sym_end] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_macro_rules_BANG] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_u8] = ACTIONS(1381), - [anon_sym_i8] = ACTIONS(1381), - [anon_sym_u16] = ACTIONS(1381), - [anon_sym_i16] = ACTIONS(1381), - [anon_sym_u32] = ACTIONS(1381), - [anon_sym_i32] = ACTIONS(1381), - [anon_sym_u64] = ACTIONS(1381), - [anon_sym_i64] = ACTIONS(1381), - [anon_sym_u128] = ACTIONS(1381), - [anon_sym_i128] = ACTIONS(1381), - [anon_sym_isize] = ACTIONS(1381), - [anon_sym_usize] = ACTIONS(1381), - [anon_sym_f32] = ACTIONS(1381), - [anon_sym_f64] = ACTIONS(1381), - [anon_sym_bool] = ACTIONS(1381), - [anon_sym_str] = ACTIONS(1381), - [anon_sym_char] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_async] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_default] = ACTIONS(1381), - [anon_sym_enum] = ACTIONS(1381), - [anon_sym_fn] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_impl] = ACTIONS(1381), - [anon_sym_let] = ACTIONS(1381), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_mod] = ACTIONS(1381), - [anon_sym_pub] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_struct] = ACTIONS(1381), - [anon_sym_trait] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1381), - [anon_sym_unsafe] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_COLON_COLON] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_move] = ACTIONS(1381), - [sym_integer_literal] = ACTIONS(1379), - [aux_sym_string_literal_token1] = ACTIONS(1379), - [sym_char_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), + [ts_builtin_sym_end] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_macro_rules_BANG] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_u8] = ACTIONS(1383), + [anon_sym_i8] = ACTIONS(1383), + [anon_sym_u16] = ACTIONS(1383), + [anon_sym_i16] = ACTIONS(1383), + [anon_sym_u32] = ACTIONS(1383), + [anon_sym_i32] = ACTIONS(1383), + [anon_sym_u64] = ACTIONS(1383), + [anon_sym_i64] = ACTIONS(1383), + [anon_sym_u128] = ACTIONS(1383), + [anon_sym_i128] = ACTIONS(1383), + [anon_sym_isize] = ACTIONS(1383), + [anon_sym_usize] = ACTIONS(1383), + [anon_sym_f32] = ACTIONS(1383), + [anon_sym_f64] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_str] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_enum] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_impl] = ACTIONS(1383), + [anon_sym_let] = ACTIONS(1383), + [anon_sym_loop] = ACTIONS(1383), + [anon_sym_match] = ACTIONS(1383), + [anon_sym_mod] = ACTIONS(1383), + [anon_sym_pub] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_struct] = ACTIONS(1383), + [anon_sym_trait] = ACTIONS(1383), + [anon_sym_type] = ACTIONS(1383), + [anon_sym_union] = ACTIONS(1383), + [anon_sym_unsafe] = ACTIONS(1383), + [anon_sym_use] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_move] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1381), + [aux_sym_string_literal_token1] = ACTIONS(1381), + [sym_char_literal] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1381), - [sym_super] = ACTIONS(1381), - [sym_crate] = ACTIONS(1381), - [sym_metavariable] = ACTIONS(1379), - [sym_raw_string_literal] = ACTIONS(1379), - [sym_float_literal] = ACTIONS(1379), + [sym_self] = ACTIONS(1383), + [sym_super] = ACTIONS(1383), + [sym_crate] = ACTIONS(1383), + [sym_metavariable] = ACTIONS(1381), + [sym_raw_string_literal] = ACTIONS(1381), + [sym_float_literal] = ACTIONS(1381), [sym_block_comment] = ACTIONS(3), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(1383), - [sym_identifier] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_macro_rules_BANG] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_u8] = ACTIONS(1385), - [anon_sym_i8] = ACTIONS(1385), - [anon_sym_u16] = ACTIONS(1385), - [anon_sym_i16] = ACTIONS(1385), - [anon_sym_u32] = ACTIONS(1385), - [anon_sym_i32] = ACTIONS(1385), - [anon_sym_u64] = ACTIONS(1385), - [anon_sym_i64] = ACTIONS(1385), - [anon_sym_u128] = ACTIONS(1385), - [anon_sym_i128] = ACTIONS(1385), - [anon_sym_isize] = ACTIONS(1385), - [anon_sym_usize] = ACTIONS(1385), - [anon_sym_f32] = ACTIONS(1385), - [anon_sym_f64] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_str] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_async] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_enum] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_impl] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_pub] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_trait] = ACTIONS(1385), - [anon_sym_type] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1383), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1383), - [aux_sym_string_literal_token1] = ACTIONS(1383), - [sym_char_literal] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_macro_rules_BANG] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_u8] = ACTIONS(1387), + [anon_sym_i8] = ACTIONS(1387), + [anon_sym_u16] = ACTIONS(1387), + [anon_sym_i16] = ACTIONS(1387), + [anon_sym_u32] = ACTIONS(1387), + [anon_sym_i32] = ACTIONS(1387), + [anon_sym_u64] = ACTIONS(1387), + [anon_sym_i64] = ACTIONS(1387), + [anon_sym_u128] = ACTIONS(1387), + [anon_sym_i128] = ACTIONS(1387), + [anon_sym_isize] = ACTIONS(1387), + [anon_sym_usize] = ACTIONS(1387), + [anon_sym_f32] = ACTIONS(1387), + [anon_sym_f64] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_str] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_impl] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_pub] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_trait] = ACTIONS(1387), + [anon_sym_type] = ACTIONS(1387), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(1385), + [anon_sym_COLON_COLON] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1385), + [anon_sym_move] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1385), + [aux_sym_string_literal_token1] = ACTIONS(1385), + [sym_char_literal] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1385), - [sym_super] = ACTIONS(1385), - [sym_crate] = ACTIONS(1385), - [sym_metavariable] = ACTIONS(1383), - [sym_raw_string_literal] = ACTIONS(1383), - [sym_float_literal] = ACTIONS(1383), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1387), + [sym_crate] = ACTIONS(1387), + [sym_metavariable] = ACTIONS(1385), + [sym_raw_string_literal] = ACTIONS(1385), + [sym_float_literal] = ACTIONS(1385), [sym_block_comment] = ACTIONS(3), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_macro_rules_BANG] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_u8] = ACTIONS(1389), - [anon_sym_i8] = ACTIONS(1389), - [anon_sym_u16] = ACTIONS(1389), - [anon_sym_i16] = ACTIONS(1389), - [anon_sym_u32] = ACTIONS(1389), - [anon_sym_i32] = ACTIONS(1389), - [anon_sym_u64] = ACTIONS(1389), - [anon_sym_i64] = ACTIONS(1389), - [anon_sym_u128] = ACTIONS(1389), - [anon_sym_i128] = ACTIONS(1389), - [anon_sym_isize] = ACTIONS(1389), - [anon_sym_usize] = ACTIONS(1389), - [anon_sym_f32] = ACTIONS(1389), - [anon_sym_f64] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_str] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_impl] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_pub] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_trait] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_unsafe] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_POUND] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(1387), - [anon_sym_move] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(1387), - [aux_sym_string_literal_token1] = ACTIONS(1387), - [sym_char_literal] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_macro_rules_BANG] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_u8] = ACTIONS(1391), + [anon_sym_i8] = ACTIONS(1391), + [anon_sym_u16] = ACTIONS(1391), + [anon_sym_i16] = ACTIONS(1391), + [anon_sym_u32] = ACTIONS(1391), + [anon_sym_i32] = ACTIONS(1391), + [anon_sym_u64] = ACTIONS(1391), + [anon_sym_i64] = ACTIONS(1391), + [anon_sym_u128] = ACTIONS(1391), + [anon_sym_i128] = ACTIONS(1391), + [anon_sym_isize] = ACTIONS(1391), + [anon_sym_usize] = ACTIONS(1391), + [anon_sym_f32] = ACTIONS(1391), + [anon_sym_f64] = ACTIONS(1391), + [anon_sym_bool] = ACTIONS(1391), + [anon_sym_str] = ACTIONS(1391), + [anon_sym_char] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1391), + [anon_sym_enum] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1391), + [anon_sym_let] = ACTIONS(1391), + [anon_sym_loop] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_mod] = ACTIONS(1391), + [anon_sym_pub] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1391), + [anon_sym_trait] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1391), + [anon_sym_use] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1391), + [anon_sym_LT] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_move] = ACTIONS(1391), + [sym_integer_literal] = ACTIONS(1389), + [aux_sym_string_literal_token1] = ACTIONS(1389), + [sym_char_literal] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_crate] = ACTIONS(1389), - [sym_metavariable] = ACTIONS(1387), - [sym_raw_string_literal] = ACTIONS(1387), - [sym_float_literal] = ACTIONS(1387), + [sym_self] = ACTIONS(1391), + [sym_super] = ACTIONS(1391), + [sym_crate] = ACTIONS(1391), + [sym_metavariable] = ACTIONS(1389), + [sym_raw_string_literal] = ACTIONS(1389), + [sym_float_literal] = ACTIONS(1389), [sym_block_comment] = ACTIONS(3), }, [267] = { - [ts_builtin_sym_end] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_macro_rules_BANG] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_u8] = ACTIONS(1393), - [anon_sym_i8] = ACTIONS(1393), - [anon_sym_u16] = ACTIONS(1393), - [anon_sym_i16] = ACTIONS(1393), - [anon_sym_u32] = ACTIONS(1393), - [anon_sym_i32] = ACTIONS(1393), - [anon_sym_u64] = ACTIONS(1393), - [anon_sym_i64] = ACTIONS(1393), - [anon_sym_u128] = ACTIONS(1393), - [anon_sym_i128] = ACTIONS(1393), - [anon_sym_isize] = ACTIONS(1393), - [anon_sym_usize] = ACTIONS(1393), - [anon_sym_f32] = ACTIONS(1393), - [anon_sym_f64] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_str] = ACTIONS(1393), - [anon_sym_char] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_async] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_impl] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_pub] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_struct] = ACTIONS(1393), - [anon_sym_trait] = ACTIONS(1393), - [anon_sym_type] = ACTIONS(1393), - [anon_sym_union] = ACTIONS(1393), - [anon_sym_unsafe] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_move] = ACTIONS(1393), - [sym_integer_literal] = ACTIONS(1391), - [aux_sym_string_literal_token1] = ACTIONS(1391), - [sym_char_literal] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_macro_rules_BANG] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_u8] = ACTIONS(1395), + [anon_sym_i8] = ACTIONS(1395), + [anon_sym_u16] = ACTIONS(1395), + [anon_sym_i16] = ACTIONS(1395), + [anon_sym_u32] = ACTIONS(1395), + [anon_sym_i32] = ACTIONS(1395), + [anon_sym_u64] = ACTIONS(1395), + [anon_sym_i64] = ACTIONS(1395), + [anon_sym_u128] = ACTIONS(1395), + [anon_sym_i128] = ACTIONS(1395), + [anon_sym_isize] = ACTIONS(1395), + [anon_sym_usize] = ACTIONS(1395), + [anon_sym_f32] = ACTIONS(1395), + [anon_sym_f64] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_str] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_impl] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_mod] = ACTIONS(1395), + [anon_sym_pub] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_struct] = ACTIONS(1395), + [anon_sym_trait] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1395), + [anon_sym_unsafe] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_COLON_COLON] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_move] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1393), + [aux_sym_string_literal_token1] = ACTIONS(1393), + [sym_char_literal] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1393), - [sym_super] = ACTIONS(1393), - [sym_crate] = ACTIONS(1393), - [sym_metavariable] = ACTIONS(1391), - [sym_raw_string_literal] = ACTIONS(1391), - [sym_float_literal] = ACTIONS(1391), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1393), + [sym_raw_string_literal] = ACTIONS(1393), + [sym_float_literal] = ACTIONS(1393), [sym_block_comment] = ACTIONS(3), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_macro_rules_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_impl] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_pub] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_trait] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_macro_rules_BANG] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_u8] = ACTIONS(1399), + [anon_sym_i8] = ACTIONS(1399), + [anon_sym_u16] = ACTIONS(1399), + [anon_sym_i16] = ACTIONS(1399), + [anon_sym_u32] = ACTIONS(1399), + [anon_sym_i32] = ACTIONS(1399), + [anon_sym_u64] = ACTIONS(1399), + [anon_sym_i64] = ACTIONS(1399), + [anon_sym_u128] = ACTIONS(1399), + [anon_sym_i128] = ACTIONS(1399), + [anon_sym_isize] = ACTIONS(1399), + [anon_sym_usize] = ACTIONS(1399), + [anon_sym_f32] = ACTIONS(1399), + [anon_sym_f64] = ACTIONS(1399), + [anon_sym_bool] = ACTIONS(1399), + [anon_sym_str] = ACTIONS(1399), + [anon_sym_char] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_enum] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_impl] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_loop] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_mod] = ACTIONS(1399), + [anon_sym_pub] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_trait] = ACTIONS(1399), + [anon_sym_type] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1399), + [anon_sym_unsafe] = ACTIONS(1399), + [anon_sym_use] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1397), + [aux_sym_string_literal_token1] = ACTIONS(1397), + [sym_char_literal] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym_raw_string_literal] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), + [sym_self] = ACTIONS(1399), + [sym_super] = ACTIONS(1399), + [sym_crate] = ACTIONS(1399), + [sym_metavariable] = ACTIONS(1397), + [sym_raw_string_literal] = ACTIONS(1397), + [sym_float_literal] = ACTIONS(1397), [sym_block_comment] = ACTIONS(3), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_macro_rules_BANG] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u128] = ACTIONS(1401), - [anon_sym_i128] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_enum] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_impl] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_pub] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_trait] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_unsafe] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_move] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1399), - [aux_sym_string_literal_token1] = ACTIONS(1399), - [sym_char_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(1401), + [sym_identifier] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_macro_rules_BANG] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_u8] = ACTIONS(1403), + [anon_sym_i8] = ACTIONS(1403), + [anon_sym_u16] = ACTIONS(1403), + [anon_sym_i16] = ACTIONS(1403), + [anon_sym_u32] = ACTIONS(1403), + [anon_sym_i32] = ACTIONS(1403), + [anon_sym_u64] = ACTIONS(1403), + [anon_sym_i64] = ACTIONS(1403), + [anon_sym_u128] = ACTIONS(1403), + [anon_sym_i128] = ACTIONS(1403), + [anon_sym_isize] = ACTIONS(1403), + [anon_sym_usize] = ACTIONS(1403), + [anon_sym_f32] = ACTIONS(1403), + [anon_sym_f64] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_str] = ACTIONS(1403), + [anon_sym_char] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_default] = ACTIONS(1403), + [anon_sym_enum] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_impl] = ACTIONS(1403), + [anon_sym_let] = ACTIONS(1403), + [anon_sym_loop] = ACTIONS(1403), + [anon_sym_match] = ACTIONS(1403), + [anon_sym_mod] = ACTIONS(1403), + [anon_sym_pub] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_struct] = ACTIONS(1403), + [anon_sym_trait] = ACTIONS(1403), + [anon_sym_type] = ACTIONS(1403), + [anon_sym_union] = ACTIONS(1403), + [anon_sym_unsafe] = ACTIONS(1403), + [anon_sym_use] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_COLON_COLON] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_DOT_DOT] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_move] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1401), + [aux_sym_string_literal_token1] = ACTIONS(1401), + [sym_char_literal] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym_raw_string_literal] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), + [sym_self] = ACTIONS(1403), + [sym_super] = ACTIONS(1403), + [sym_crate] = ACTIONS(1403), + [sym_metavariable] = ACTIONS(1401), + [sym_raw_string_literal] = ACTIONS(1401), + [sym_float_literal] = ACTIONS(1401), [sym_block_comment] = ACTIONS(3), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_macro_rules_BANG] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u128] = ACTIONS(1405), - [anon_sym_i128] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_async] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_pub] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_trait] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_unsafe] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_COLON_COLON] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_DOT_DOT] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_move] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1403), - [aux_sym_string_literal_token1] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_macro_rules_BANG] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_u8] = ACTIONS(1407), + [anon_sym_i8] = ACTIONS(1407), + [anon_sym_u16] = ACTIONS(1407), + [anon_sym_i16] = ACTIONS(1407), + [anon_sym_u32] = ACTIONS(1407), + [anon_sym_i32] = ACTIONS(1407), + [anon_sym_u64] = ACTIONS(1407), + [anon_sym_i64] = ACTIONS(1407), + [anon_sym_u128] = ACTIONS(1407), + [anon_sym_i128] = ACTIONS(1407), + [anon_sym_isize] = ACTIONS(1407), + [anon_sym_usize] = ACTIONS(1407), + [anon_sym_f32] = ACTIONS(1407), + [anon_sym_f64] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_str] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_impl] = ACTIONS(1407), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_loop] = ACTIONS(1407), + [anon_sym_match] = ACTIONS(1407), + [anon_sym_mod] = ACTIONS(1407), + [anon_sym_pub] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_trait] = ACTIONS(1407), + [anon_sym_type] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_unsafe] = ACTIONS(1407), + [anon_sym_use] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym_LT] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_move] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1405), + [aux_sym_string_literal_token1] = ACTIONS(1405), + [sym_char_literal] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym_raw_string_literal] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_crate] = ACTIONS(1407), + [sym_metavariable] = ACTIONS(1405), + [sym_raw_string_literal] = ACTIONS(1405), + [sym_float_literal] = ACTIONS(1405), [sym_block_comment] = ACTIONS(3), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_macro_rules_BANG] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u128] = ACTIONS(1409), - [anon_sym_i128] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_str] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_async] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_impl] = ACTIONS(1409), - [anon_sym_let] = ACTIONS(1409), - [anon_sym_loop] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_mod] = ACTIONS(1409), - [anon_sym_pub] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_trait] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1409), - [anon_sym_use] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_DOT_DOT] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_move] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1407), - [aux_sym_string_literal_token1] = ACTIONS(1407), - [sym_char_literal] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_macro_rules_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_u8] = ACTIONS(1411), + [anon_sym_i8] = ACTIONS(1411), + [anon_sym_u16] = ACTIONS(1411), + [anon_sym_i16] = ACTIONS(1411), + [anon_sym_u32] = ACTIONS(1411), + [anon_sym_i32] = ACTIONS(1411), + [anon_sym_u64] = ACTIONS(1411), + [anon_sym_i64] = ACTIONS(1411), + [anon_sym_u128] = ACTIONS(1411), + [anon_sym_i128] = ACTIONS(1411), + [anon_sym_isize] = ACTIONS(1411), + [anon_sym_usize] = ACTIONS(1411), + [anon_sym_f32] = ACTIONS(1411), + [anon_sym_f64] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_str] = ACTIONS(1411), + [anon_sym_char] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_async] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_impl] = ACTIONS(1411), + [anon_sym_let] = ACTIONS(1411), + [anon_sym_loop] = ACTIONS(1411), + [anon_sym_match] = ACTIONS(1411), + [anon_sym_mod] = ACTIONS(1411), + [anon_sym_pub] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_trait] = ACTIONS(1411), + [anon_sym_type] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_unsafe] = ACTIONS(1411), + [anon_sym_use] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym_LT] = ACTIONS(1409), + [anon_sym_COLON_COLON] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_PIPE] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1409), + [aux_sym_string_literal_token1] = ACTIONS(1409), + [sym_char_literal] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_crate] = ACTIONS(1409), - [sym_metavariable] = ACTIONS(1407), - [sym_raw_string_literal] = ACTIONS(1407), - [sym_float_literal] = ACTIONS(1407), + [sym_self] = ACTIONS(1411), + [sym_super] = ACTIONS(1411), + [sym_crate] = ACTIONS(1411), + [sym_metavariable] = ACTIONS(1409), + [sym_raw_string_literal] = ACTIONS(1409), + [sym_float_literal] = ACTIONS(1409), [sym_block_comment] = ACTIONS(3), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_macro_rules_BANG] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u128] = ACTIONS(1413), - [anon_sym_i128] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_str] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_async] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_impl] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_mod] = ACTIONS(1413), - [anon_sym_pub] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_trait] = ACTIONS(1413), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_unsafe] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_COLON_COLON] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1411), - [aux_sym_string_literal_token1] = ACTIONS(1411), - [sym_char_literal] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), + [ts_builtin_sym_end] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_macro_rules_BANG] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_u8] = ACTIONS(1415), + [anon_sym_i8] = ACTIONS(1415), + [anon_sym_u16] = ACTIONS(1415), + [anon_sym_i16] = ACTIONS(1415), + [anon_sym_u32] = ACTIONS(1415), + [anon_sym_i32] = ACTIONS(1415), + [anon_sym_u64] = ACTIONS(1415), + [anon_sym_i64] = ACTIONS(1415), + [anon_sym_u128] = ACTIONS(1415), + [anon_sym_i128] = ACTIONS(1415), + [anon_sym_isize] = ACTIONS(1415), + [anon_sym_usize] = ACTIONS(1415), + [anon_sym_f32] = ACTIONS(1415), + [anon_sym_f64] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_str] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_async] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_let] = ACTIONS(1415), + [anon_sym_loop] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1415), + [anon_sym_mod] = ACTIONS(1415), + [anon_sym_pub] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_struct] = ACTIONS(1415), + [anon_sym_trait] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1415), + [anon_sym_unsafe] = ACTIONS(1415), + [anon_sym_use] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_POUND] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_extern] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1413), + [anon_sym_COLON_COLON] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1413), + [anon_sym_move] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1413), + [aux_sym_string_literal_token1] = ACTIONS(1413), + [sym_char_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_crate] = ACTIONS(1413), - [sym_metavariable] = ACTIONS(1411), - [sym_raw_string_literal] = ACTIONS(1411), - [sym_float_literal] = ACTIONS(1411), + [sym_self] = ACTIONS(1415), + [sym_super] = ACTIONS(1415), + [sym_crate] = ACTIONS(1415), + [sym_metavariable] = ACTIONS(1413), + [sym_raw_string_literal] = ACTIONS(1413), + [sym_float_literal] = ACTIONS(1413), [sym_block_comment] = ACTIONS(3), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_macro_rules_BANG] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_u8] = ACTIONS(1417), - [anon_sym_i8] = ACTIONS(1417), - [anon_sym_u16] = ACTIONS(1417), - [anon_sym_i16] = ACTIONS(1417), - [anon_sym_u32] = ACTIONS(1417), - [anon_sym_i32] = ACTIONS(1417), - [anon_sym_u64] = ACTIONS(1417), - [anon_sym_i64] = ACTIONS(1417), - [anon_sym_u128] = ACTIONS(1417), - [anon_sym_i128] = ACTIONS(1417), - [anon_sym_isize] = ACTIONS(1417), - [anon_sym_usize] = ACTIONS(1417), - [anon_sym_f32] = ACTIONS(1417), - [anon_sym_f64] = ACTIONS(1417), - [anon_sym_bool] = ACTIONS(1417), - [anon_sym_str] = ACTIONS(1417), - [anon_sym_char] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_default] = ACTIONS(1417), - [anon_sym_enum] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_impl] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_mod] = ACTIONS(1417), - [anon_sym_pub] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_struct] = ACTIONS(1417), - [anon_sym_trait] = ACTIONS(1417), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_union] = ACTIONS(1417), - [anon_sym_unsafe] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_move] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1415), - [aux_sym_string_literal_token1] = ACTIONS(1415), - [sym_char_literal] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_macro_rules_BANG] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_u8] = ACTIONS(1419), + [anon_sym_i8] = ACTIONS(1419), + [anon_sym_u16] = ACTIONS(1419), + [anon_sym_i16] = ACTIONS(1419), + [anon_sym_u32] = ACTIONS(1419), + [anon_sym_i32] = ACTIONS(1419), + [anon_sym_u64] = ACTIONS(1419), + [anon_sym_i64] = ACTIONS(1419), + [anon_sym_u128] = ACTIONS(1419), + [anon_sym_i128] = ACTIONS(1419), + [anon_sym_isize] = ACTIONS(1419), + [anon_sym_usize] = ACTIONS(1419), + [anon_sym_f32] = ACTIONS(1419), + [anon_sym_f64] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_str] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_impl] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_pub] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_trait] = ACTIONS(1419), + [anon_sym_type] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_unsafe] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_move] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [aux_sym_string_literal_token1] = ACTIONS(1417), + [sym_char_literal] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1417), - [sym_super] = ACTIONS(1417), - [sym_crate] = ACTIONS(1417), - [sym_metavariable] = ACTIONS(1415), - [sym_raw_string_literal] = ACTIONS(1415), - [sym_float_literal] = ACTIONS(1415), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1417), + [sym_raw_string_literal] = ACTIONS(1417), + [sym_float_literal] = ACTIONS(1417), [sym_block_comment] = ACTIONS(3), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1419), + [sym__token_pattern] = STATE(317), + [sym_token_tree_pattern] = STATE(317), + [sym_token_binding_pattern] = STATE(317), + [sym_token_repetition_pattern] = STATE(317), + [sym__literal] = STATE(317), + [sym_string_literal] = STATE(317), + [sym_boolean_literal] = STATE(317), + [aux_sym_token_tree_pattern_repeat1] = STATE(317), [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1421), [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(1421), [anon_sym_async] = ACTIONS(1421), + [anon_sym_await] = ACTIONS(1421), [anon_sym_break] = ACTIONS(1421), [anon_sym_const] = ACTIONS(1421), [anon_sym_continue] = ACTIONS(1421), @@ -35105,412 +35218,24 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1421), [anon_sym_unsafe] = ACTIONS(1421), [anon_sym_use] = ACTIONS(1421), + [anon_sym_where] = ACTIONS(1421), [anon_sym_while] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_move] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1435), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), [sym_self] = ACTIONS(1421), [sym_super] = ACTIONS(1421), [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym_raw_string_literal] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), - [sym_block_comment] = ACTIONS(3), - }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_macro_rules_BANG] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_move] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym_raw_string_literal] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), - [sym_block_comment] = ACTIONS(3), - }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_macro_rules_BANG] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_u8] = ACTIONS(1429), - [anon_sym_i8] = ACTIONS(1429), - [anon_sym_u16] = ACTIONS(1429), - [anon_sym_i16] = ACTIONS(1429), - [anon_sym_u32] = ACTIONS(1429), - [anon_sym_i32] = ACTIONS(1429), - [anon_sym_u64] = ACTIONS(1429), - [anon_sym_i64] = ACTIONS(1429), - [anon_sym_u128] = ACTIONS(1429), - [anon_sym_i128] = ACTIONS(1429), - [anon_sym_isize] = ACTIONS(1429), - [anon_sym_usize] = ACTIONS(1429), - [anon_sym_f32] = ACTIONS(1429), - [anon_sym_f64] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_str] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_move] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1427), - [aux_sym_string_literal_token1] = ACTIONS(1427), - [sym_char_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym_raw_string_literal] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), - [sym_block_comment] = ACTIONS(3), - }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_move] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym_raw_string_literal] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), - [sym_block_comment] = ACTIONS(3), - }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_macro_rules_BANG] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_loop] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_unsafe] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_move] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(1435), [sym_float_literal] = ACTIONS(1435), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1439), - [sym_identifier] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_macro_rules_BANG] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_u8] = ACTIONS(1441), - [anon_sym_i8] = ACTIONS(1441), - [anon_sym_u16] = ACTIONS(1441), - [anon_sym_i16] = ACTIONS(1441), - [anon_sym_u32] = ACTIONS(1441), - [anon_sym_i32] = ACTIONS(1441), - [anon_sym_u64] = ACTIONS(1441), - [anon_sym_i64] = ACTIONS(1441), - [anon_sym_u128] = ACTIONS(1441), - [anon_sym_i128] = ACTIONS(1441), - [anon_sym_isize] = ACTIONS(1441), - [anon_sym_usize] = ACTIONS(1441), - [anon_sym_f32] = ACTIONS(1441), - [anon_sym_f64] = ACTIONS(1441), - [anon_sym_bool] = ACTIONS(1441), - [anon_sym_str] = ACTIONS(1441), - [anon_sym_char] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_async] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_impl] = ACTIONS(1441), - [anon_sym_let] = ACTIONS(1441), - [anon_sym_loop] = ACTIONS(1441), - [anon_sym_match] = ACTIONS(1441), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_pub] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_struct] = ACTIONS(1441), - [anon_sym_trait] = ACTIONS(1441), - [anon_sym_type] = ACTIONS(1441), - [anon_sym_union] = ACTIONS(1441), - [anon_sym_unsafe] = ACTIONS(1441), - [anon_sym_use] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1441), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_COLON_COLON] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_move] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(1439), - [aux_sym_string_literal_token1] = ACTIONS(1439), - [sym_char_literal] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1441), - [sym_super] = ACTIONS(1441), - [sym_crate] = ACTIONS(1441), - [sym_metavariable] = ACTIONS(1439), - [sym_raw_string_literal] = ACTIONS(1439), - [sym_float_literal] = ACTIONS(1439), - [sym_block_comment] = ACTIONS(3), - }, - [280] = { + [275] = { [ts_builtin_sym_end] = ACTIONS(1443), [sym_identifier] = ACTIONS(1445), [anon_sym_SEMI] = ACTIONS(1443), @@ -35586,7 +35311,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1443), [sym_block_comment] = ACTIONS(3), }, - [281] = { + [276] = { [ts_builtin_sym_end] = ACTIONS(1447), [sym_identifier] = ACTIONS(1449), [anon_sym_SEMI] = ACTIONS(1447), @@ -35662,7 +35387,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1447), [sym_block_comment] = ACTIONS(3), }, - [282] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1451), [sym_identifier] = ACTIONS(1453), [anon_sym_SEMI] = ACTIONS(1451), @@ -35738,187 +35463,195 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1451), [sym_block_comment] = ACTIONS(3), }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_identifier] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_macro_rules_BANG] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_u8] = ACTIONS(1457), - [anon_sym_i8] = ACTIONS(1457), - [anon_sym_u16] = ACTIONS(1457), - [anon_sym_i16] = ACTIONS(1457), - [anon_sym_u32] = ACTIONS(1457), - [anon_sym_i32] = ACTIONS(1457), - [anon_sym_u64] = ACTIONS(1457), - [anon_sym_i64] = ACTIONS(1457), - [anon_sym_u128] = ACTIONS(1457), - [anon_sym_i128] = ACTIONS(1457), - [anon_sym_isize] = ACTIONS(1457), - [anon_sym_usize] = ACTIONS(1457), - [anon_sym_f32] = ACTIONS(1457), - [anon_sym_f64] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_str] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_impl] = ACTIONS(1457), - [anon_sym_let] = ACTIONS(1457), - [anon_sym_loop] = ACTIONS(1457), - [anon_sym_match] = ACTIONS(1457), - [anon_sym_mod] = ACTIONS(1457), - [anon_sym_pub] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_trait] = ACTIONS(1457), - [anon_sym_type] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_unsafe] = ACTIONS(1457), - [anon_sym_use] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_move] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1455), - [aux_sym_string_literal_token1] = ACTIONS(1455), - [sym_char_literal] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1457), - [sym_super] = ACTIONS(1457), - [sym_crate] = ACTIONS(1457), - [sym_metavariable] = ACTIONS(1455), - [sym_raw_string_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1455), - [sym_block_comment] = ACTIONS(3), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_macro_rules_BANG] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_u8] = ACTIONS(1461), - [anon_sym_i8] = ACTIONS(1461), - [anon_sym_u16] = ACTIONS(1461), - [anon_sym_i16] = ACTIONS(1461), - [anon_sym_u32] = ACTIONS(1461), - [anon_sym_i32] = ACTIONS(1461), - [anon_sym_u64] = ACTIONS(1461), - [anon_sym_i64] = ACTIONS(1461), - [anon_sym_u128] = ACTIONS(1461), - [anon_sym_i128] = ACTIONS(1461), - [anon_sym_isize] = ACTIONS(1461), - [anon_sym_usize] = ACTIONS(1461), - [anon_sym_f32] = ACTIONS(1461), - [anon_sym_f64] = ACTIONS(1461), - [anon_sym_bool] = ACTIONS(1461), - [anon_sym_str] = ACTIONS(1461), - [anon_sym_char] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_async] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_impl] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_mod] = ACTIONS(1461), - [anon_sym_pub] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_trait] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_unsafe] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_move] = ACTIONS(1461), + [278] = { + [sym__token_pattern] = STATE(358), + [sym_token_tree_pattern] = STATE(358), + [sym_token_binding_pattern] = STATE(358), + [sym_token_repetition_pattern] = STATE(358), + [sym__literal] = STATE(358), + [sym_string_literal] = STATE(358), + [sym_boolean_literal] = STATE(358), + [aux_sym_token_tree_pattern_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_RPAREN] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_impl] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_pub] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_trait] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsafe] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_where] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [sym_mutable_specifier] = ACTIONS(1455), [sym_integer_literal] = ACTIONS(1459), - [aux_sym_string_literal_token1] = ACTIONS(1459), + [aux_sym_string_literal_token1] = ACTIONS(1437), [sym_char_literal] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_crate] = ACTIONS(1461), - [sym_metavariable] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(1459), [sym_float_literal] = ACTIONS(1459), [sym_block_comment] = ACTIONS(3), }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1463), + [279] = { + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_macro_rules_BANG] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_u8] = ACTIONS(1463), + [anon_sym_i8] = ACTIONS(1463), + [anon_sym_u16] = ACTIONS(1463), + [anon_sym_i16] = ACTIONS(1463), + [anon_sym_u32] = ACTIONS(1463), + [anon_sym_i32] = ACTIONS(1463), + [anon_sym_u64] = ACTIONS(1463), + [anon_sym_i64] = ACTIONS(1463), + [anon_sym_u128] = ACTIONS(1463), + [anon_sym_i128] = ACTIONS(1463), + [anon_sym_isize] = ACTIONS(1463), + [anon_sym_usize] = ACTIONS(1463), + [anon_sym_f32] = ACTIONS(1463), + [anon_sym_f64] = ACTIONS(1463), + [anon_sym_bool] = ACTIONS(1463), + [anon_sym_str] = ACTIONS(1463), + [anon_sym_char] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_async] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_impl] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_pub] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_trait] = ACTIONS(1463), + [anon_sym_type] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_move] = ACTIONS(1463), + [sym_integer_literal] = ACTIONS(1461), + [aux_sym_string_literal_token1] = ACTIONS(1461), + [sym_char_literal] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1461), + [sym_raw_string_literal] = ACTIONS(1461), + [sym_float_literal] = ACTIONS(1461), + [sym_block_comment] = ACTIONS(3), + }, + [280] = { + [sym__token_pattern] = STATE(361), + [sym_token_tree_pattern] = STATE(361), + [sym_token_binding_pattern] = STATE(361), + [sym_token_repetition_pattern] = STATE(361), + [sym__literal] = STATE(361), + [sym_string_literal] = STATE(361), + [sym_boolean_literal] = STATE(361), + [aux_sym_token_tree_pattern_repeat1] = STATE(361), [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1465), [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(1465), [anon_sym_async] = ACTIONS(1465), + [anon_sym_await] = ACTIONS(1465), [anon_sym_break] = ACTIONS(1465), [anon_sym_const] = ACTIONS(1465), [anon_sym_continue] = ACTIONS(1465), @@ -35941,60 +35674,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1465), [anon_sym_unsafe] = ACTIONS(1465), [anon_sym_use] = ACTIONS(1465), + [anon_sym_where] = ACTIONS(1465), [anon_sym_while] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_move] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), [sym_self] = ACTIONS(1465), [sym_super] = ACTIONS(1465), [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym_raw_string_literal] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1467), + [sym_float_literal] = ACTIONS(1467), [sym_block_comment] = ACTIONS(3), }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1467), + [281] = { + [sym__token_pattern] = STATE(368), + [sym_token_tree_pattern] = STATE(368), + [sym_token_binding_pattern] = STATE(368), + [sym_token_repetition_pattern] = STATE(368), + [sym__literal] = STATE(368), + [sym_string_literal] = STATE(368), + [sym_boolean_literal] = STATE(368), + [aux_sym_token_tree_pattern_repeat1] = STATE(368), [sym_identifier] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_macro_rules_BANG] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_RBRACK] = ACTIONS(1457), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1469), [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_as] = ACTIONS(1469), [anon_sym_async] = ACTIONS(1469), + [anon_sym_await] = ACTIONS(1469), [anon_sym_break] = ACTIONS(1469), [anon_sym_const] = ACTIONS(1469), [anon_sym_continue] = ACTIONS(1469), @@ -36017,1436 +35750,1420 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1469), [anon_sym_unsafe] = ACTIONS(1469), [anon_sym_use] = ACTIONS(1469), + [anon_sym_where] = ACTIONS(1469), [anon_sym_while] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_move] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), [sym_self] = ACTIONS(1469), [sym_super] = ACTIONS(1469), [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym_raw_string_literal] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), [sym_block_comment] = ACTIONS(3), }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_identifier] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_macro_rules_BANG] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_u8] = ACTIONS(1473), - [anon_sym_i8] = ACTIONS(1473), - [anon_sym_u16] = ACTIONS(1473), - [anon_sym_i16] = ACTIONS(1473), - [anon_sym_u32] = ACTIONS(1473), - [anon_sym_i32] = ACTIONS(1473), - [anon_sym_u64] = ACTIONS(1473), - [anon_sym_i64] = ACTIONS(1473), - [anon_sym_u128] = ACTIONS(1473), - [anon_sym_i128] = ACTIONS(1473), - [anon_sym_isize] = ACTIONS(1473), - [anon_sym_usize] = ACTIONS(1473), - [anon_sym_f32] = ACTIONS(1473), - [anon_sym_f64] = ACTIONS(1473), - [anon_sym_bool] = ACTIONS(1473), - [anon_sym_str] = ACTIONS(1473), - [anon_sym_char] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_async] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_impl] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_mod] = ACTIONS(1473), - [anon_sym_pub] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_struct] = ACTIONS(1473), - [anon_sym_trait] = ACTIONS(1473), - [anon_sym_type] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_unsafe] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_DOT_DOT] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_move] = ACTIONS(1473), - [sym_integer_literal] = ACTIONS(1471), - [aux_sym_string_literal_token1] = ACTIONS(1471), - [sym_char_literal] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), + [282] = { + [ts_builtin_sym_end] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_macro_rules_BANG] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_u8] = ACTIONS(1475), + [anon_sym_i8] = ACTIONS(1475), + [anon_sym_u16] = ACTIONS(1475), + [anon_sym_i16] = ACTIONS(1475), + [anon_sym_u32] = ACTIONS(1475), + [anon_sym_i32] = ACTIONS(1475), + [anon_sym_u64] = ACTIONS(1475), + [anon_sym_i64] = ACTIONS(1475), + [anon_sym_u128] = ACTIONS(1475), + [anon_sym_i128] = ACTIONS(1475), + [anon_sym_isize] = ACTIONS(1475), + [anon_sym_usize] = ACTIONS(1475), + [anon_sym_f32] = ACTIONS(1475), + [anon_sym_f64] = ACTIONS(1475), + [anon_sym_bool] = ACTIONS(1475), + [anon_sym_str] = ACTIONS(1475), + [anon_sym_char] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_async] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_enum] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_impl] = ACTIONS(1475), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_loop] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [anon_sym_mod] = ACTIONS(1475), + [anon_sym_pub] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_struct] = ACTIONS(1475), + [anon_sym_trait] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_unsafe] = ACTIONS(1475), + [anon_sym_use] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1475), + [sym_integer_literal] = ACTIONS(1473), + [aux_sym_string_literal_token1] = ACTIONS(1473), + [sym_char_literal] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1473), - [sym_super] = ACTIONS(1473), - [sym_crate] = ACTIONS(1473), - [sym_metavariable] = ACTIONS(1471), - [sym_raw_string_literal] = ACTIONS(1471), - [sym_float_literal] = ACTIONS(1471), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_crate] = ACTIONS(1475), + [sym_metavariable] = ACTIONS(1473), + [sym_raw_string_literal] = ACTIONS(1473), + [sym_float_literal] = ACTIONS(1473), [sym_block_comment] = ACTIONS(3), }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_macro_rules_BANG] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1477), - [anon_sym_i8] = ACTIONS(1477), - [anon_sym_u16] = ACTIONS(1477), - [anon_sym_i16] = ACTIONS(1477), - [anon_sym_u32] = ACTIONS(1477), - [anon_sym_i32] = ACTIONS(1477), - [anon_sym_u64] = ACTIONS(1477), - [anon_sym_i64] = ACTIONS(1477), - [anon_sym_u128] = ACTIONS(1477), - [anon_sym_i128] = ACTIONS(1477), - [anon_sym_isize] = ACTIONS(1477), - [anon_sym_usize] = ACTIONS(1477), - [anon_sym_f32] = ACTIONS(1477), - [anon_sym_f64] = ACTIONS(1477), - [anon_sym_bool] = ACTIONS(1477), - [anon_sym_str] = ACTIONS(1477), - [anon_sym_char] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_async] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_impl] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(1477), - [anon_sym_loop] = ACTIONS(1477), - [anon_sym_match] = ACTIONS(1477), - [anon_sym_mod] = ACTIONS(1477), - [anon_sym_pub] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_trait] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_unsafe] = ACTIONS(1477), - [anon_sym_use] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_move] = ACTIONS(1477), - [sym_integer_literal] = ACTIONS(1475), - [aux_sym_string_literal_token1] = ACTIONS(1475), - [sym_char_literal] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), + [283] = { + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_macro_rules_BANG] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_u8] = ACTIONS(1479), + [anon_sym_i8] = ACTIONS(1479), + [anon_sym_u16] = ACTIONS(1479), + [anon_sym_i16] = ACTIONS(1479), + [anon_sym_u32] = ACTIONS(1479), + [anon_sym_i32] = ACTIONS(1479), + [anon_sym_u64] = ACTIONS(1479), + [anon_sym_i64] = ACTIONS(1479), + [anon_sym_u128] = ACTIONS(1479), + [anon_sym_i128] = ACTIONS(1479), + [anon_sym_isize] = ACTIONS(1479), + [anon_sym_usize] = ACTIONS(1479), + [anon_sym_f32] = ACTIONS(1479), + [anon_sym_f64] = ACTIONS(1479), + [anon_sym_bool] = ACTIONS(1479), + [anon_sym_str] = ACTIONS(1479), + [anon_sym_char] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_async] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_impl] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_mod] = ACTIONS(1479), + [anon_sym_pub] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_struct] = ACTIONS(1479), + [anon_sym_trait] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_unsafe] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_COLON_COLON] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_move] = ACTIONS(1479), + [sym_integer_literal] = ACTIONS(1477), + [aux_sym_string_literal_token1] = ACTIONS(1477), + [sym_char_literal] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_crate] = ACTIONS(1477), - [sym_metavariable] = ACTIONS(1475), - [sym_raw_string_literal] = ACTIONS(1475), - [sym_float_literal] = ACTIONS(1475), + [sym_self] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_crate] = ACTIONS(1479), + [sym_metavariable] = ACTIONS(1477), + [sym_raw_string_literal] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1477), [sym_block_comment] = ACTIONS(3), }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_identifier] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_macro_rules_BANG] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_u8] = ACTIONS(1481), - [anon_sym_i8] = ACTIONS(1481), - [anon_sym_u16] = ACTIONS(1481), - [anon_sym_i16] = ACTIONS(1481), - [anon_sym_u32] = ACTIONS(1481), - [anon_sym_i32] = ACTIONS(1481), - [anon_sym_u64] = ACTIONS(1481), - [anon_sym_i64] = ACTIONS(1481), - [anon_sym_u128] = ACTIONS(1481), - [anon_sym_i128] = ACTIONS(1481), - [anon_sym_isize] = ACTIONS(1481), - [anon_sym_usize] = ACTIONS(1481), - [anon_sym_f32] = ACTIONS(1481), - [anon_sym_f64] = ACTIONS(1481), - [anon_sym_bool] = ACTIONS(1481), - [anon_sym_str] = ACTIONS(1481), - [anon_sym_char] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_async] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_impl] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_mod] = ACTIONS(1481), - [anon_sym_pub] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_struct] = ACTIONS(1481), - [anon_sym_trait] = ACTIONS(1481), - [anon_sym_type] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_unsafe] = ACTIONS(1481), - [anon_sym_use] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_COLON_COLON] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_move] = ACTIONS(1481), - [sym_integer_literal] = ACTIONS(1479), - [aux_sym_string_literal_token1] = ACTIONS(1479), - [sym_char_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), + [284] = { + [ts_builtin_sym_end] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_macro_rules_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_u8] = ACTIONS(1483), + [anon_sym_i8] = ACTIONS(1483), + [anon_sym_u16] = ACTIONS(1483), + [anon_sym_i16] = ACTIONS(1483), + [anon_sym_u32] = ACTIONS(1483), + [anon_sym_i32] = ACTIONS(1483), + [anon_sym_u64] = ACTIONS(1483), + [anon_sym_i64] = ACTIONS(1483), + [anon_sym_u128] = ACTIONS(1483), + [anon_sym_i128] = ACTIONS(1483), + [anon_sym_isize] = ACTIONS(1483), + [anon_sym_usize] = ACTIONS(1483), + [anon_sym_f32] = ACTIONS(1483), + [anon_sym_f64] = ACTIONS(1483), + [anon_sym_bool] = ACTIONS(1483), + [anon_sym_str] = ACTIONS(1483), + [anon_sym_char] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_async] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_enum] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_impl] = ACTIONS(1483), + [anon_sym_let] = ACTIONS(1483), + [anon_sym_loop] = ACTIONS(1483), + [anon_sym_match] = ACTIONS(1483), + [anon_sym_mod] = ACTIONS(1483), + [anon_sym_pub] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_static] = ACTIONS(1483), + [anon_sym_struct] = ACTIONS(1483), + [anon_sym_trait] = ACTIONS(1483), + [anon_sym_type] = ACTIONS(1483), + [anon_sym_union] = ACTIONS(1483), + [anon_sym_unsafe] = ACTIONS(1483), + [anon_sym_use] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_COLON_COLON] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_move] = ACTIONS(1483), + [sym_integer_literal] = ACTIONS(1481), + [aux_sym_string_literal_token1] = ACTIONS(1481), + [sym_char_literal] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1481), - [sym_super] = ACTIONS(1481), - [sym_crate] = ACTIONS(1481), - [sym_metavariable] = ACTIONS(1479), - [sym_raw_string_literal] = ACTIONS(1479), - [sym_float_literal] = ACTIONS(1479), + [sym_self] = ACTIONS(1483), + [sym_super] = ACTIONS(1483), + [sym_crate] = ACTIONS(1483), + [sym_metavariable] = ACTIONS(1481), + [sym_raw_string_literal] = ACTIONS(1481), + [sym_float_literal] = ACTIONS(1481), [sym_block_comment] = ACTIONS(3), }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_identifier] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_macro_rules_BANG] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1485), - [anon_sym_i8] = ACTIONS(1485), - [anon_sym_u16] = ACTIONS(1485), - [anon_sym_i16] = ACTIONS(1485), - [anon_sym_u32] = ACTIONS(1485), - [anon_sym_i32] = ACTIONS(1485), - [anon_sym_u64] = ACTIONS(1485), - [anon_sym_i64] = ACTIONS(1485), - [anon_sym_u128] = ACTIONS(1485), - [anon_sym_i128] = ACTIONS(1485), - [anon_sym_isize] = ACTIONS(1485), - [anon_sym_usize] = ACTIONS(1485), - [anon_sym_f32] = ACTIONS(1485), - [anon_sym_f64] = ACTIONS(1485), - [anon_sym_bool] = ACTIONS(1485), - [anon_sym_str] = ACTIONS(1485), - [anon_sym_char] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_async] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_impl] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_loop] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_pub] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_trait] = ACTIONS(1485), - [anon_sym_type] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_unsafe] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_COLON_COLON] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_move] = ACTIONS(1485), - [sym_integer_literal] = ACTIONS(1483), - [aux_sym_string_literal_token1] = ACTIONS(1483), - [sym_char_literal] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), + [285] = { + [ts_builtin_sym_end] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_macro_rules_BANG] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1487), + [anon_sym_i8] = ACTIONS(1487), + [anon_sym_u16] = ACTIONS(1487), + [anon_sym_i16] = ACTIONS(1487), + [anon_sym_u32] = ACTIONS(1487), + [anon_sym_i32] = ACTIONS(1487), + [anon_sym_u64] = ACTIONS(1487), + [anon_sym_i64] = ACTIONS(1487), + [anon_sym_u128] = ACTIONS(1487), + [anon_sym_i128] = ACTIONS(1487), + [anon_sym_isize] = ACTIONS(1487), + [anon_sym_usize] = ACTIONS(1487), + [anon_sym_f32] = ACTIONS(1487), + [anon_sym_f64] = ACTIONS(1487), + [anon_sym_bool] = ACTIONS(1487), + [anon_sym_str] = ACTIONS(1487), + [anon_sym_char] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1487), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_impl] = ACTIONS(1487), + [anon_sym_let] = ACTIONS(1487), + [anon_sym_loop] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [anon_sym_mod] = ACTIONS(1487), + [anon_sym_pub] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1487), + [anon_sym_struct] = ACTIONS(1487), + [anon_sym_trait] = ACTIONS(1487), + [anon_sym_type] = ACTIONS(1487), + [anon_sym_union] = ACTIONS(1487), + [anon_sym_unsafe] = ACTIONS(1487), + [anon_sym_use] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_move] = ACTIONS(1487), + [sym_integer_literal] = ACTIONS(1485), + [aux_sym_string_literal_token1] = ACTIONS(1485), + [sym_char_literal] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1485), - [sym_super] = ACTIONS(1485), - [sym_crate] = ACTIONS(1485), - [sym_metavariable] = ACTIONS(1483), - [sym_raw_string_literal] = ACTIONS(1483), - [sym_float_literal] = ACTIONS(1483), + [sym_self] = ACTIONS(1487), + [sym_super] = ACTIONS(1487), + [sym_crate] = ACTIONS(1487), + [sym_metavariable] = ACTIONS(1485), + [sym_raw_string_literal] = ACTIONS(1485), + [sym_float_literal] = ACTIONS(1485), [sym_block_comment] = ACTIONS(3), }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_identifier] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym_macro_rules_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_u8] = ACTIONS(1489), - [anon_sym_i8] = ACTIONS(1489), - [anon_sym_u16] = ACTIONS(1489), - [anon_sym_i16] = ACTIONS(1489), - [anon_sym_u32] = ACTIONS(1489), - [anon_sym_i32] = ACTIONS(1489), - [anon_sym_u64] = ACTIONS(1489), - [anon_sym_i64] = ACTIONS(1489), - [anon_sym_u128] = ACTIONS(1489), - [anon_sym_i128] = ACTIONS(1489), - [anon_sym_isize] = ACTIONS(1489), - [anon_sym_usize] = ACTIONS(1489), - [anon_sym_f32] = ACTIONS(1489), - [anon_sym_f64] = ACTIONS(1489), - [anon_sym_bool] = ACTIONS(1489), - [anon_sym_str] = ACTIONS(1489), - [anon_sym_char] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_impl] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_loop] = ACTIONS(1489), - [anon_sym_match] = ACTIONS(1489), - [anon_sym_mod] = ACTIONS(1489), - [anon_sym_pub] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_trait] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_unsafe] = ACTIONS(1489), - [anon_sym_use] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_COLON_COLON] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_move] = ACTIONS(1489), - [sym_integer_literal] = ACTIONS(1487), - [aux_sym_string_literal_token1] = ACTIONS(1487), - [sym_char_literal] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), + [286] = { + [ts_builtin_sym_end] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_macro_rules_BANG] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_async] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_enum] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_impl] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1491), + [anon_sym_pub] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_trait] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1491), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_move] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1489), + [aux_sym_string_literal_token1] = ACTIONS(1489), + [sym_char_literal] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_crate] = ACTIONS(1489), - [sym_metavariable] = ACTIONS(1487), - [sym_raw_string_literal] = ACTIONS(1487), - [sym_float_literal] = ACTIONS(1487), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym_raw_string_literal] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), [sym_block_comment] = ACTIONS(3), }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_identifier] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_macro_rules_BANG] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_async] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_impl] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_mod] = ACTIONS(1493), - [anon_sym_pub] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_trait] = ACTIONS(1493), - [anon_sym_type] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_unsafe] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_move] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), + [287] = { + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_macro_rules_BANG] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_u8] = ACTIONS(1495), + [anon_sym_i8] = ACTIONS(1495), + [anon_sym_u16] = ACTIONS(1495), + [anon_sym_i16] = ACTIONS(1495), + [anon_sym_u32] = ACTIONS(1495), + [anon_sym_i32] = ACTIONS(1495), + [anon_sym_u64] = ACTIONS(1495), + [anon_sym_i64] = ACTIONS(1495), + [anon_sym_u128] = ACTIONS(1495), + [anon_sym_i128] = ACTIONS(1495), + [anon_sym_isize] = ACTIONS(1495), + [anon_sym_usize] = ACTIONS(1495), + [anon_sym_f32] = ACTIONS(1495), + [anon_sym_f64] = ACTIONS(1495), + [anon_sym_bool] = ACTIONS(1495), + [anon_sym_str] = ACTIONS(1495), + [anon_sym_char] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_impl] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_loop] = ACTIONS(1495), + [anon_sym_match] = ACTIONS(1495), + [anon_sym_mod] = ACTIONS(1495), + [anon_sym_pub] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_struct] = ACTIONS(1495), + [anon_sym_trait] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_unsafe] = ACTIONS(1495), + [anon_sym_use] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_move] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1493), + [aux_sym_string_literal_token1] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym_raw_string_literal] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), + [sym_self] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_crate] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym_raw_string_literal] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), [sym_block_comment] = ACTIONS(3), }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_macro_rules_BANG] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_impl] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_mod] = ACTIONS(1497), - [anon_sym_pub] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_trait] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_unsafe] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_move] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), + [288] = { + [ts_builtin_sym_end] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_macro_rules_BANG] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_impl] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1499), + [anon_sym_pub] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_struct] = ACTIONS(1499), + [anon_sym_trait] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_unsafe] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_move] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym_raw_string_literal] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym_raw_string_literal] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), [sym_block_comment] = ACTIONS(3), }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_identifier] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_macro_rules_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_impl] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_pub] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_trait] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_unsafe] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_move] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), + [289] = { + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_macro_rules_BANG] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_loop] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_unsafe] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_extern] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_move] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym_raw_string_literal] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym_raw_string_literal] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), [sym_block_comment] = ACTIONS(3), }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_identifier] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_macro_rules_BANG] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_impl] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_mod] = ACTIONS(1505), - [anon_sym_pub] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_trait] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_unsafe] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_DOT_DOT] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_move] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), + [290] = { + [ts_builtin_sym_end] = ACTIONS(1505), + [sym_identifier] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_macro_rules_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_impl] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_mod] = ACTIONS(1507), + [anon_sym_pub] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1507), + [anon_sym_struct] = ACTIONS(1507), + [anon_sym_trait] = ACTIONS(1507), + [anon_sym_type] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_unsafe] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym_raw_string_literal] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym_raw_string_literal] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), [sym_block_comment] = ACTIONS(3), }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_loop] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsafe] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_move] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), + [291] = { + [ts_builtin_sym_end] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_macro_rules_BANG] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_async] = ACTIONS(1511), + [anon_sym_break] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_continue] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_enum] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1511), + [anon_sym_for] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1511), + [anon_sym_impl] = ACTIONS(1511), + [anon_sym_let] = ACTIONS(1511), + [anon_sym_loop] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mod] = ACTIONS(1511), + [anon_sym_pub] = ACTIONS(1511), + [anon_sym_return] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_struct] = ACTIONS(1511), + [anon_sym_trait] = ACTIONS(1511), + [anon_sym_type] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_unsafe] = ACTIONS(1511), + [anon_sym_use] = ACTIONS(1511), + [anon_sym_while] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym_raw_string_literal] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym_raw_string_literal] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), [sym_block_comment] = ACTIONS(3), }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_identifier] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_macro_rules_BANG] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_async] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_impl] = ACTIONS(1513), - [anon_sym_let] = ACTIONS(1513), - [anon_sym_loop] = ACTIONS(1513), - [anon_sym_match] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_pub] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_trait] = ACTIONS(1513), - [anon_sym_type] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsafe] = ACTIONS(1513), - [anon_sym_use] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_move] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), + [292] = { + [ts_builtin_sym_end] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_macro_rules_BANG] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_async] = ACTIONS(1515), + [anon_sym_break] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_continue] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1515), + [anon_sym_for] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_impl] = ACTIONS(1515), + [anon_sym_let] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1515), + [anon_sym_match] = ACTIONS(1515), + [anon_sym_mod] = ACTIONS(1515), + [anon_sym_pub] = ACTIONS(1515), + [anon_sym_return] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1515), + [anon_sym_struct] = ACTIONS(1515), + [anon_sym_trait] = ACTIONS(1515), + [anon_sym_type] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_unsafe] = ACTIONS(1515), + [anon_sym_use] = ACTIONS(1515), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym_raw_string_literal] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym_raw_string_literal] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), [sym_block_comment] = ACTIONS(3), }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_identifier] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_macro_rules_BANG] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1517), - [anon_sym_i8] = ACTIONS(1517), - [anon_sym_u16] = ACTIONS(1517), - [anon_sym_i16] = ACTIONS(1517), - [anon_sym_u32] = ACTIONS(1517), - [anon_sym_i32] = ACTIONS(1517), - [anon_sym_u64] = ACTIONS(1517), - [anon_sym_i64] = ACTIONS(1517), - [anon_sym_u128] = ACTIONS(1517), - [anon_sym_i128] = ACTIONS(1517), - [anon_sym_isize] = ACTIONS(1517), - [anon_sym_usize] = ACTIONS(1517), - [anon_sym_f32] = ACTIONS(1517), - [anon_sym_f64] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_str] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_async] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_impl] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_mod] = ACTIONS(1517), - [anon_sym_pub] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_trait] = ACTIONS(1517), - [anon_sym_type] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_unsafe] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_move] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1515), - [aux_sym_string_literal_token1] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), + [293] = { + [ts_builtin_sym_end] = ACTIONS(1517), + [sym_identifier] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_macro_rules_BANG] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_u8] = ACTIONS(1519), + [anon_sym_i8] = ACTIONS(1519), + [anon_sym_u16] = ACTIONS(1519), + [anon_sym_i16] = ACTIONS(1519), + [anon_sym_u32] = ACTIONS(1519), + [anon_sym_i32] = ACTIONS(1519), + [anon_sym_u64] = ACTIONS(1519), + [anon_sym_i64] = ACTIONS(1519), + [anon_sym_u128] = ACTIONS(1519), + [anon_sym_i128] = ACTIONS(1519), + [anon_sym_isize] = ACTIONS(1519), + [anon_sym_usize] = ACTIONS(1519), + [anon_sym_f32] = ACTIONS(1519), + [anon_sym_f64] = ACTIONS(1519), + [anon_sym_bool] = ACTIONS(1519), + [anon_sym_str] = ACTIONS(1519), + [anon_sym_char] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_async] = ACTIONS(1519), + [anon_sym_break] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1519), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_default] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_impl] = ACTIONS(1519), + [anon_sym_let] = ACTIONS(1519), + [anon_sym_loop] = ACTIONS(1519), + [anon_sym_match] = ACTIONS(1519), + [anon_sym_mod] = ACTIONS(1519), + [anon_sym_pub] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_struct] = ACTIONS(1519), + [anon_sym_trait] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1519), + [anon_sym_unsafe] = ACTIONS(1519), + [anon_sym_use] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_move] = ACTIONS(1519), + [sym_integer_literal] = ACTIONS(1517), + [aux_sym_string_literal_token1] = ACTIONS(1517), + [sym_char_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym_raw_string_literal] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), + [sym_self] = ACTIONS(1519), + [sym_super] = ACTIONS(1519), + [sym_crate] = ACTIONS(1519), + [sym_metavariable] = ACTIONS(1517), + [sym_raw_string_literal] = ACTIONS(1517), + [sym_float_literal] = ACTIONS(1517), [sym_block_comment] = ACTIONS(3), }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_move] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), + [294] = { + [ts_builtin_sym_end] = ACTIONS(415), + [sym_identifier] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_macro_rules_BANG] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(415), + [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(417), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_default] = ACTIONS(417), + [anon_sym_enum] = ACTIONS(417), + [anon_sym_fn] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_impl] = ACTIONS(417), + [anon_sym_let] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(417), + [anon_sym_match] = ACTIONS(417), + [anon_sym_mod] = ACTIONS(417), + [anon_sym_pub] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_struct] = ACTIONS(417), + [anon_sym_trait] = ACTIONS(417), + [anon_sym_type] = ACTIONS(417), + [anon_sym_union] = ACTIONS(417), + [anon_sym_unsafe] = ACTIONS(417), + [anon_sym_use] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_extern] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_move] = ACTIONS(417), + [sym_integer_literal] = ACTIONS(415), + [aux_sym_string_literal_token1] = ACTIONS(415), + [sym_char_literal] = ACTIONS(415), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym_raw_string_literal] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), + [sym_self] = ACTIONS(417), + [sym_super] = ACTIONS(417), + [sym_crate] = ACTIONS(417), + [sym_metavariable] = ACTIONS(415), + [sym_raw_string_literal] = ACTIONS(415), + [sym_float_literal] = ACTIONS(415), [sym_block_comment] = ACTIONS(3), }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(1523), - [sym_identifier] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_macro_rules_BANG] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_u8] = ACTIONS(1525), - [anon_sym_i8] = ACTIONS(1525), - [anon_sym_u16] = ACTIONS(1525), - [anon_sym_i16] = ACTIONS(1525), - [anon_sym_u32] = ACTIONS(1525), - [anon_sym_i32] = ACTIONS(1525), - [anon_sym_u64] = ACTIONS(1525), - [anon_sym_i64] = ACTIONS(1525), - [anon_sym_u128] = ACTIONS(1525), - [anon_sym_i128] = ACTIONS(1525), - [anon_sym_isize] = ACTIONS(1525), - [anon_sym_usize] = ACTIONS(1525), - [anon_sym_f32] = ACTIONS(1525), - [anon_sym_f64] = ACTIONS(1525), - [anon_sym_bool] = ACTIONS(1525), - [anon_sym_str] = ACTIONS(1525), - [anon_sym_char] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_async] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_default] = ACTIONS(1525), - [anon_sym_enum] = ACTIONS(1525), - [anon_sym_fn] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_impl] = ACTIONS(1525), - [anon_sym_let] = ACTIONS(1525), - [anon_sym_loop] = ACTIONS(1525), - [anon_sym_match] = ACTIONS(1525), - [anon_sym_mod] = ACTIONS(1525), - [anon_sym_pub] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_struct] = ACTIONS(1525), - [anon_sym_trait] = ACTIONS(1525), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_union] = ACTIONS(1525), - [anon_sym_unsafe] = ACTIONS(1525), - [anon_sym_use] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(1525), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_COLON_COLON] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_move] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1523), - [aux_sym_string_literal_token1] = ACTIONS(1523), - [sym_char_literal] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(1525), - [anon_sym_false] = ACTIONS(1525), + [295] = { + [ts_builtin_sym_end] = ACTIONS(1521), + [sym_identifier] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_macro_rules_BANG] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_async] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_impl] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_mod] = ACTIONS(1523), + [anon_sym_pub] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_struct] = ACTIONS(1523), + [anon_sym_trait] = ACTIONS(1523), + [anon_sym_type] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_unsafe] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1525), - [sym_super] = ACTIONS(1525), - [sym_crate] = ACTIONS(1525), - [sym_metavariable] = ACTIONS(1523), - [sym_raw_string_literal] = ACTIONS(1523), - [sym_float_literal] = ACTIONS(1523), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym_raw_string_literal] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), [sym_block_comment] = ACTIONS(3), }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_identifier] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_macro_rules_BANG] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_u8] = ACTIONS(1529), - [anon_sym_i8] = ACTIONS(1529), - [anon_sym_u16] = ACTIONS(1529), - [anon_sym_i16] = ACTIONS(1529), - [anon_sym_u32] = ACTIONS(1529), - [anon_sym_i32] = ACTIONS(1529), - [anon_sym_u64] = ACTIONS(1529), - [anon_sym_i64] = ACTIONS(1529), - [anon_sym_u128] = ACTIONS(1529), - [anon_sym_i128] = ACTIONS(1529), - [anon_sym_isize] = ACTIONS(1529), - [anon_sym_usize] = ACTIONS(1529), - [anon_sym_f32] = ACTIONS(1529), - [anon_sym_f64] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_str] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_async] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_impl] = ACTIONS(1529), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_loop] = ACTIONS(1529), - [anon_sym_match] = ACTIONS(1529), - [anon_sym_mod] = ACTIONS(1529), - [anon_sym_pub] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_trait] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_unsafe] = ACTIONS(1529), - [anon_sym_use] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_move] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1527), - [aux_sym_string_literal_token1] = ACTIONS(1527), - [sym_char_literal] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), + [296] = { + [ts_builtin_sym_end] = ACTIONS(1525), + [sym_identifier] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_macro_rules_BANG] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_u8] = ACTIONS(1527), + [anon_sym_i8] = ACTIONS(1527), + [anon_sym_u16] = ACTIONS(1527), + [anon_sym_i16] = ACTIONS(1527), + [anon_sym_u32] = ACTIONS(1527), + [anon_sym_i32] = ACTIONS(1527), + [anon_sym_u64] = ACTIONS(1527), + [anon_sym_i64] = ACTIONS(1527), + [anon_sym_u128] = ACTIONS(1527), + [anon_sym_i128] = ACTIONS(1527), + [anon_sym_isize] = ACTIONS(1527), + [anon_sym_usize] = ACTIONS(1527), + [anon_sym_f32] = ACTIONS(1527), + [anon_sym_f64] = ACTIONS(1527), + [anon_sym_bool] = ACTIONS(1527), + [anon_sym_str] = ACTIONS(1527), + [anon_sym_char] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_async] = ACTIONS(1527), + [anon_sym_break] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1527), + [anon_sym_continue] = ACTIONS(1527), + [anon_sym_default] = ACTIONS(1527), + [anon_sym_enum] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1527), + [anon_sym_for] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1527), + [anon_sym_impl] = ACTIONS(1527), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_loop] = ACTIONS(1527), + [anon_sym_match] = ACTIONS(1527), + [anon_sym_mod] = ACTIONS(1527), + [anon_sym_pub] = ACTIONS(1527), + [anon_sym_return] = ACTIONS(1527), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_struct] = ACTIONS(1527), + [anon_sym_trait] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_union] = ACTIONS(1527), + [anon_sym_unsafe] = ACTIONS(1527), + [anon_sym_use] = ACTIONS(1527), + [anon_sym_while] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_COLON_COLON] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1525), + [aux_sym_string_literal_token1] = ACTIONS(1525), + [sym_char_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1527), + [anon_sym_false] = ACTIONS(1527), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_crate] = ACTIONS(1529), - [sym_metavariable] = ACTIONS(1527), - [sym_raw_string_literal] = ACTIONS(1527), - [sym_float_literal] = ACTIONS(1527), + [sym_self] = ACTIONS(1527), + [sym_super] = ACTIONS(1527), + [sym_crate] = ACTIONS(1527), + [sym_metavariable] = ACTIONS(1525), + [sym_raw_string_literal] = ACTIONS(1525), + [sym_float_literal] = ACTIONS(1525), [sym_block_comment] = ACTIONS(3), }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_macro_rules_BANG] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_impl] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_loop] = ACTIONS(1533), - [anon_sym_match] = ACTIONS(1533), - [anon_sym_mod] = ACTIONS(1533), - [anon_sym_pub] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_trait] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsafe] = ACTIONS(1533), - [anon_sym_use] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_move] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), + [297] = { + [ts_builtin_sym_end] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_macro_rules_BANG] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_u8] = ACTIONS(1531), + [anon_sym_i8] = ACTIONS(1531), + [anon_sym_u16] = ACTIONS(1531), + [anon_sym_i16] = ACTIONS(1531), + [anon_sym_u32] = ACTIONS(1531), + [anon_sym_i32] = ACTIONS(1531), + [anon_sym_u64] = ACTIONS(1531), + [anon_sym_i64] = ACTIONS(1531), + [anon_sym_u128] = ACTIONS(1531), + [anon_sym_i128] = ACTIONS(1531), + [anon_sym_isize] = ACTIONS(1531), + [anon_sym_usize] = ACTIONS(1531), + [anon_sym_f32] = ACTIONS(1531), + [anon_sym_f64] = ACTIONS(1531), + [anon_sym_bool] = ACTIONS(1531), + [anon_sym_str] = ACTIONS(1531), + [anon_sym_char] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_break] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_continue] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1531), + [anon_sym_for] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_impl] = ACTIONS(1531), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_loop] = ACTIONS(1531), + [anon_sym_match] = ACTIONS(1531), + [anon_sym_mod] = ACTIONS(1531), + [anon_sym_pub] = ACTIONS(1531), + [anon_sym_return] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(1531), + [anon_sym_struct] = ACTIONS(1531), + [anon_sym_trait] = ACTIONS(1531), + [anon_sym_type] = ACTIONS(1531), + [anon_sym_union] = ACTIONS(1531), + [anon_sym_unsafe] = ACTIONS(1531), + [anon_sym_use] = ACTIONS(1531), + [anon_sym_while] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1531), + [sym_integer_literal] = ACTIONS(1529), + [aux_sym_string_literal_token1] = ACTIONS(1529), + [sym_char_literal] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1531), + [anon_sym_false] = ACTIONS(1531), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym_raw_string_literal] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [sym_self] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_crate] = ACTIONS(1531), + [sym_metavariable] = ACTIONS(1529), + [sym_raw_string_literal] = ACTIONS(1529), + [sym_float_literal] = ACTIONS(1529), [sym_block_comment] = ACTIONS(3), }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_macro_rules_BANG] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_impl] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_loop] = ACTIONS(1537), - [anon_sym_match] = ACTIONS(1537), - [anon_sym_mod] = ACTIONS(1537), - [anon_sym_pub] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_trait] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_unsafe] = ACTIONS(1537), - [anon_sym_use] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1535), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_move] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), + [298] = { + [ts_builtin_sym_end] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_macro_rules_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_u8] = ACTIONS(1535), + [anon_sym_i8] = ACTIONS(1535), + [anon_sym_u16] = ACTIONS(1535), + [anon_sym_i16] = ACTIONS(1535), + [anon_sym_u32] = ACTIONS(1535), + [anon_sym_i32] = ACTIONS(1535), + [anon_sym_u64] = ACTIONS(1535), + [anon_sym_i64] = ACTIONS(1535), + [anon_sym_u128] = ACTIONS(1535), + [anon_sym_i128] = ACTIONS(1535), + [anon_sym_isize] = ACTIONS(1535), + [anon_sym_usize] = ACTIONS(1535), + [anon_sym_f32] = ACTIONS(1535), + [anon_sym_f64] = ACTIONS(1535), + [anon_sym_bool] = ACTIONS(1535), + [anon_sym_str] = ACTIONS(1535), + [anon_sym_char] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_impl] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_loop] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mod] = ACTIONS(1535), + [anon_sym_pub] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1535), + [anon_sym_trait] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1535), + [anon_sym_unsafe] = ACTIONS(1535), + [anon_sym_use] = ACTIONS(1535), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_move] = ACTIONS(1535), + [sym_integer_literal] = ACTIONS(1533), + [aux_sym_string_literal_token1] = ACTIONS(1533), + [sym_char_literal] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1535), + [anon_sym_false] = ACTIONS(1535), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym_raw_string_literal] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [sym_self] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_crate] = ACTIONS(1535), + [sym_metavariable] = ACTIONS(1533), + [sym_raw_string_literal] = ACTIONS(1533), + [sym_float_literal] = ACTIONS(1533), [sym_block_comment] = ACTIONS(3), }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_async] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_impl] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1541), - [anon_sym_loop] = ACTIONS(1541), - [anon_sym_match] = ACTIONS(1541), - [anon_sym_mod] = ACTIONS(1541), - [anon_sym_pub] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_trait] = ACTIONS(1541), - [anon_sym_type] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_unsafe] = ACTIONS(1541), - [anon_sym_use] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_move] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), + [299] = { + [ts_builtin_sym_end] = ACTIONS(1537), + [sym_identifier] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_macro_rules_BANG] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_u8] = ACTIONS(1539), + [anon_sym_i8] = ACTIONS(1539), + [anon_sym_u16] = ACTIONS(1539), + [anon_sym_i16] = ACTIONS(1539), + [anon_sym_u32] = ACTIONS(1539), + [anon_sym_i32] = ACTIONS(1539), + [anon_sym_u64] = ACTIONS(1539), + [anon_sym_i64] = ACTIONS(1539), + [anon_sym_u128] = ACTIONS(1539), + [anon_sym_i128] = ACTIONS(1539), + [anon_sym_isize] = ACTIONS(1539), + [anon_sym_usize] = ACTIONS(1539), + [anon_sym_f32] = ACTIONS(1539), + [anon_sym_f64] = ACTIONS(1539), + [anon_sym_bool] = ACTIONS(1539), + [anon_sym_str] = ACTIONS(1539), + [anon_sym_char] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_break] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(1539), + [anon_sym_continue] = ACTIONS(1539), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_enum] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1539), + [anon_sym_for] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1539), + [anon_sym_impl] = ACTIONS(1539), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_loop] = ACTIONS(1539), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_mod] = ACTIONS(1539), + [anon_sym_pub] = ACTIONS(1539), + [anon_sym_return] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1539), + [anon_sym_trait] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_union] = ACTIONS(1539), + [anon_sym_unsafe] = ACTIONS(1539), + [anon_sym_use] = ACTIONS(1539), + [anon_sym_while] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_COLON_COLON] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_move] = ACTIONS(1539), + [sym_integer_literal] = ACTIONS(1537), + [aux_sym_string_literal_token1] = ACTIONS(1537), + [sym_char_literal] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1539), + [anon_sym_false] = ACTIONS(1539), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym_raw_string_literal] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [sym_self] = ACTIONS(1539), + [sym_super] = ACTIONS(1539), + [sym_crate] = ACTIONS(1539), + [sym_metavariable] = ACTIONS(1537), + [sym_raw_string_literal] = ACTIONS(1537), + [sym_float_literal] = ACTIONS(1537), [sym_block_comment] = ACTIONS(3), }, - [305] = { - [sym__token_pattern] = STATE(432), - [sym_token_tree_pattern] = STATE(432), - [sym_token_binding_pattern] = STATE(432), - [sym_token_repetition_pattern] = STATE(432), - [sym__literal] = STATE(432), - [sym_string_literal] = STATE(432), - [sym_boolean_literal] = STATE(432), - [aux_sym_token_tree_pattern_repeat1] = STATE(432), + [300] = { + [ts_builtin_sym_end] = ACTIONS(1541), [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_macro_rules_BANG] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_u8] = ACTIONS(1543), + [anon_sym_i8] = ACTIONS(1543), + [anon_sym_u16] = ACTIONS(1543), + [anon_sym_i16] = ACTIONS(1543), + [anon_sym_u32] = ACTIONS(1543), + [anon_sym_i32] = ACTIONS(1543), + [anon_sym_u64] = ACTIONS(1543), + [anon_sym_i64] = ACTIONS(1543), + [anon_sym_u128] = ACTIONS(1543), + [anon_sym_i128] = ACTIONS(1543), + [anon_sym_isize] = ACTIONS(1543), + [anon_sym_usize] = ACTIONS(1543), + [anon_sym_f32] = ACTIONS(1543), + [anon_sym_f64] = ACTIONS(1543), + [anon_sym_bool] = ACTIONS(1543), + [anon_sym_str] = ACTIONS(1543), + [anon_sym_char] = ACTIONS(1543), [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1543), [anon_sym_async] = ACTIONS(1543), - [anon_sym_await] = ACTIONS(1543), [anon_sym_break] = ACTIONS(1543), [anon_sym_const] = ACTIONS(1543), [anon_sym_continue] = ACTIONS(1543), @@ -37469,23 +37186,411 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1543), [anon_sym_unsafe] = ACTIONS(1543), [anon_sym_use] = ACTIONS(1543), - [anon_sym_where] = ACTIONS(1543), [anon_sym_while] = ACTIONS(1543), - [sym_mutable_specifier] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1557), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_COLON_COLON] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_move] = ACTIONS(1543), + [sym_integer_literal] = ACTIONS(1541), + [aux_sym_string_literal_token1] = ACTIONS(1541), + [sym_char_literal] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1543), [sym_super] = ACTIONS(1543), [sym_crate] = ACTIONS(1543), - [sym_metavariable] = ACTIONS(1563), + [sym_metavariable] = ACTIONS(1541), + [sym_raw_string_literal] = ACTIONS(1541), + [sym_float_literal] = ACTIONS(1541), + [sym_block_comment] = ACTIONS(3), + }, + [301] = { + [ts_builtin_sym_end] = ACTIONS(1545), + [sym_identifier] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_macro_rules_BANG] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_u8] = ACTIONS(1547), + [anon_sym_i8] = ACTIONS(1547), + [anon_sym_u16] = ACTIONS(1547), + [anon_sym_i16] = ACTIONS(1547), + [anon_sym_u32] = ACTIONS(1547), + [anon_sym_i32] = ACTIONS(1547), + [anon_sym_u64] = ACTIONS(1547), + [anon_sym_i64] = ACTIONS(1547), + [anon_sym_u128] = ACTIONS(1547), + [anon_sym_i128] = ACTIONS(1547), + [anon_sym_isize] = ACTIONS(1547), + [anon_sym_usize] = ACTIONS(1547), + [anon_sym_f32] = ACTIONS(1547), + [anon_sym_f64] = ACTIONS(1547), + [anon_sym_bool] = ACTIONS(1547), + [anon_sym_str] = ACTIONS(1547), + [anon_sym_char] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_impl] = ACTIONS(1547), + [anon_sym_let] = ACTIONS(1547), + [anon_sym_loop] = ACTIONS(1547), + [anon_sym_match] = ACTIONS(1547), + [anon_sym_mod] = ACTIONS(1547), + [anon_sym_pub] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1547), + [anon_sym_struct] = ACTIONS(1547), + [anon_sym_trait] = ACTIONS(1547), + [anon_sym_type] = ACTIONS(1547), + [anon_sym_union] = ACTIONS(1547), + [anon_sym_unsafe] = ACTIONS(1547), + [anon_sym_use] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_COLON_COLON] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_move] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1545), + [aux_sym_string_literal_token1] = ACTIONS(1545), + [sym_char_literal] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1547), + [sym_super] = ACTIONS(1547), + [sym_crate] = ACTIONS(1547), + [sym_metavariable] = ACTIONS(1545), + [sym_raw_string_literal] = ACTIONS(1545), + [sym_float_literal] = ACTIONS(1545), + [sym_block_comment] = ACTIONS(3), + }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_macro_rules_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_u8] = ACTIONS(1551), + [anon_sym_i8] = ACTIONS(1551), + [anon_sym_u16] = ACTIONS(1551), + [anon_sym_i16] = ACTIONS(1551), + [anon_sym_u32] = ACTIONS(1551), + [anon_sym_i32] = ACTIONS(1551), + [anon_sym_u64] = ACTIONS(1551), + [anon_sym_i64] = ACTIONS(1551), + [anon_sym_u128] = ACTIONS(1551), + [anon_sym_i128] = ACTIONS(1551), + [anon_sym_isize] = ACTIONS(1551), + [anon_sym_usize] = ACTIONS(1551), + [anon_sym_f32] = ACTIONS(1551), + [anon_sym_f64] = ACTIONS(1551), + [anon_sym_bool] = ACTIONS(1551), + [anon_sym_str] = ACTIONS(1551), + [anon_sym_char] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_async] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_enum] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_impl] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_pub] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1551), + [anon_sym_struct] = ACTIONS(1551), + [anon_sym_trait] = ACTIONS(1551), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_union] = ACTIONS(1551), + [anon_sym_unsafe] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_COLON_COLON] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_move] = ACTIONS(1551), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1549), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1549), + [sym_raw_string_literal] = ACTIONS(1549), + [sym_float_literal] = ACTIONS(1549), + [sym_block_comment] = ACTIONS(3), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_macro_rules_BANG] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_u8] = ACTIONS(1555), + [anon_sym_i8] = ACTIONS(1555), + [anon_sym_u16] = ACTIONS(1555), + [anon_sym_i16] = ACTIONS(1555), + [anon_sym_u32] = ACTIONS(1555), + [anon_sym_i32] = ACTIONS(1555), + [anon_sym_u64] = ACTIONS(1555), + [anon_sym_i64] = ACTIONS(1555), + [anon_sym_u128] = ACTIONS(1555), + [anon_sym_i128] = ACTIONS(1555), + [anon_sym_isize] = ACTIONS(1555), + [anon_sym_usize] = ACTIONS(1555), + [anon_sym_f32] = ACTIONS(1555), + [anon_sym_f64] = ACTIONS(1555), + [anon_sym_bool] = ACTIONS(1555), + [anon_sym_str] = ACTIONS(1555), + [anon_sym_char] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_impl] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_loop] = ACTIONS(1555), + [anon_sym_match] = ACTIONS(1555), + [anon_sym_mod] = ACTIONS(1555), + [anon_sym_pub] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_static] = ACTIONS(1555), + [anon_sym_struct] = ACTIONS(1555), + [anon_sym_trait] = ACTIONS(1555), + [anon_sym_type] = ACTIONS(1555), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_unsafe] = ACTIONS(1555), + [anon_sym_use] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_move] = ACTIONS(1555), + [sym_integer_literal] = ACTIONS(1553), + [aux_sym_string_literal_token1] = ACTIONS(1553), + [sym_char_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1555), + [anon_sym_false] = ACTIONS(1555), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_crate] = ACTIONS(1555), + [sym_metavariable] = ACTIONS(1553), + [sym_raw_string_literal] = ACTIONS(1553), + [sym_float_literal] = ACTIONS(1553), + [sym_block_comment] = ACTIONS(3), + }, + [304] = { + [ts_builtin_sym_end] = ACTIONS(1557), + [sym_identifier] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_macro_rules_BANG] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_u8] = ACTIONS(1559), + [anon_sym_i8] = ACTIONS(1559), + [anon_sym_u16] = ACTIONS(1559), + [anon_sym_i16] = ACTIONS(1559), + [anon_sym_u32] = ACTIONS(1559), + [anon_sym_i32] = ACTIONS(1559), + [anon_sym_u64] = ACTIONS(1559), + [anon_sym_i64] = ACTIONS(1559), + [anon_sym_u128] = ACTIONS(1559), + [anon_sym_i128] = ACTIONS(1559), + [anon_sym_isize] = ACTIONS(1559), + [anon_sym_usize] = ACTIONS(1559), + [anon_sym_f32] = ACTIONS(1559), + [anon_sym_f64] = ACTIONS(1559), + [anon_sym_bool] = ACTIONS(1559), + [anon_sym_str] = ACTIONS(1559), + [anon_sym_char] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_async] = ACTIONS(1559), + [anon_sym_break] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1559), + [anon_sym_continue] = ACTIONS(1559), + [anon_sym_default] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1559), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_impl] = ACTIONS(1559), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1559), + [anon_sym_match] = ACTIONS(1559), + [anon_sym_mod] = ACTIONS(1559), + [anon_sym_pub] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_struct] = ACTIONS(1559), + [anon_sym_trait] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_union] = ACTIONS(1559), + [anon_sym_unsafe] = ACTIONS(1559), + [anon_sym_use] = ACTIONS(1559), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_extern] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_COLON_COLON] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_move] = ACTIONS(1559), + [sym_integer_literal] = ACTIONS(1557), + [aux_sym_string_literal_token1] = ACTIONS(1557), + [sym_char_literal] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1559), + [anon_sym_false] = ACTIONS(1559), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1559), + [sym_super] = ACTIONS(1559), + [sym_crate] = ACTIONS(1559), + [sym_metavariable] = ACTIONS(1557), [sym_raw_string_literal] = ACTIONS(1557), [sym_float_literal] = ACTIONS(1557), [sym_block_comment] = ACTIONS(3), }, + [305] = { + [ts_builtin_sym_end] = ACTIONS(1561), + [sym_identifier] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_macro_rules_BANG] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_async] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_impl] = ACTIONS(1563), + [anon_sym_let] = ACTIONS(1563), + [anon_sym_loop] = ACTIONS(1563), + [anon_sym_match] = ACTIONS(1563), + [anon_sym_mod] = ACTIONS(1563), + [anon_sym_pub] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_trait] = ACTIONS(1563), + [anon_sym_type] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_unsafe] = ACTIONS(1563), + [anon_sym_use] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_COLON_COLON] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_move] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1561), + [aux_sym_string_literal_token1] = ACTIONS(1561), + [sym_char_literal] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_crate] = ACTIONS(1563), + [sym_metavariable] = ACTIONS(1561), + [sym_raw_string_literal] = ACTIONS(1561), + [sym_float_literal] = ACTIONS(1561), + [sym_block_comment] = ACTIONS(3), + }, [306] = { [ts_builtin_sym_end] = ACTIONS(1565), [sym_identifier] = ACTIONS(1567), @@ -38019,6 +38124,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [313] = { + [ts_builtin_sym_end] = ACTIONS(411), + [sym_identifier] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_macro_rules_BANG] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(411), + [anon_sym_u8] = ACTIONS(413), + [anon_sym_i8] = ACTIONS(413), + [anon_sym_u16] = ACTIONS(413), + [anon_sym_i16] = ACTIONS(413), + [anon_sym_u32] = ACTIONS(413), + [anon_sym_i32] = ACTIONS(413), + [anon_sym_u64] = ACTIONS(413), + [anon_sym_i64] = ACTIONS(413), + [anon_sym_u128] = ACTIONS(413), + [anon_sym_i128] = ACTIONS(413), + [anon_sym_isize] = ACTIONS(413), + [anon_sym_usize] = ACTIONS(413), + [anon_sym_f32] = ACTIONS(413), + [anon_sym_f64] = ACTIONS(413), + [anon_sym_bool] = ACTIONS(413), + [anon_sym_str] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_async] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_const] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_default] = ACTIONS(413), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_fn] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_impl] = ACTIONS(413), + [anon_sym_let] = ACTIONS(413), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(413), + [anon_sym_mod] = ACTIONS(413), + [anon_sym_pub] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_trait] = ACTIONS(413), + [anon_sym_type] = ACTIONS(413), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(413), + [anon_sym_use] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_POUND] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(411), + [anon_sym_extern] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_move] = ACTIONS(413), + [sym_integer_literal] = ACTIONS(411), + [aux_sym_string_literal_token1] = ACTIONS(411), + [sym_char_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_crate] = ACTIONS(413), + [sym_metavariable] = ACTIONS(411), + [sym_raw_string_literal] = ACTIONS(411), + [sym_float_literal] = ACTIONS(411), + [sym_block_comment] = ACTIONS(3), + }, + [314] = { [ts_builtin_sym_end] = ACTIONS(1593), [sym_identifier] = ACTIONS(1595), [anon_sym_SEMI] = ACTIONS(1593), @@ -38094,7 +38275,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1593), [sym_block_comment] = ACTIONS(3), }, - [314] = { + [315] = { [ts_builtin_sym_end] = ACTIONS(1597), [sym_identifier] = ACTIONS(1599), [anon_sym_SEMI] = ACTIONS(1597), @@ -38170,7 +38351,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1597), [sym_block_comment] = ACTIONS(3), }, - [315] = { + [316] = { [ts_builtin_sym_end] = ACTIONS(1601), [sym_identifier] = ACTIONS(1603), [anon_sym_SEMI] = ACTIONS(1601), @@ -38246,271 +38427,187 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1601), [sym_block_comment] = ACTIONS(3), }, - [316] = { - [ts_builtin_sym_end] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_macro_rules_BANG] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_RBRACE] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_u8] = ACTIONS(1607), - [anon_sym_i8] = ACTIONS(1607), - [anon_sym_u16] = ACTIONS(1607), - [anon_sym_i16] = ACTIONS(1607), - [anon_sym_u32] = ACTIONS(1607), - [anon_sym_i32] = ACTIONS(1607), - [anon_sym_u64] = ACTIONS(1607), - [anon_sym_i64] = ACTIONS(1607), - [anon_sym_u128] = ACTIONS(1607), - [anon_sym_i128] = ACTIONS(1607), - [anon_sym_isize] = ACTIONS(1607), - [anon_sym_usize] = ACTIONS(1607), - [anon_sym_f32] = ACTIONS(1607), - [anon_sym_f64] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_str] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_default] = ACTIONS(1607), - [anon_sym_enum] = ACTIONS(1607), - [anon_sym_fn] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_impl] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1607), - [anon_sym_pub] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_struct] = ACTIONS(1607), - [anon_sym_trait] = ACTIONS(1607), - [anon_sym_type] = ACTIONS(1607), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_unsafe] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym_COLON_COLON] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_move] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1605), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1605), - [sym_raw_string_literal] = ACTIONS(1605), - [sym_float_literal] = ACTIONS(1605), - [sym_block_comment] = ACTIONS(3), - }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1609), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_macro_rules_BANG] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_u8] = ACTIONS(1611), - [anon_sym_i8] = ACTIONS(1611), - [anon_sym_u16] = ACTIONS(1611), - [anon_sym_i16] = ACTIONS(1611), - [anon_sym_u32] = ACTIONS(1611), - [anon_sym_i32] = ACTIONS(1611), - [anon_sym_u64] = ACTIONS(1611), - [anon_sym_i64] = ACTIONS(1611), - [anon_sym_u128] = ACTIONS(1611), - [anon_sym_i128] = ACTIONS(1611), - [anon_sym_isize] = ACTIONS(1611), - [anon_sym_usize] = ACTIONS(1611), - [anon_sym_f32] = ACTIONS(1611), - [anon_sym_f64] = ACTIONS(1611), - [anon_sym_bool] = ACTIONS(1611), - [anon_sym_str] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1611), - [anon_sym_enum] = ACTIONS(1611), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_impl] = ACTIONS(1611), - [anon_sym_let] = ACTIONS(1611), - [anon_sym_loop] = ACTIONS(1611), - [anon_sym_match] = ACTIONS(1611), - [anon_sym_mod] = ACTIONS(1611), - [anon_sym_pub] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1611), - [anon_sym_trait] = ACTIONS(1611), - [anon_sym_type] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1611), - [anon_sym_unsafe] = ACTIONS(1611), - [anon_sym_use] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_POUND] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_extern] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(1609), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_move] = ACTIONS(1611), + [sym__token_pattern] = STATE(233), + [sym_token_tree_pattern] = STATE(233), + [sym_token_binding_pattern] = STATE(233), + [sym_token_repetition_pattern] = STATE(233), + [sym__literal] = STATE(233), + [sym_string_literal] = STATE(233), + [sym_boolean_literal] = STATE(233), + [aux_sym_token_tree_pattern_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_impl] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1605), + [anon_sym_pub] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_trait] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_unsafe] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [sym_mutable_specifier] = ACTIONS(1605), [sym_integer_literal] = ACTIONS(1609), - [aux_sym_string_literal_token1] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1437), [sym_char_literal] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1611), - [anon_sym_false] = ACTIONS(1611), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1611), - [sym_super] = ACTIONS(1611), - [sym_crate] = ACTIONS(1611), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1605), + [sym_crate] = ACTIONS(1605), + [sym_metavariable] = ACTIONS(1441), [sym_raw_string_literal] = ACTIONS(1609), [sym_float_literal] = ACTIONS(1609), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1613), - [sym_identifier] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_macro_rules_BANG] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_RBRACE] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_u8] = ACTIONS(1615), - [anon_sym_i8] = ACTIONS(1615), - [anon_sym_u16] = ACTIONS(1615), - [anon_sym_i16] = ACTIONS(1615), - [anon_sym_u32] = ACTIONS(1615), - [anon_sym_i32] = ACTIONS(1615), - [anon_sym_u64] = ACTIONS(1615), - [anon_sym_i64] = ACTIONS(1615), - [anon_sym_u128] = ACTIONS(1615), - [anon_sym_i128] = ACTIONS(1615), - [anon_sym_isize] = ACTIONS(1615), - [anon_sym_usize] = ACTIONS(1615), - [anon_sym_f32] = ACTIONS(1615), - [anon_sym_f64] = ACTIONS(1615), - [anon_sym_bool] = ACTIONS(1615), - [anon_sym_str] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1615), - [anon_sym_async] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_fn] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1615), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_loop] = ACTIONS(1615), - [anon_sym_match] = ACTIONS(1615), - [anon_sym_mod] = ACTIONS(1615), - [anon_sym_pub] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_trait] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1615), - [anon_sym_use] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1613), - [anon_sym_COLON_COLON] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_DOT_DOT] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_PIPE] = ACTIONS(1613), - [anon_sym_move] = ACTIONS(1615), - [sym_integer_literal] = ACTIONS(1613), - [aux_sym_string_literal_token1] = ACTIONS(1613), - [sym_char_literal] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(1615), - [anon_sym_false] = ACTIONS(1615), + [ts_builtin_sym_end] = ACTIONS(1611), + [sym_identifier] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_macro_rules_BANG] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_SQUOTE] = ACTIONS(1613), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_enum] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_impl] = ACTIONS(1613), + [anon_sym_let] = ACTIONS(1613), + [anon_sym_loop] = ACTIONS(1613), + [anon_sym_match] = ACTIONS(1613), + [anon_sym_mod] = ACTIONS(1613), + [anon_sym_pub] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_struct] = ACTIONS(1613), + [anon_sym_trait] = ACTIONS(1613), + [anon_sym_type] = ACTIONS(1613), + [anon_sym_union] = ACTIONS(1613), + [anon_sym_unsafe] = ACTIONS(1613), + [anon_sym_use] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_POUND] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_extern] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_COLON_COLON] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_DOT_DOT] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_move] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1611), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1615), - [sym_super] = ACTIONS(1615), - [sym_crate] = ACTIONS(1615), - [sym_metavariable] = ACTIONS(1613), - [sym_raw_string_literal] = ACTIONS(1613), - [sym_float_literal] = ACTIONS(1613), + [sym_self] = ACTIONS(1613), + [sym_super] = ACTIONS(1613), + [sym_crate] = ACTIONS(1613), + [sym_metavariable] = ACTIONS(1611), + [sym_raw_string_literal] = ACTIONS(1611), + [sym_float_literal] = ACTIONS(1611), [sym_block_comment] = ACTIONS(3), }, [319] = { - [sym__token_pattern] = STATE(211), - [sym_token_tree_pattern] = STATE(211), - [sym_token_binding_pattern] = STATE(211), - [sym_token_repetition_pattern] = STATE(211), - [sym__literal] = STATE(211), - [sym_string_literal] = STATE(211), - [sym_boolean_literal] = STATE(211), - [aux_sym_token_tree_pattern_repeat1] = STATE(211), + [ts_builtin_sym_end] = ACTIONS(1615), [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_RBRACK] = ACTIONS(1619), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_macro_rules_BANG] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_u8] = ACTIONS(1617), + [anon_sym_i8] = ACTIONS(1617), + [anon_sym_u16] = ACTIONS(1617), + [anon_sym_i16] = ACTIONS(1617), + [anon_sym_u32] = ACTIONS(1617), + [anon_sym_i32] = ACTIONS(1617), + [anon_sym_u64] = ACTIONS(1617), + [anon_sym_i64] = ACTIONS(1617), + [anon_sym_u128] = ACTIONS(1617), + [anon_sym_i128] = ACTIONS(1617), + [anon_sym_isize] = ACTIONS(1617), + [anon_sym_usize] = ACTIONS(1617), + [anon_sym_f32] = ACTIONS(1617), + [anon_sym_f64] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_str] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1617), [anon_sym_async] = ACTIONS(1617), - [anon_sym_await] = ACTIONS(1617), [anon_sym_break] = ACTIONS(1617), [anon_sym_const] = ACTIONS(1617), [anon_sym_continue] = ACTIONS(1617), @@ -38533,176 +38630,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1617), [anon_sym_unsafe] = ACTIONS(1617), [anon_sym_use] = ACTIONS(1617), - [anon_sym_where] = ACTIONS(1617), [anon_sym_while] = ACTIONS(1617), - [sym_mutable_specifier] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1621), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1615), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_extern] = ACTIONS(1617), + [anon_sym_LT] = ACTIONS(1615), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_DOT_DOT] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PIPE] = ACTIONS(1615), + [anon_sym_move] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1615), + [aux_sym_string_literal_token1] = ACTIONS(1615), + [sym_char_literal] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1617), [sym_super] = ACTIONS(1617), [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1621), - [sym_float_literal] = ACTIONS(1621), + [sym_metavariable] = ACTIONS(1615), + [sym_raw_string_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1615), [sym_block_comment] = ACTIONS(3), }, [320] = { - [sym__token_pattern] = STATE(211), - [sym_token_tree_pattern] = STATE(211), - [sym_token_binding_pattern] = STATE(211), - [sym_token_repetition_pattern] = STATE(211), - [sym__literal] = STATE(211), - [sym_string_literal] = STATE(211), - [sym_boolean_literal] = STATE(211), - [aux_sym_token_tree_pattern_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1549), + [ts_builtin_sym_end] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_macro_rules_BANG] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), [anon_sym_RBRACE] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_await] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_default] = ACTIONS(1617), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_impl] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_mod] = ACTIONS(1617), - [anon_sym_pub] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_trait] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_union] = ACTIONS(1617), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_where] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [sym_mutable_specifier] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1621), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1617), - [sym_super] = ACTIONS(1617), - [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1621), - [sym_float_literal] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_u8] = ACTIONS(1621), + [anon_sym_i8] = ACTIONS(1621), + [anon_sym_u16] = ACTIONS(1621), + [anon_sym_i16] = ACTIONS(1621), + [anon_sym_u32] = ACTIONS(1621), + [anon_sym_i32] = ACTIONS(1621), + [anon_sym_u64] = ACTIONS(1621), + [anon_sym_i64] = ACTIONS(1621), + [anon_sym_u128] = ACTIONS(1621), + [anon_sym_i128] = ACTIONS(1621), + [anon_sym_isize] = ACTIONS(1621), + [anon_sym_usize] = ACTIONS(1621), + [anon_sym_f32] = ACTIONS(1621), + [anon_sym_f64] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_str] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_enum] = ACTIONS(1621), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_impl] = ACTIONS(1621), + [anon_sym_let] = ACTIONS(1621), + [anon_sym_loop] = ACTIONS(1621), + [anon_sym_match] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1621), + [anon_sym_pub] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_trait] = ACTIONS(1621), + [anon_sym_type] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_unsafe] = ACTIONS(1621), + [anon_sym_use] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1621), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_COLON_COLON] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_DOT_DOT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_move] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1619), + [aux_sym_string_literal_token1] = ACTIONS(1619), + [sym_char_literal] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1621), + [sym_super] = ACTIONS(1621), + [sym_crate] = ACTIONS(1621), + [sym_metavariable] = ACTIONS(1619), + [sym_raw_string_literal] = ACTIONS(1619), + [sym_float_literal] = ACTIONS(1619), [sym_block_comment] = ACTIONS(3), }, [321] = { - [sym__token_pattern] = STATE(211), - [sym_token_tree_pattern] = STATE(211), - [sym_token_binding_pattern] = STATE(211), - [sym_token_repetition_pattern] = STATE(211), - [sym__literal] = STATE(211), - [sym_string_literal] = STATE(211), - [sym_boolean_literal] = STATE(211), - [aux_sym_token_tree_pattern_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_await] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_default] = ACTIONS(1617), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_impl] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_mod] = ACTIONS(1617), - [anon_sym_pub] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_trait] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_union] = ACTIONS(1617), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_where] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [sym_mutable_specifier] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1621), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1617), - [sym_super] = ACTIONS(1617), - [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1621), - [sym_float_literal] = ACTIONS(1621), - [sym_block_comment] = ACTIONS(3), - }, - [322] = { [ts_builtin_sym_end] = ACTIONS(1623), [sym_identifier] = ACTIONS(1625), [anon_sym_SEMI] = ACTIONS(1623), @@ -38778,7 +38807,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1623), [sym_block_comment] = ACTIONS(3), }, - [323] = { + [322] = { [ts_builtin_sym_end] = ACTIONS(1627), [sym_identifier] = ACTIONS(1629), [anon_sym_SEMI] = ACTIONS(1627), @@ -38854,7 +38883,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1627), [sym_block_comment] = ACTIONS(3), }, - [324] = { + [323] = { [ts_builtin_sym_end] = ACTIONS(1631), [sym_identifier] = ACTIONS(1633), [anon_sym_SEMI] = ACTIONS(1631), @@ -38930,7 +38959,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1631), [sym_block_comment] = ACTIONS(3), }, - [325] = { + [324] = { [ts_builtin_sym_end] = ACTIONS(1635), [sym_identifier] = ACTIONS(1637), [anon_sym_SEMI] = ACTIONS(1635), @@ -39006,1237 +39035,1156 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1635), [sym_block_comment] = ACTIONS(3), }, + [325] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1656), + [anon_sym_i8] = ACTIONS(1656), + [anon_sym_u16] = ACTIONS(1656), + [anon_sym_i16] = ACTIONS(1656), + [anon_sym_u32] = ACTIONS(1656), + [anon_sym_i32] = ACTIONS(1656), + [anon_sym_u64] = ACTIONS(1656), + [anon_sym_i64] = ACTIONS(1656), + [anon_sym_u128] = ACTIONS(1656), + [anon_sym_i128] = ACTIONS(1656), + [anon_sym_isize] = ACTIONS(1656), + [anon_sym_usize] = ACTIONS(1656), + [anon_sym_f32] = ACTIONS(1656), + [anon_sym_f64] = ACTIONS(1656), + [anon_sym_bool] = ACTIONS(1656), + [anon_sym_str] = ACTIONS(1656), + [anon_sym_char] = ACTIONS(1656), + [aux_sym__non_special_token_token1] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_as] = ACTIONS(1639), + [anon_sym_async] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_mod] = ACTIONS(1639), + [anon_sym_pub] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_trait] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_unsafe] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_where] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [sym_mutable_specifier] = ACTIONS(1639), + [sym_integer_literal] = ACTIONS(1659), + [aux_sym_string_literal_token1] = ACTIONS(1662), + [sym_char_literal] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_crate] = ACTIONS(1639), + [sym_metavariable] = ACTIONS(1659), + [sym_raw_string_literal] = ACTIONS(1659), + [sym_float_literal] = ACTIONS(1659), + [sym_block_comment] = ACTIONS(3), + }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1639), - [sym_identifier] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_macro_rules_BANG] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_u8] = ACTIONS(1641), - [anon_sym_i8] = ACTIONS(1641), - [anon_sym_u16] = ACTIONS(1641), - [anon_sym_i16] = ACTIONS(1641), - [anon_sym_u32] = ACTIONS(1641), - [anon_sym_i32] = ACTIONS(1641), - [anon_sym_u64] = ACTIONS(1641), - [anon_sym_i64] = ACTIONS(1641), - [anon_sym_u128] = ACTIONS(1641), - [anon_sym_i128] = ACTIONS(1641), - [anon_sym_isize] = ACTIONS(1641), - [anon_sym_usize] = ACTIONS(1641), - [anon_sym_f32] = ACTIONS(1641), - [anon_sym_f64] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_str] = ACTIONS(1641), - [anon_sym_char] = ACTIONS(1641), - [anon_sym_SQUOTE] = ACTIONS(1641), - [anon_sym_async] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_fn] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_impl] = ACTIONS(1641), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_loop] = ACTIONS(1641), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_mod] = ACTIONS(1641), - [anon_sym_pub] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_trait] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_unsafe] = ACTIONS(1641), - [anon_sym_use] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(1639), - [anon_sym_COLON_COLON] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_move] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1639), - [aux_sym_string_literal_token1] = ACTIONS(1639), - [sym_char_literal] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1641), - [sym_super] = ACTIONS(1641), - [sym_crate] = ACTIONS(1641), - [sym_metavariable] = ACTIONS(1639), - [sym_raw_string_literal] = ACTIONS(1639), - [sym_float_literal] = ACTIONS(1639), + [sym__token_pattern] = STATE(233), + [sym_token_tree_pattern] = STATE(233), + [sym_token_binding_pattern] = STATE(233), + [sym_token_repetition_pattern] = STATE(233), + [sym__literal] = STATE(233), + [sym_string_literal] = STATE(233), + [sym_boolean_literal] = STATE(233), + [aux_sym_token_tree_pattern_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_impl] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1605), + [anon_sym_pub] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_trait] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_unsafe] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [sym_mutable_specifier] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1605), + [sym_crate] = ACTIONS(1605), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_macro_rules_BANG] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_u8] = ACTIONS(1645), - [anon_sym_i8] = ACTIONS(1645), - [anon_sym_u16] = ACTIONS(1645), - [anon_sym_i16] = ACTIONS(1645), - [anon_sym_u32] = ACTIONS(1645), - [anon_sym_i32] = ACTIONS(1645), - [anon_sym_u64] = ACTIONS(1645), - [anon_sym_i64] = ACTIONS(1645), - [anon_sym_u128] = ACTIONS(1645), - [anon_sym_i128] = ACTIONS(1645), - [anon_sym_isize] = ACTIONS(1645), - [anon_sym_usize] = ACTIONS(1645), - [anon_sym_f32] = ACTIONS(1645), - [anon_sym_f64] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_str] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [anon_sym_SQUOTE] = ACTIONS(1645), - [anon_sym_async] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_fn] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_impl] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1645), - [anon_sym_pub] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_trait] = ACTIONS(1645), - [anon_sym_type] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_unsafe] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_LT] = ACTIONS(1643), - [anon_sym_COLON_COLON] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_move] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1643), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_macro_rules_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_u8] = ACTIONS(1672), + [anon_sym_i8] = ACTIONS(1672), + [anon_sym_u16] = ACTIONS(1672), + [anon_sym_i16] = ACTIONS(1672), + [anon_sym_u32] = ACTIONS(1672), + [anon_sym_i32] = ACTIONS(1672), + [anon_sym_u64] = ACTIONS(1672), + [anon_sym_i64] = ACTIONS(1672), + [anon_sym_u128] = ACTIONS(1672), + [anon_sym_i128] = ACTIONS(1672), + [anon_sym_isize] = ACTIONS(1672), + [anon_sym_usize] = ACTIONS(1672), + [anon_sym_f32] = ACTIONS(1672), + [anon_sym_f64] = ACTIONS(1672), + [anon_sym_bool] = ACTIONS(1672), + [anon_sym_str] = ACTIONS(1672), + [anon_sym_char] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_fn] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_impl] = ACTIONS(1672), + [anon_sym_let] = ACTIONS(1672), + [anon_sym_loop] = ACTIONS(1672), + [anon_sym_match] = ACTIONS(1672), + [anon_sym_mod] = ACTIONS(1672), + [anon_sym_pub] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_trait] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_unsafe] = ACTIONS(1672), + [anon_sym_use] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_DOT_DOT] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_move] = ACTIONS(1672), + [sym_integer_literal] = ACTIONS(1670), + [aux_sym_string_literal_token1] = ACTIONS(1670), + [sym_char_literal] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1643), - [sym_raw_string_literal] = ACTIONS(1643), - [sym_float_literal] = ACTIONS(1643), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_crate] = ACTIONS(1672), + [sym_metavariable] = ACTIONS(1670), + [sym_raw_string_literal] = ACTIONS(1670), + [sym_float_literal] = ACTIONS(1670), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1647), - [sym_identifier] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_macro_rules_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_u8] = ACTIONS(1649), - [anon_sym_i8] = ACTIONS(1649), - [anon_sym_u16] = ACTIONS(1649), - [anon_sym_i16] = ACTIONS(1649), - [anon_sym_u32] = ACTIONS(1649), - [anon_sym_i32] = ACTIONS(1649), - [anon_sym_u64] = ACTIONS(1649), - [anon_sym_i64] = ACTIONS(1649), - [anon_sym_u128] = ACTIONS(1649), - [anon_sym_i128] = ACTIONS(1649), - [anon_sym_isize] = ACTIONS(1649), - [anon_sym_usize] = ACTIONS(1649), - [anon_sym_f32] = ACTIONS(1649), - [anon_sym_f64] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_str] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_SQUOTE] = ACTIONS(1649), - [anon_sym_async] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_impl] = ACTIONS(1649), - [anon_sym_let] = ACTIONS(1649), - [anon_sym_loop] = ACTIONS(1649), - [anon_sym_match] = ACTIONS(1649), - [anon_sym_mod] = ACTIONS(1649), - [anon_sym_pub] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_trait] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_unsafe] = ACTIONS(1649), - [anon_sym_use] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(1647), - [anon_sym_COLON_COLON] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_move] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1647), - [aux_sym_string_literal_token1] = ACTIONS(1647), - [sym_char_literal] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_macro_rules_BANG] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_fn] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_impl] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_loop] = ACTIONS(1676), + [anon_sym_match] = ACTIONS(1676), + [anon_sym_mod] = ACTIONS(1676), + [anon_sym_pub] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_trait] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_unsafe] = ACTIONS(1676), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_COLON_COLON] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_DOT_DOT] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_move] = ACTIONS(1676), + [sym_integer_literal] = ACTIONS(1674), + [aux_sym_string_literal_token1] = ACTIONS(1674), + [sym_char_literal] = ACTIONS(1674), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1676), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1649), - [sym_super] = ACTIONS(1649), - [sym_crate] = ACTIONS(1649), - [sym_metavariable] = ACTIONS(1647), - [sym_raw_string_literal] = ACTIONS(1647), - [sym_float_literal] = ACTIONS(1647), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_crate] = ACTIONS(1676), + [sym_metavariable] = ACTIONS(1674), + [sym_raw_string_literal] = ACTIONS(1674), + [sym_float_literal] = ACTIONS(1674), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_macro_rules_BANG] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_impl] = ACTIONS(1653), - [anon_sym_let] = ACTIONS(1653), - [anon_sym_loop] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(1653), - [anon_sym_mod] = ACTIONS(1653), - [anon_sym_pub] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_trait] = ACTIONS(1653), - [anon_sym_type] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_unsafe] = ACTIONS(1653), - [anon_sym_use] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1651), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_move] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1651), - [aux_sym_string_literal_token1] = ACTIONS(1651), - [sym_char_literal] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_macro_rules_BANG] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_u8] = ACTIONS(1680), + [anon_sym_i8] = ACTIONS(1680), + [anon_sym_u16] = ACTIONS(1680), + [anon_sym_i16] = ACTIONS(1680), + [anon_sym_u32] = ACTIONS(1680), + [anon_sym_i32] = ACTIONS(1680), + [anon_sym_u64] = ACTIONS(1680), + [anon_sym_i64] = ACTIONS(1680), + [anon_sym_u128] = ACTIONS(1680), + [anon_sym_i128] = ACTIONS(1680), + [anon_sym_isize] = ACTIONS(1680), + [anon_sym_usize] = ACTIONS(1680), + [anon_sym_f32] = ACTIONS(1680), + [anon_sym_f64] = ACTIONS(1680), + [anon_sym_bool] = ACTIONS(1680), + [anon_sym_str] = ACTIONS(1680), + [anon_sym_char] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_async] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_continue] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_fn] = ACTIONS(1680), + [anon_sym_for] = ACTIONS(1680), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_impl] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1680), + [anon_sym_loop] = ACTIONS(1680), + [anon_sym_match] = ACTIONS(1680), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_pub] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(1680), + [anon_sym_trait] = ACTIONS(1680), + [anon_sym_type] = ACTIONS(1680), + [anon_sym_union] = ACTIONS(1680), + [anon_sym_unsafe] = ACTIONS(1680), + [anon_sym_use] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_COLON_COLON] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_DOT_DOT] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_move] = ACTIONS(1680), + [sym_integer_literal] = ACTIONS(1678), + [aux_sym_string_literal_token1] = ACTIONS(1678), + [sym_char_literal] = ACTIONS(1678), + [anon_sym_true] = ACTIONS(1680), + [anon_sym_false] = ACTIONS(1680), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1653), - [sym_super] = ACTIONS(1653), - [sym_crate] = ACTIONS(1653), - [sym_metavariable] = ACTIONS(1651), - [sym_raw_string_literal] = ACTIONS(1651), - [sym_float_literal] = ACTIONS(1651), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_crate] = ACTIONS(1680), + [sym_metavariable] = ACTIONS(1678), + [sym_raw_string_literal] = ACTIONS(1678), + [sym_float_literal] = ACTIONS(1678), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1655), - [sym_identifier] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_macro_rules_BANG] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_u8] = ACTIONS(1657), - [anon_sym_i8] = ACTIONS(1657), - [anon_sym_u16] = ACTIONS(1657), - [anon_sym_i16] = ACTIONS(1657), - [anon_sym_u32] = ACTIONS(1657), - [anon_sym_i32] = ACTIONS(1657), - [anon_sym_u64] = ACTIONS(1657), - [anon_sym_i64] = ACTIONS(1657), - [anon_sym_u128] = ACTIONS(1657), - [anon_sym_i128] = ACTIONS(1657), - [anon_sym_isize] = ACTIONS(1657), - [anon_sym_usize] = ACTIONS(1657), - [anon_sym_f32] = ACTIONS(1657), - [anon_sym_f64] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_str] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_SQUOTE] = ACTIONS(1657), - [anon_sym_async] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1657), - [anon_sym_enum] = ACTIONS(1657), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_impl] = ACTIONS(1657), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_loop] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_mod] = ACTIONS(1657), - [anon_sym_pub] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_trait] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_union] = ACTIONS(1657), - [anon_sym_unsafe] = ACTIONS(1657), - [anon_sym_use] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_DOT_DOT] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_move] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1655), - [aux_sym_string_literal_token1] = ACTIONS(1655), - [sym_char_literal] = ACTIONS(1655), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_macro_rules_BANG] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1684), + [anon_sym_i8] = ACTIONS(1684), + [anon_sym_u16] = ACTIONS(1684), + [anon_sym_i16] = ACTIONS(1684), + [anon_sym_u32] = ACTIONS(1684), + [anon_sym_i32] = ACTIONS(1684), + [anon_sym_u64] = ACTIONS(1684), + [anon_sym_i64] = ACTIONS(1684), + [anon_sym_u128] = ACTIONS(1684), + [anon_sym_i128] = ACTIONS(1684), + [anon_sym_isize] = ACTIONS(1684), + [anon_sym_usize] = ACTIONS(1684), + [anon_sym_f32] = ACTIONS(1684), + [anon_sym_f64] = ACTIONS(1684), + [anon_sym_bool] = ACTIONS(1684), + [anon_sym_str] = ACTIONS(1684), + [anon_sym_char] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_async] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_enum] = ACTIONS(1684), + [anon_sym_fn] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_impl] = ACTIONS(1684), + [anon_sym_let] = ACTIONS(1684), + [anon_sym_loop] = ACTIONS(1684), + [anon_sym_match] = ACTIONS(1684), + [anon_sym_mod] = ACTIONS(1684), + [anon_sym_pub] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1684), + [anon_sym_trait] = ACTIONS(1684), + [anon_sym_type] = ACTIONS(1684), + [anon_sym_union] = ACTIONS(1684), + [anon_sym_unsafe] = ACTIONS(1684), + [anon_sym_use] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_move] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [aux_sym_string_literal_token1] = ACTIONS(1682), + [sym_char_literal] = ACTIONS(1682), + [anon_sym_true] = ACTIONS(1684), + [anon_sym_false] = ACTIONS(1684), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1657), - [sym_super] = ACTIONS(1657), - [sym_crate] = ACTIONS(1657), - [sym_metavariable] = ACTIONS(1655), - [sym_raw_string_literal] = ACTIONS(1655), - [sym_float_literal] = ACTIONS(1655), + [sym_self] = ACTIONS(1684), + [sym_super] = ACTIONS(1684), + [sym_crate] = ACTIONS(1684), + [sym_metavariable] = ACTIONS(1682), + [sym_raw_string_literal] = ACTIONS(1682), + [sym_float_literal] = ACTIONS(1682), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_macro_rules_BANG] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_u8] = ACTIONS(1661), - [anon_sym_i8] = ACTIONS(1661), - [anon_sym_u16] = ACTIONS(1661), - [anon_sym_i16] = ACTIONS(1661), - [anon_sym_u32] = ACTIONS(1661), - [anon_sym_i32] = ACTIONS(1661), - [anon_sym_u64] = ACTIONS(1661), - [anon_sym_i64] = ACTIONS(1661), - [anon_sym_u128] = ACTIONS(1661), - [anon_sym_i128] = ACTIONS(1661), - [anon_sym_isize] = ACTIONS(1661), - [anon_sym_usize] = ACTIONS(1661), - [anon_sym_f32] = ACTIONS(1661), - [anon_sym_f64] = ACTIONS(1661), - [anon_sym_bool] = ACTIONS(1661), - [anon_sym_str] = ACTIONS(1661), - [anon_sym_char] = ACTIONS(1661), - [anon_sym_SQUOTE] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_fn] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_impl] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_loop] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1661), - [anon_sym_pub] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_trait] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_unsafe] = ACTIONS(1661), - [anon_sym_use] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_COLON_COLON] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_move] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [aux_sym_string_literal_token1] = ACTIONS(1659), - [sym_char_literal] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), + [ts_builtin_sym_end] = ACTIONS(1686), + [sym_identifier] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_macro_rules_BANG] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_u8] = ACTIONS(1688), + [anon_sym_i8] = ACTIONS(1688), + [anon_sym_u16] = ACTIONS(1688), + [anon_sym_i16] = ACTIONS(1688), + [anon_sym_u32] = ACTIONS(1688), + [anon_sym_i32] = ACTIONS(1688), + [anon_sym_u64] = ACTIONS(1688), + [anon_sym_i64] = ACTIONS(1688), + [anon_sym_u128] = ACTIONS(1688), + [anon_sym_i128] = ACTIONS(1688), + [anon_sym_isize] = ACTIONS(1688), + [anon_sym_usize] = ACTIONS(1688), + [anon_sym_f32] = ACTIONS(1688), + [anon_sym_f64] = ACTIONS(1688), + [anon_sym_bool] = ACTIONS(1688), + [anon_sym_str] = ACTIONS(1688), + [anon_sym_char] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_async] = ACTIONS(1688), + [anon_sym_break] = ACTIONS(1688), + [anon_sym_const] = ACTIONS(1688), + [anon_sym_continue] = ACTIONS(1688), + [anon_sym_default] = ACTIONS(1688), + [anon_sym_enum] = ACTIONS(1688), + [anon_sym_fn] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_impl] = ACTIONS(1688), + [anon_sym_let] = ACTIONS(1688), + [anon_sym_loop] = ACTIONS(1688), + [anon_sym_match] = ACTIONS(1688), + [anon_sym_mod] = ACTIONS(1688), + [anon_sym_pub] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(1688), + [anon_sym_trait] = ACTIONS(1688), + [anon_sym_type] = ACTIONS(1688), + [anon_sym_union] = ACTIONS(1688), + [anon_sym_unsafe] = ACTIONS(1688), + [anon_sym_use] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_POUND] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1686), + [anon_sym_COLON_COLON] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1686), + [anon_sym_move] = ACTIONS(1688), + [sym_integer_literal] = ACTIONS(1686), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1686), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_crate] = ACTIONS(1661), - [sym_metavariable] = ACTIONS(1659), - [sym_raw_string_literal] = ACTIONS(1659), - [sym_float_literal] = ACTIONS(1659), + [sym_self] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_crate] = ACTIONS(1688), + [sym_metavariable] = ACTIONS(1686), + [sym_raw_string_literal] = ACTIONS(1686), + [sym_float_literal] = ACTIONS(1686), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1663), - [sym_identifier] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_macro_rules_BANG] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_SQUOTE] = ACTIONS(1665), - [anon_sym_async] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_enum] = ACTIONS(1665), - [anon_sym_fn] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_impl] = ACTIONS(1665), - [anon_sym_let] = ACTIONS(1665), - [anon_sym_loop] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [anon_sym_mod] = ACTIONS(1665), - [anon_sym_pub] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_static] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_trait] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_union] = ACTIONS(1665), - [anon_sym_unsafe] = ACTIONS(1665), - [anon_sym_use] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_move] = ACTIONS(1665), - [sym_integer_literal] = ACTIONS(1663), - [aux_sym_string_literal_token1] = ACTIONS(1663), - [sym_char_literal] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1665), - [anon_sym_false] = ACTIONS(1665), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_macro_rules_BANG] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_u8] = ACTIONS(1692), + [anon_sym_i8] = ACTIONS(1692), + [anon_sym_u16] = ACTIONS(1692), + [anon_sym_i16] = ACTIONS(1692), + [anon_sym_u32] = ACTIONS(1692), + [anon_sym_i32] = ACTIONS(1692), + [anon_sym_u64] = ACTIONS(1692), + [anon_sym_i64] = ACTIONS(1692), + [anon_sym_u128] = ACTIONS(1692), + [anon_sym_i128] = ACTIONS(1692), + [anon_sym_isize] = ACTIONS(1692), + [anon_sym_usize] = ACTIONS(1692), + [anon_sym_f32] = ACTIONS(1692), + [anon_sym_f64] = ACTIONS(1692), + [anon_sym_bool] = ACTIONS(1692), + [anon_sym_str] = ACTIONS(1692), + [anon_sym_char] = ACTIONS(1692), + [anon_sym_SQUOTE] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_fn] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_impl] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_loop] = ACTIONS(1692), + [anon_sym_match] = ACTIONS(1692), + [anon_sym_mod] = ACTIONS(1692), + [anon_sym_pub] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_struct] = ACTIONS(1692), + [anon_sym_trait] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_union] = ACTIONS(1692), + [anon_sym_unsafe] = ACTIONS(1692), + [anon_sym_use] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_DOT_DOT] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_move] = ACTIONS(1692), + [sym_integer_literal] = ACTIONS(1690), + [aux_sym_string_literal_token1] = ACTIONS(1690), + [sym_char_literal] = ACTIONS(1690), + [anon_sym_true] = ACTIONS(1692), + [anon_sym_false] = ACTIONS(1692), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1665), - [sym_super] = ACTIONS(1665), - [sym_crate] = ACTIONS(1665), - [sym_metavariable] = ACTIONS(1663), - [sym_raw_string_literal] = ACTIONS(1663), - [sym_float_literal] = ACTIONS(1663), + [sym_self] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_crate] = ACTIONS(1692), + [sym_metavariable] = ACTIONS(1690), + [sym_raw_string_literal] = ACTIONS(1690), + [sym_float_literal] = ACTIONS(1690), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1667), - [sym_identifier] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_macro_rules_BANG] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_u8] = ACTIONS(1669), - [anon_sym_i8] = ACTIONS(1669), - [anon_sym_u16] = ACTIONS(1669), - [anon_sym_i16] = ACTIONS(1669), - [anon_sym_u32] = ACTIONS(1669), - [anon_sym_i32] = ACTIONS(1669), - [anon_sym_u64] = ACTIONS(1669), - [anon_sym_i64] = ACTIONS(1669), - [anon_sym_u128] = ACTIONS(1669), - [anon_sym_i128] = ACTIONS(1669), - [anon_sym_isize] = ACTIONS(1669), - [anon_sym_usize] = ACTIONS(1669), - [anon_sym_f32] = ACTIONS(1669), - [anon_sym_f64] = ACTIONS(1669), - [anon_sym_bool] = ACTIONS(1669), - [anon_sym_str] = ACTIONS(1669), - [anon_sym_char] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_async] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_fn] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_impl] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_pub] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_trait] = ACTIONS(1669), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_unsafe] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_move] = ACTIONS(1669), - [sym_integer_literal] = ACTIONS(1667), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), + [ts_builtin_sym_end] = ACTIONS(1694), + [sym_identifier] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_macro_rules_BANG] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_u8] = ACTIONS(1696), + [anon_sym_i8] = ACTIONS(1696), + [anon_sym_u16] = ACTIONS(1696), + [anon_sym_i16] = ACTIONS(1696), + [anon_sym_u32] = ACTIONS(1696), + [anon_sym_i32] = ACTIONS(1696), + [anon_sym_u64] = ACTIONS(1696), + [anon_sym_i64] = ACTIONS(1696), + [anon_sym_u128] = ACTIONS(1696), + [anon_sym_i128] = ACTIONS(1696), + [anon_sym_isize] = ACTIONS(1696), + [anon_sym_usize] = ACTIONS(1696), + [anon_sym_f32] = ACTIONS(1696), + [anon_sym_f64] = ACTIONS(1696), + [anon_sym_bool] = ACTIONS(1696), + [anon_sym_str] = ACTIONS(1696), + [anon_sym_char] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_continue] = ACTIONS(1696), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_fn] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1696), + [anon_sym_impl] = ACTIONS(1696), + [anon_sym_let] = ACTIONS(1696), + [anon_sym_loop] = ACTIONS(1696), + [anon_sym_match] = ACTIONS(1696), + [anon_sym_mod] = ACTIONS(1696), + [anon_sym_pub] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_trait] = ACTIONS(1696), + [anon_sym_type] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_unsafe] = ACTIONS(1696), + [anon_sym_use] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_extern] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_move] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [aux_sym_string_literal_token1] = ACTIONS(1694), + [sym_char_literal] = ACTIONS(1694), + [anon_sym_true] = ACTIONS(1696), + [anon_sym_false] = ACTIONS(1696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1669), - [sym_super] = ACTIONS(1669), - [sym_crate] = ACTIONS(1669), - [sym_metavariable] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1667), - [sym_float_literal] = ACTIONS(1667), + [sym_self] = ACTIONS(1696), + [sym_super] = ACTIONS(1696), + [sym_crate] = ACTIONS(1696), + [sym_metavariable] = ACTIONS(1694), + [sym_raw_string_literal] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1694), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [sym_identifier] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_macro_rules_BANG] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_u8] = ACTIONS(1673), - [anon_sym_i8] = ACTIONS(1673), - [anon_sym_u16] = ACTIONS(1673), - [anon_sym_i16] = ACTIONS(1673), - [anon_sym_u32] = ACTIONS(1673), - [anon_sym_i32] = ACTIONS(1673), - [anon_sym_u64] = ACTIONS(1673), - [anon_sym_i64] = ACTIONS(1673), - [anon_sym_u128] = ACTIONS(1673), - [anon_sym_i128] = ACTIONS(1673), - [anon_sym_isize] = ACTIONS(1673), - [anon_sym_usize] = ACTIONS(1673), - [anon_sym_f32] = ACTIONS(1673), - [anon_sym_f64] = ACTIONS(1673), - [anon_sym_bool] = ACTIONS(1673), - [anon_sym_str] = ACTIONS(1673), - [anon_sym_char] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_async] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_fn] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_impl] = ACTIONS(1673), - [anon_sym_let] = ACTIONS(1673), - [anon_sym_loop] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1673), - [anon_sym_pub] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_trait] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_unsafe] = ACTIONS(1673), - [anon_sym_use] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_COLON_COLON] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_move] = ACTIONS(1673), - [sym_integer_literal] = ACTIONS(1671), - [aux_sym_string_literal_token1] = ACTIONS(1671), - [sym_char_literal] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), + [ts_builtin_sym_end] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_macro_rules_BANG] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_u8] = ACTIONS(1700), + [anon_sym_i8] = ACTIONS(1700), + [anon_sym_u16] = ACTIONS(1700), + [anon_sym_i16] = ACTIONS(1700), + [anon_sym_u32] = ACTIONS(1700), + [anon_sym_i32] = ACTIONS(1700), + [anon_sym_u64] = ACTIONS(1700), + [anon_sym_i64] = ACTIONS(1700), + [anon_sym_u128] = ACTIONS(1700), + [anon_sym_i128] = ACTIONS(1700), + [anon_sym_isize] = ACTIONS(1700), + [anon_sym_usize] = ACTIONS(1700), + [anon_sym_f32] = ACTIONS(1700), + [anon_sym_f64] = ACTIONS(1700), + [anon_sym_bool] = ACTIONS(1700), + [anon_sym_str] = ACTIONS(1700), + [anon_sym_char] = ACTIONS(1700), + [anon_sym_SQUOTE] = ACTIONS(1700), + [anon_sym_async] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_fn] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_impl] = ACTIONS(1700), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_loop] = ACTIONS(1700), + [anon_sym_match] = ACTIONS(1700), + [anon_sym_mod] = ACTIONS(1700), + [anon_sym_pub] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_trait] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_unsafe] = ACTIONS(1700), + [anon_sym_use] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_DOT_DOT] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_move] = ACTIONS(1700), + [sym_integer_literal] = ACTIONS(1698), + [aux_sym_string_literal_token1] = ACTIONS(1698), + [sym_char_literal] = ACTIONS(1698), + [anon_sym_true] = ACTIONS(1700), + [anon_sym_false] = ACTIONS(1700), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1673), - [sym_super] = ACTIONS(1673), - [sym_crate] = ACTIONS(1673), - [sym_metavariable] = ACTIONS(1671), - [sym_raw_string_literal] = ACTIONS(1671), - [sym_float_literal] = ACTIONS(1671), + [sym_self] = ACTIONS(1700), + [sym_super] = ACTIONS(1700), + [sym_crate] = ACTIONS(1700), + [sym_metavariable] = ACTIONS(1698), + [sym_raw_string_literal] = ACTIONS(1698), + [sym_float_literal] = ACTIONS(1698), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_macro_rules_BANG] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1677), - [anon_sym_i8] = ACTIONS(1677), - [anon_sym_u16] = ACTIONS(1677), - [anon_sym_i16] = ACTIONS(1677), - [anon_sym_u32] = ACTIONS(1677), - [anon_sym_i32] = ACTIONS(1677), - [anon_sym_u64] = ACTIONS(1677), - [anon_sym_i64] = ACTIONS(1677), - [anon_sym_u128] = ACTIONS(1677), - [anon_sym_i128] = ACTIONS(1677), - [anon_sym_isize] = ACTIONS(1677), - [anon_sym_usize] = ACTIONS(1677), - [anon_sym_f32] = ACTIONS(1677), - [anon_sym_f64] = ACTIONS(1677), - [anon_sym_bool] = ACTIONS(1677), - [anon_sym_str] = ACTIONS(1677), - [anon_sym_char] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_default] = ACTIONS(1677), - [anon_sym_enum] = ACTIONS(1677), - [anon_sym_fn] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_impl] = ACTIONS(1677), - [anon_sym_let] = ACTIONS(1677), - [anon_sym_loop] = ACTIONS(1677), - [anon_sym_match] = ACTIONS(1677), - [anon_sym_mod] = ACTIONS(1677), - [anon_sym_pub] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_trait] = ACTIONS(1677), - [anon_sym_type] = ACTIONS(1677), - [anon_sym_union] = ACTIONS(1677), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_use] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym_LT] = ACTIONS(1675), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_move] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [aux_sym_string_literal_token1] = ACTIONS(1675), - [sym_char_literal] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1677), - [sym_super] = ACTIONS(1677), - [sym_crate] = ACTIONS(1677), - [sym_metavariable] = ACTIONS(1675), - [sym_raw_string_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1675), + [sym__token_pattern] = STATE(233), + [sym_token_tree_pattern] = STATE(233), + [sym_token_binding_pattern] = STATE(233), + [sym_token_repetition_pattern] = STATE(233), + [sym__literal] = STATE(233), + [sym_string_literal] = STATE(233), + [sym_boolean_literal] = STATE(233), + [aux_sym_token_tree_pattern_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_impl] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1605), + [anon_sym_pub] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_trait] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_unsafe] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [sym_mutable_specifier] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1605), + [sym_crate] = ACTIONS(1605), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1679), - [sym_identifier] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_macro_rules_BANG] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_u8] = ACTIONS(1681), - [anon_sym_i8] = ACTIONS(1681), - [anon_sym_u16] = ACTIONS(1681), - [anon_sym_i16] = ACTIONS(1681), - [anon_sym_u32] = ACTIONS(1681), - [anon_sym_i32] = ACTIONS(1681), - [anon_sym_u64] = ACTIONS(1681), - [anon_sym_i64] = ACTIONS(1681), - [anon_sym_u128] = ACTIONS(1681), - [anon_sym_i128] = ACTIONS(1681), - [anon_sym_isize] = ACTIONS(1681), - [anon_sym_usize] = ACTIONS(1681), - [anon_sym_f32] = ACTIONS(1681), - [anon_sym_f64] = ACTIONS(1681), - [anon_sym_bool] = ACTIONS(1681), - [anon_sym_str] = ACTIONS(1681), - [anon_sym_char] = ACTIONS(1681), - [anon_sym_SQUOTE] = ACTIONS(1681), - [anon_sym_async] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_default] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_fn] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_impl] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1681), - [anon_sym_pub] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_trait] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_unsafe] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_move] = ACTIONS(1681), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_macro_rules_BANG] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_u8] = ACTIONS(1704), + [anon_sym_i8] = ACTIONS(1704), + [anon_sym_u16] = ACTIONS(1704), + [anon_sym_i16] = ACTIONS(1704), + [anon_sym_u32] = ACTIONS(1704), + [anon_sym_i32] = ACTIONS(1704), + [anon_sym_u64] = ACTIONS(1704), + [anon_sym_i64] = ACTIONS(1704), + [anon_sym_u128] = ACTIONS(1704), + [anon_sym_i128] = ACTIONS(1704), + [anon_sym_isize] = ACTIONS(1704), + [anon_sym_usize] = ACTIONS(1704), + [anon_sym_f32] = ACTIONS(1704), + [anon_sym_f64] = ACTIONS(1704), + [anon_sym_bool] = ACTIONS(1704), + [anon_sym_str] = ACTIONS(1704), + [anon_sym_char] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_fn] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_impl] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_loop] = ACTIONS(1704), + [anon_sym_match] = ACTIONS(1704), + [anon_sym_mod] = ACTIONS(1704), + [anon_sym_pub] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_trait] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [anon_sym_unsafe] = ACTIONS(1704), + [anon_sym_use] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_COLON_COLON] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_move] = ACTIONS(1704), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1702), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1704), + [anon_sym_false] = ACTIONS(1704), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1681), - [sym_super] = ACTIONS(1681), - [sym_crate] = ACTIONS(1681), - [sym_metavariable] = ACTIONS(1679), - [sym_raw_string_literal] = ACTIONS(1679), - [sym_float_literal] = ACTIONS(1679), + [sym_self] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_crate] = ACTIONS(1704), + [sym_metavariable] = ACTIONS(1702), + [sym_raw_string_literal] = ACTIONS(1702), + [sym_float_literal] = ACTIONS(1702), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_identifier] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_macro_rules_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_u8] = ACTIONS(1685), - [anon_sym_i8] = ACTIONS(1685), - [anon_sym_u16] = ACTIONS(1685), - [anon_sym_i16] = ACTIONS(1685), - [anon_sym_u32] = ACTIONS(1685), - [anon_sym_i32] = ACTIONS(1685), - [anon_sym_u64] = ACTIONS(1685), - [anon_sym_i64] = ACTIONS(1685), - [anon_sym_u128] = ACTIONS(1685), - [anon_sym_i128] = ACTIONS(1685), - [anon_sym_isize] = ACTIONS(1685), - [anon_sym_usize] = ACTIONS(1685), - [anon_sym_f32] = ACTIONS(1685), - [anon_sym_f64] = ACTIONS(1685), - [anon_sym_bool] = ACTIONS(1685), - [anon_sym_str] = ACTIONS(1685), - [anon_sym_char] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(1685), - [anon_sym_async] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_fn] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_impl] = ACTIONS(1685), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_loop] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1685), - [anon_sym_mod] = ACTIONS(1685), - [anon_sym_pub] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_trait] = ACTIONS(1685), - [anon_sym_type] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1685), - [anon_sym_use] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_POUND] = ACTIONS(1683), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1683), - [anon_sym_COLON_COLON] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_move] = ACTIONS(1685), - [sym_integer_literal] = ACTIONS(1683), - [aux_sym_string_literal_token1] = ACTIONS(1683), - [sym_char_literal] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1685), - [anon_sym_false] = ACTIONS(1685), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_macro_rules_BANG] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_u8] = ACTIONS(1708), + [anon_sym_i8] = ACTIONS(1708), + [anon_sym_u16] = ACTIONS(1708), + [anon_sym_i16] = ACTIONS(1708), + [anon_sym_u32] = ACTIONS(1708), + [anon_sym_i32] = ACTIONS(1708), + [anon_sym_u64] = ACTIONS(1708), + [anon_sym_i64] = ACTIONS(1708), + [anon_sym_u128] = ACTIONS(1708), + [anon_sym_i128] = ACTIONS(1708), + [anon_sym_isize] = ACTIONS(1708), + [anon_sym_usize] = ACTIONS(1708), + [anon_sym_f32] = ACTIONS(1708), + [anon_sym_f64] = ACTIONS(1708), + [anon_sym_bool] = ACTIONS(1708), + [anon_sym_str] = ACTIONS(1708), + [anon_sym_char] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [anon_sym_fn] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_impl] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_mod] = ACTIONS(1708), + [anon_sym_pub] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_struct] = ACTIONS(1708), + [anon_sym_trait] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_union] = ACTIONS(1708), + [anon_sym_unsafe] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1706), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_COLON_COLON] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1706), + [anon_sym_DOT_DOT] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_move] = ACTIONS(1708), + [sym_integer_literal] = ACTIONS(1706), + [aux_sym_string_literal_token1] = ACTIONS(1706), + [sym_char_literal] = ACTIONS(1706), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1683), - [sym_raw_string_literal] = ACTIONS(1683), - [sym_float_literal] = ACTIONS(1683), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1706), + [sym_raw_string_literal] = ACTIONS(1706), + [sym_float_literal] = ACTIONS(1706), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_macro_rules_BANG] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_u8] = ACTIONS(1689), - [anon_sym_i8] = ACTIONS(1689), - [anon_sym_u16] = ACTIONS(1689), - [anon_sym_i16] = ACTIONS(1689), - [anon_sym_u32] = ACTIONS(1689), - [anon_sym_i32] = ACTIONS(1689), - [anon_sym_u64] = ACTIONS(1689), - [anon_sym_i64] = ACTIONS(1689), - [anon_sym_u128] = ACTIONS(1689), - [anon_sym_i128] = ACTIONS(1689), - [anon_sym_isize] = ACTIONS(1689), - [anon_sym_usize] = ACTIONS(1689), - [anon_sym_f32] = ACTIONS(1689), - [anon_sym_f64] = ACTIONS(1689), - [anon_sym_bool] = ACTIONS(1689), - [anon_sym_str] = ACTIONS(1689), - [anon_sym_char] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [anon_sym_fn] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_impl] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_loop] = ACTIONS(1689), - [anon_sym_match] = ACTIONS(1689), - [anon_sym_mod] = ACTIONS(1689), - [anon_sym_pub] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_trait] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [anon_sym_unsafe] = ACTIONS(1689), - [anon_sym_use] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_POUND] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1687), - [anon_sym_COLON_COLON] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_move] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1687), - [aux_sym_string_literal_token1] = ACTIONS(1687), - [sym_char_literal] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1689), - [anon_sym_false] = ACTIONS(1689), + [ts_builtin_sym_end] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_macro_rules_BANG] = ACTIONS(1710), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_u8] = ACTIONS(1712), + [anon_sym_i8] = ACTIONS(1712), + [anon_sym_u16] = ACTIONS(1712), + [anon_sym_i16] = ACTIONS(1712), + [anon_sym_u32] = ACTIONS(1712), + [anon_sym_i32] = ACTIONS(1712), + [anon_sym_u64] = ACTIONS(1712), + [anon_sym_i64] = ACTIONS(1712), + [anon_sym_u128] = ACTIONS(1712), + [anon_sym_i128] = ACTIONS(1712), + [anon_sym_isize] = ACTIONS(1712), + [anon_sym_usize] = ACTIONS(1712), + [anon_sym_f32] = ACTIONS(1712), + [anon_sym_f64] = ACTIONS(1712), + [anon_sym_bool] = ACTIONS(1712), + [anon_sym_str] = ACTIONS(1712), + [anon_sym_char] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_async] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_enum] = ACTIONS(1712), + [anon_sym_fn] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_impl] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_loop] = ACTIONS(1712), + [anon_sym_match] = ACTIONS(1712), + [anon_sym_mod] = ACTIONS(1712), + [anon_sym_pub] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_struct] = ACTIONS(1712), + [anon_sym_trait] = ACTIONS(1712), + [anon_sym_type] = ACTIONS(1712), + [anon_sym_union] = ACTIONS(1712), + [anon_sym_unsafe] = ACTIONS(1712), + [anon_sym_use] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_POUND] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1710), + [anon_sym_COLON_COLON] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_DOT_DOT] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_move] = ACTIONS(1712), + [sym_integer_literal] = ACTIONS(1710), + [aux_sym_string_literal_token1] = ACTIONS(1710), + [sym_char_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1712), + [anon_sym_false] = ACTIONS(1712), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_crate] = ACTIONS(1689), - [sym_metavariable] = ACTIONS(1687), - [sym_raw_string_literal] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1687), + [sym_self] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_crate] = ACTIONS(1712), + [sym_metavariable] = ACTIONS(1710), + [sym_raw_string_literal] = ACTIONS(1710), + [sym_float_literal] = ACTIONS(1710), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1691), - [sym_identifier] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_macro_rules_BANG] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_u8] = ACTIONS(1693), - [anon_sym_i8] = ACTIONS(1693), - [anon_sym_u16] = ACTIONS(1693), - [anon_sym_i16] = ACTIONS(1693), - [anon_sym_u32] = ACTIONS(1693), - [anon_sym_i32] = ACTIONS(1693), - [anon_sym_u64] = ACTIONS(1693), - [anon_sym_i64] = ACTIONS(1693), - [anon_sym_u128] = ACTIONS(1693), - [anon_sym_i128] = ACTIONS(1693), - [anon_sym_isize] = ACTIONS(1693), - [anon_sym_usize] = ACTIONS(1693), - [anon_sym_f32] = ACTIONS(1693), - [anon_sym_f64] = ACTIONS(1693), - [anon_sym_bool] = ACTIONS(1693), - [anon_sym_str] = ACTIONS(1693), - [anon_sym_char] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_async] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_default] = ACTIONS(1693), - [anon_sym_enum] = ACTIONS(1693), - [anon_sym_fn] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_impl] = ACTIONS(1693), - [anon_sym_let] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1693), - [anon_sym_match] = ACTIONS(1693), - [anon_sym_mod] = ACTIONS(1693), - [anon_sym_pub] = ACTIONS(1693), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_trait] = ACTIONS(1693), - [anon_sym_type] = ACTIONS(1693), - [anon_sym_union] = ACTIONS(1693), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_use] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1693), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_move] = ACTIONS(1693), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1691), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), + [ts_builtin_sym_end] = ACTIONS(1714), + [sym_identifier] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_macro_rules_BANG] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_u8] = ACTIONS(1716), + [anon_sym_i8] = ACTIONS(1716), + [anon_sym_u16] = ACTIONS(1716), + [anon_sym_i16] = ACTIONS(1716), + [anon_sym_u32] = ACTIONS(1716), + [anon_sym_i32] = ACTIONS(1716), + [anon_sym_u64] = ACTIONS(1716), + [anon_sym_i64] = ACTIONS(1716), + [anon_sym_u128] = ACTIONS(1716), + [anon_sym_i128] = ACTIONS(1716), + [anon_sym_isize] = ACTIONS(1716), + [anon_sym_usize] = ACTIONS(1716), + [anon_sym_f32] = ACTIONS(1716), + [anon_sym_f64] = ACTIONS(1716), + [anon_sym_bool] = ACTIONS(1716), + [anon_sym_str] = ACTIONS(1716), + [anon_sym_char] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [anon_sym_async] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_fn] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_impl] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_mod] = ACTIONS(1716), + [anon_sym_pub] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_trait] = ACTIONS(1716), + [anon_sym_type] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_unsafe] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_COLON_COLON] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_move] = ACTIONS(1716), + [sym_integer_literal] = ACTIONS(1714), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1714), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1693), - [sym_super] = ACTIONS(1693), - [sym_crate] = ACTIONS(1693), - [sym_metavariable] = ACTIONS(1691), - [sym_raw_string_literal] = ACTIONS(1691), - [sym_float_literal] = ACTIONS(1691), + [sym_self] = ACTIONS(1716), + [sym_super] = ACTIONS(1716), + [sym_crate] = ACTIONS(1716), + [sym_metavariable] = ACTIONS(1714), + [sym_raw_string_literal] = ACTIONS(1714), + [sym_float_literal] = ACTIONS(1714), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1695), - [sym_identifier] = ACTIONS(1697), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_macro_rules_BANG] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_u8] = ACTIONS(1697), - [anon_sym_i8] = ACTIONS(1697), - [anon_sym_u16] = ACTIONS(1697), - [anon_sym_i16] = ACTIONS(1697), - [anon_sym_u32] = ACTIONS(1697), - [anon_sym_i32] = ACTIONS(1697), - [anon_sym_u64] = ACTIONS(1697), - [anon_sym_i64] = ACTIONS(1697), - [anon_sym_u128] = ACTIONS(1697), - [anon_sym_i128] = ACTIONS(1697), - [anon_sym_isize] = ACTIONS(1697), - [anon_sym_usize] = ACTIONS(1697), - [anon_sym_f32] = ACTIONS(1697), - [anon_sym_f64] = ACTIONS(1697), - [anon_sym_bool] = ACTIONS(1697), - [anon_sym_str] = ACTIONS(1697), - [anon_sym_char] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_async] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_fn] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_impl] = ACTIONS(1697), - [anon_sym_let] = ACTIONS(1697), - [anon_sym_loop] = ACTIONS(1697), - [anon_sym_match] = ACTIONS(1697), - [anon_sym_mod] = ACTIONS(1697), - [anon_sym_pub] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_trait] = ACTIONS(1697), - [anon_sym_type] = ACTIONS(1697), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_unsafe] = ACTIONS(1697), - [anon_sym_use] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_COLON_COLON] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_move] = ACTIONS(1697), - [sym_integer_literal] = ACTIONS(1695), - [aux_sym_string_literal_token1] = ACTIONS(1695), - [sym_char_literal] = ACTIONS(1695), - [anon_sym_true] = ACTIONS(1697), - [anon_sym_false] = ACTIONS(1697), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1695), - [sym_raw_string_literal] = ACTIONS(1695), - [sym_float_literal] = ACTIONS(1695), - [sym_block_comment] = ACTIONS(3), - }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_macro_rules_BANG] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_u8] = ACTIONS(1701), - [anon_sym_i8] = ACTIONS(1701), - [anon_sym_u16] = ACTIONS(1701), - [anon_sym_i16] = ACTIONS(1701), - [anon_sym_u32] = ACTIONS(1701), - [anon_sym_i32] = ACTIONS(1701), - [anon_sym_u64] = ACTIONS(1701), - [anon_sym_i64] = ACTIONS(1701), - [anon_sym_u128] = ACTIONS(1701), - [anon_sym_i128] = ACTIONS(1701), - [anon_sym_isize] = ACTIONS(1701), - [anon_sym_usize] = ACTIONS(1701), - [anon_sym_f32] = ACTIONS(1701), - [anon_sym_f64] = ACTIONS(1701), - [anon_sym_bool] = ACTIONS(1701), - [anon_sym_str] = ACTIONS(1701), - [anon_sym_char] = ACTIONS(1701), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_fn] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_impl] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_mod] = ACTIONS(1701), - [anon_sym_pub] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_trait] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [anon_sym_unsafe] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_move] = ACTIONS(1701), - [sym_integer_literal] = ACTIONS(1699), - [aux_sym_string_literal_token1] = ACTIONS(1699), - [sym_char_literal] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_crate] = ACTIONS(1701), - [sym_metavariable] = ACTIONS(1699), - [sym_raw_string_literal] = ACTIONS(1699), - [sym_float_literal] = ACTIONS(1699), - [sym_block_comment] = ACTIONS(3), - }, - [342] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_RBRACK] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(1718), + [sym_identifier] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_macro_rules_BANG] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), [anon_sym_u8] = ACTIONS(1720), [anon_sym_i8] = ACTIONS(1720), [anon_sym_u16] = ACTIONS(1720), @@ -40254,163 +40202,388 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1720), [anon_sym_str] = ACTIONS(1720), [anon_sym_char] = ACTIONS(1720), - [aux_sym__non_special_token_token1] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_impl] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_mod] = ACTIONS(1703), - [anon_sym_pub] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_trait] = ACTIONS(1703), - [anon_sym_type] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_unsafe] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_where] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [sym_mutable_specifier] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1720), + [anon_sym_async] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_enum] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_impl] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_mod] = ACTIONS(1720), + [anon_sym_pub] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1720), + [anon_sym_trait] = ACTIONS(1720), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_union] = ACTIONS(1720), + [anon_sym_unsafe] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_DOT_DOT] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_move] = ACTIONS(1720), + [sym_integer_literal] = ACTIONS(1718), + [aux_sym_string_literal_token1] = ACTIONS(1718), + [sym_char_literal] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1720), + [sym_super] = ACTIONS(1720), + [sym_crate] = ACTIONS(1720), + [sym_metavariable] = ACTIONS(1718), + [sym_raw_string_literal] = ACTIONS(1718), + [sym_float_literal] = ACTIONS(1718), + [sym_block_comment] = ACTIONS(3), + }, + [341] = { + [ts_builtin_sym_end] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_macro_rules_BANG] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_u8] = ACTIONS(1724), + [anon_sym_i8] = ACTIONS(1724), + [anon_sym_u16] = ACTIONS(1724), + [anon_sym_i16] = ACTIONS(1724), + [anon_sym_u32] = ACTIONS(1724), + [anon_sym_i32] = ACTIONS(1724), + [anon_sym_u64] = ACTIONS(1724), + [anon_sym_i64] = ACTIONS(1724), + [anon_sym_u128] = ACTIONS(1724), + [anon_sym_i128] = ACTIONS(1724), + [anon_sym_isize] = ACTIONS(1724), + [anon_sym_usize] = ACTIONS(1724), + [anon_sym_f32] = ACTIONS(1724), + [anon_sym_f64] = ACTIONS(1724), + [anon_sym_bool] = ACTIONS(1724), + [anon_sym_str] = ACTIONS(1724), + [anon_sym_char] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_enum] = ACTIONS(1724), + [anon_sym_fn] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_impl] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_mod] = ACTIONS(1724), + [anon_sym_pub] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_struct] = ACTIONS(1724), + [anon_sym_trait] = ACTIONS(1724), + [anon_sym_type] = ACTIONS(1724), + [anon_sym_union] = ACTIONS(1724), + [anon_sym_unsafe] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_COLON_COLON] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_DOT_DOT] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_move] = ACTIONS(1724), + [sym_integer_literal] = ACTIONS(1722), + [aux_sym_string_literal_token1] = ACTIONS(1722), + [sym_char_literal] = ACTIONS(1722), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1724), + [sym_super] = ACTIONS(1724), + [sym_crate] = ACTIONS(1724), + [sym_metavariable] = ACTIONS(1722), + [sym_raw_string_literal] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1722), + [sym_block_comment] = ACTIONS(3), + }, + [342] = { + [ts_builtin_sym_end] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_macro_rules_BANG] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u128] = ACTIONS(1728), + [anon_sym_i128] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_str] = ACTIONS(1728), + [anon_sym_char] = ACTIONS(1728), + [anon_sym_SQUOTE] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), + [anon_sym_fn] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_impl] = ACTIONS(1728), + [anon_sym_let] = ACTIONS(1728), + [anon_sym_loop] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_mod] = ACTIONS(1728), + [anon_sym_pub] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_trait] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_unsafe] = ACTIONS(1728), + [anon_sym_use] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_extern] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_DOT_DOT] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_move] = ACTIONS(1728), + [sym_integer_literal] = ACTIONS(1726), [aux_sym_string_literal_token1] = ACTIONS(1726), - [sym_char_literal] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1703), - [sym_super] = ACTIONS(1703), - [sym_crate] = ACTIONS(1703), - [sym_metavariable] = ACTIONS(1723), - [sym_raw_string_literal] = ACTIONS(1723), - [sym_float_literal] = ACTIONS(1723), + [sym_char_literal] = ACTIONS(1726), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_crate] = ACTIONS(1728), + [sym_metavariable] = ACTIONS(1726), + [sym_raw_string_literal] = ACTIONS(1726), + [sym_float_literal] = ACTIONS(1726), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_macro_rules_BANG] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_u8] = ACTIONS(1734), - [anon_sym_i8] = ACTIONS(1734), - [anon_sym_u16] = ACTIONS(1734), - [anon_sym_i16] = ACTIONS(1734), - [anon_sym_u32] = ACTIONS(1734), - [anon_sym_i32] = ACTIONS(1734), - [anon_sym_u64] = ACTIONS(1734), - [anon_sym_i64] = ACTIONS(1734), - [anon_sym_u128] = ACTIONS(1734), - [anon_sym_i128] = ACTIONS(1734), - [anon_sym_isize] = ACTIONS(1734), - [anon_sym_usize] = ACTIONS(1734), - [anon_sym_f32] = ACTIONS(1734), - [anon_sym_f64] = ACTIONS(1734), - [anon_sym_bool] = ACTIONS(1734), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_char] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_async] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_fn] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_impl] = ACTIONS(1734), - [anon_sym_let] = ACTIONS(1734), - [anon_sym_loop] = ACTIONS(1734), - [anon_sym_match] = ACTIONS(1734), - [anon_sym_mod] = ACTIONS(1734), - [anon_sym_pub] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_trait] = ACTIONS(1734), - [anon_sym_type] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_unsafe] = ACTIONS(1734), - [anon_sym_use] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_move] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [aux_sym_string_literal_token1] = ACTIONS(1732), - [sym_char_literal] = ACTIONS(1732), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), + [ts_builtin_sym_end] = ACTIONS(399), + [sym_identifier] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_macro_rules_BANG] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(401), + [anon_sym_i8] = ACTIONS(401), + [anon_sym_u16] = ACTIONS(401), + [anon_sym_i16] = ACTIONS(401), + [anon_sym_u32] = ACTIONS(401), + [anon_sym_i32] = ACTIONS(401), + [anon_sym_u64] = ACTIONS(401), + [anon_sym_i64] = ACTIONS(401), + [anon_sym_u128] = ACTIONS(401), + [anon_sym_i128] = ACTIONS(401), + [anon_sym_isize] = ACTIONS(401), + [anon_sym_usize] = ACTIONS(401), + [anon_sym_f32] = ACTIONS(401), + [anon_sym_f64] = ACTIONS(401), + [anon_sym_bool] = ACTIONS(401), + [anon_sym_str] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(401), + [anon_sym_const] = ACTIONS(401), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_default] = ACTIONS(401), + [anon_sym_enum] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(401), + [anon_sym_for] = ACTIONS(401), + [anon_sym_if] = ACTIONS(401), + [anon_sym_impl] = ACTIONS(401), + [anon_sym_let] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(401), + [anon_sym_match] = ACTIONS(401), + [anon_sym_mod] = ACTIONS(401), + [anon_sym_pub] = ACTIONS(401), + [anon_sym_return] = ACTIONS(401), + [anon_sym_static] = ACTIONS(401), + [anon_sym_struct] = ACTIONS(401), + [anon_sym_trait] = ACTIONS(401), + [anon_sym_type] = ACTIONS(401), + [anon_sym_union] = ACTIONS(401), + [anon_sym_unsafe] = ACTIONS(401), + [anon_sym_use] = ACTIONS(401), + [anon_sym_while] = ACTIONS(401), + [anon_sym_POUND] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_extern] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_move] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(399), + [aux_sym_string_literal_token1] = ACTIONS(399), + [sym_char_literal] = ACTIONS(399), + [anon_sym_true] = ACTIONS(401), + [anon_sym_false] = ACTIONS(401), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1734), - [sym_super] = ACTIONS(1734), - [sym_crate] = ACTIONS(1734), - [sym_metavariable] = ACTIONS(1732), - [sym_raw_string_literal] = ACTIONS(1732), - [sym_float_literal] = ACTIONS(1732), + [sym_self] = ACTIONS(401), + [sym_super] = ACTIONS(401), + [sym_crate] = ACTIONS(401), + [sym_metavariable] = ACTIONS(399), + [sym_raw_string_literal] = ACTIONS(399), + [sym_float_literal] = ACTIONS(399), [sym_block_comment] = ACTIONS(3), }, [344] = { - [sym__token_pattern] = STATE(319), - [sym_token_tree_pattern] = STATE(319), - [sym_token_binding_pattern] = STATE(319), - [sym_token_repetition_pattern] = STATE(319), - [sym__literal] = STATE(319), - [sym_string_literal] = STATE(319), - [sym_boolean_literal] = STATE(319), - [aux_sym_token_tree_pattern_repeat1] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_macro_rules_BANG] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_u8] = ACTIONS(1732), + [anon_sym_i8] = ACTIONS(1732), + [anon_sym_u16] = ACTIONS(1732), + [anon_sym_i16] = ACTIONS(1732), + [anon_sym_u32] = ACTIONS(1732), + [anon_sym_i32] = ACTIONS(1732), + [anon_sym_u64] = ACTIONS(1732), + [anon_sym_i64] = ACTIONS(1732), + [anon_sym_u128] = ACTIONS(1732), + [anon_sym_i128] = ACTIONS(1732), + [anon_sym_isize] = ACTIONS(1732), + [anon_sym_usize] = ACTIONS(1732), + [anon_sym_f32] = ACTIONS(1732), + [anon_sym_f64] = ACTIONS(1732), + [anon_sym_bool] = ACTIONS(1732), + [anon_sym_str] = ACTIONS(1732), + [anon_sym_char] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [anon_sym_fn] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_impl] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_loop] = ACTIONS(1732), + [anon_sym_match] = ACTIONS(1732), + [anon_sym_mod] = ACTIONS(1732), + [anon_sym_pub] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_struct] = ACTIONS(1732), + [anon_sym_trait] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_union] = ACTIONS(1732), + [anon_sym_unsafe] = ACTIONS(1732), + [anon_sym_use] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_COLON_COLON] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_move] = ACTIONS(1732), + [sym_integer_literal] = ACTIONS(1730), + [aux_sym_string_literal_token1] = ACTIONS(1730), + [sym_char_literal] = ACTIONS(1730), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_crate] = ACTIONS(1732), + [sym_metavariable] = ACTIONS(1730), + [sym_raw_string_literal] = ACTIONS(1730), + [sym_float_literal] = ACTIONS(1730), + [sym_block_comment] = ACTIONS(3), + }, + [345] = { + [ts_builtin_sym_end] = ACTIONS(1734), [sym_identifier] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_RBRACK] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_macro_rules_BANG] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_u8] = ACTIONS(1736), + [anon_sym_i8] = ACTIONS(1736), + [anon_sym_u16] = ACTIONS(1736), + [anon_sym_i16] = ACTIONS(1736), + [anon_sym_u32] = ACTIONS(1736), + [anon_sym_i32] = ACTIONS(1736), + [anon_sym_u64] = ACTIONS(1736), + [anon_sym_i64] = ACTIONS(1736), + [anon_sym_u128] = ACTIONS(1736), + [anon_sym_i128] = ACTIONS(1736), + [anon_sym_isize] = ACTIONS(1736), + [anon_sym_usize] = ACTIONS(1736), + [anon_sym_f32] = ACTIONS(1736), + [anon_sym_f64] = ACTIONS(1736), + [anon_sym_bool] = ACTIONS(1736), + [anon_sym_str] = ACTIONS(1736), + [anon_sym_char] = ACTIONS(1736), [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_as] = ACTIONS(1736), [anon_sym_async] = ACTIONS(1736), - [anon_sym_await] = ACTIONS(1736), [anon_sym_break] = ACTIONS(1736), [anon_sym_const] = ACTIONS(1736), [anon_sym_continue] = ACTIONS(1736), @@ -40433,24 +40606,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1736), [anon_sym_unsafe] = ACTIONS(1736), [anon_sym_use] = ACTIONS(1736), - [anon_sym_where] = ACTIONS(1736), [anon_sym_while] = ACTIONS(1736), - [sym_mutable_specifier] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1740), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1740), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_move] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [aux_sym_string_literal_token1] = ACTIONS(1734), + [sym_char_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1736), + [anon_sym_false] = ACTIONS(1736), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1736), [sym_super] = ACTIONS(1736), [sym_crate] = ACTIONS(1736), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1740), - [sym_float_literal] = ACTIONS(1740), + [sym_metavariable] = ACTIONS(1734), + [sym_raw_string_literal] = ACTIONS(1734), + [sym_float_literal] = ACTIONS(1734), [sym_block_comment] = ACTIONS(3), }, - [345] = { + [346] = { + [ts_builtin_sym_end] = ACTIONS(1738), + [sym_identifier] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_macro_rules_BANG] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_u8] = ACTIONS(1740), + [anon_sym_i8] = ACTIONS(1740), + [anon_sym_u16] = ACTIONS(1740), + [anon_sym_i16] = ACTIONS(1740), + [anon_sym_u32] = ACTIONS(1740), + [anon_sym_i32] = ACTIONS(1740), + [anon_sym_u64] = ACTIONS(1740), + [anon_sym_i64] = ACTIONS(1740), + [anon_sym_u128] = ACTIONS(1740), + [anon_sym_i128] = ACTIONS(1740), + [anon_sym_isize] = ACTIONS(1740), + [anon_sym_usize] = ACTIONS(1740), + [anon_sym_f32] = ACTIONS(1740), + [anon_sym_f64] = ACTIONS(1740), + [anon_sym_bool] = ACTIONS(1740), + [anon_sym_str] = ACTIONS(1740), + [anon_sym_char] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [anon_sym_async] = ACTIONS(1740), + [anon_sym_break] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_continue] = ACTIONS(1740), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_fn] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1740), + [anon_sym_if] = ACTIONS(1740), + [anon_sym_impl] = ACTIONS(1740), + [anon_sym_let] = ACTIONS(1740), + [anon_sym_loop] = ACTIONS(1740), + [anon_sym_match] = ACTIONS(1740), + [anon_sym_mod] = ACTIONS(1740), + [anon_sym_pub] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_trait] = ACTIONS(1740), + [anon_sym_type] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_unsafe] = ACTIONS(1740), + [anon_sym_use] = ACTIONS(1740), + [anon_sym_while] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_move] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [aux_sym_string_literal_token1] = ACTIONS(1738), + [sym_char_literal] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1740), + [sym_super] = ACTIONS(1740), + [sym_crate] = ACTIONS(1740), + [sym_metavariable] = ACTIONS(1738), + [sym_raw_string_literal] = ACTIONS(1738), + [sym_float_literal] = ACTIONS(1738), + [sym_block_comment] = ACTIONS(3), + }, + [347] = { [ts_builtin_sym_end] = ACTIONS(1742), [sym_identifier] = ACTIONS(1744), [anon_sym_SEMI] = ACTIONS(1742), @@ -40526,7 +40783,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1742), [sym_block_comment] = ACTIONS(3), }, - [346] = { + [348] = { [ts_builtin_sym_end] = ACTIONS(1746), [sym_identifier] = ACTIONS(1748), [anon_sym_SEMI] = ACTIONS(1746), @@ -40602,7 +40859,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1746), [sym_block_comment] = ACTIONS(3), }, - [347] = { + [349] = { [ts_builtin_sym_end] = ACTIONS(1750), [sym_identifier] = ACTIONS(1752), [anon_sym_SEMI] = ACTIONS(1750), @@ -40678,83 +40935,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1750), [sym_block_comment] = ACTIONS(3), }, - [348] = { - [sym__token_pattern] = STATE(320), - [sym_token_tree_pattern] = STATE(320), - [sym_token_binding_pattern] = STATE(320), - [sym_token_repetition_pattern] = STATE(320), - [sym__literal] = STATE(320), - [sym_string_literal] = STATE(320), - [sym_boolean_literal] = STATE(320), - [aux_sym_token_tree_pattern_repeat1] = STATE(320), - [sym_identifier] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_as] = ACTIONS(1754), - [anon_sym_async] = ACTIONS(1754), - [anon_sym_await] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_fn] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_impl] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1754), - [anon_sym_loop] = ACTIONS(1754), - [anon_sym_match] = ACTIONS(1754), - [anon_sym_mod] = ACTIONS(1754), - [anon_sym_pub] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_trait] = ACTIONS(1754), - [anon_sym_type] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_unsafe] = ACTIONS(1754), - [anon_sym_use] = ACTIONS(1754), - [anon_sym_where] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [sym_mutable_specifier] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1756), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1756), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1754), - [sym_super] = ACTIONS(1754), - [sym_crate] = ACTIONS(1754), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1756), - [sym_float_literal] = ACTIONS(1756), + [350] = { + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_macro_rules_BANG] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_u8] = ACTIONS(1756), + [anon_sym_i8] = ACTIONS(1756), + [anon_sym_u16] = ACTIONS(1756), + [anon_sym_i16] = ACTIONS(1756), + [anon_sym_u32] = ACTIONS(1756), + [anon_sym_i32] = ACTIONS(1756), + [anon_sym_u64] = ACTIONS(1756), + [anon_sym_i64] = ACTIONS(1756), + [anon_sym_u128] = ACTIONS(1756), + [anon_sym_i128] = ACTIONS(1756), + [anon_sym_isize] = ACTIONS(1756), + [anon_sym_usize] = ACTIONS(1756), + [anon_sym_f32] = ACTIONS(1756), + [anon_sym_f64] = ACTIONS(1756), + [anon_sym_bool] = ACTIONS(1756), + [anon_sym_str] = ACTIONS(1756), + [anon_sym_char] = ACTIONS(1756), + [anon_sym_SQUOTE] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_fn] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_impl] = ACTIONS(1756), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_loop] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_mod] = ACTIONS(1756), + [anon_sym_pub] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_trait] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_unsafe] = ACTIONS(1756), + [anon_sym_use] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_POUND] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_move] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [aux_sym_string_literal_token1] = ACTIONS(1754), + [sym_char_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1756), + [anon_sym_false] = ACTIONS(1756), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_crate] = ACTIONS(1756), + [sym_metavariable] = ACTIONS(1754), + [sym_raw_string_literal] = ACTIONS(1754), + [sym_float_literal] = ACTIONS(1754), [sym_block_comment] = ACTIONS(3), }, - [349] = { + [351] = { [ts_builtin_sym_end] = ACTIONS(1758), [sym_identifier] = ACTIONS(1760), [anon_sym_SEMI] = ACTIONS(1758), @@ -40830,83 +41087,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1758), [sym_block_comment] = ACTIONS(3), }, - [350] = { - [sym__token_pattern] = STATE(321), - [sym_token_tree_pattern] = STATE(321), - [sym_token_binding_pattern] = STATE(321), - [sym_token_repetition_pattern] = STATE(321), - [sym__literal] = STATE(321), - [sym_string_literal] = STATE(321), - [sym_boolean_literal] = STATE(321), - [aux_sym_token_tree_pattern_repeat1] = STATE(321), - [sym_identifier] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1762), - [anon_sym_as] = ACTIONS(1762), - [anon_sym_async] = ACTIONS(1762), - [anon_sym_await] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_fn] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_impl] = ACTIONS(1762), - [anon_sym_let] = ACTIONS(1762), - [anon_sym_loop] = ACTIONS(1762), - [anon_sym_match] = ACTIONS(1762), - [anon_sym_mod] = ACTIONS(1762), - [anon_sym_pub] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_struct] = ACTIONS(1762), - [anon_sym_trait] = ACTIONS(1762), - [anon_sym_type] = ACTIONS(1762), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_unsafe] = ACTIONS(1762), - [anon_sym_use] = ACTIONS(1762), - [anon_sym_where] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [sym_mutable_specifier] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1764), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1762), - [sym_super] = ACTIONS(1762), - [sym_crate] = ACTIONS(1762), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1764), - [sym_float_literal] = ACTIONS(1764), + [352] = { + [ts_builtin_sym_end] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_macro_rules_BANG] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_u8] = ACTIONS(1764), + [anon_sym_i8] = ACTIONS(1764), + [anon_sym_u16] = ACTIONS(1764), + [anon_sym_i16] = ACTIONS(1764), + [anon_sym_u32] = ACTIONS(1764), + [anon_sym_i32] = ACTIONS(1764), + [anon_sym_u64] = ACTIONS(1764), + [anon_sym_i64] = ACTIONS(1764), + [anon_sym_u128] = ACTIONS(1764), + [anon_sym_i128] = ACTIONS(1764), + [anon_sym_isize] = ACTIONS(1764), + [anon_sym_usize] = ACTIONS(1764), + [anon_sym_f32] = ACTIONS(1764), + [anon_sym_f64] = ACTIONS(1764), + [anon_sym_bool] = ACTIONS(1764), + [anon_sym_str] = ACTIONS(1764), + [anon_sym_char] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_async] = ACTIONS(1764), + [anon_sym_break] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1764), + [anon_sym_continue] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1764), + [anon_sym_enum] = ACTIONS(1764), + [anon_sym_fn] = ACTIONS(1764), + [anon_sym_for] = ACTIONS(1764), + [anon_sym_if] = ACTIONS(1764), + [anon_sym_impl] = ACTIONS(1764), + [anon_sym_let] = ACTIONS(1764), + [anon_sym_loop] = ACTIONS(1764), + [anon_sym_match] = ACTIONS(1764), + [anon_sym_mod] = ACTIONS(1764), + [anon_sym_pub] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1764), + [anon_sym_trait] = ACTIONS(1764), + [anon_sym_type] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1764), + [anon_sym_unsafe] = ACTIONS(1764), + [anon_sym_use] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_move] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [aux_sym_string_literal_token1] = ACTIONS(1762), + [sym_char_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1764), + [anon_sym_false] = ACTIONS(1764), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1764), + [sym_super] = ACTIONS(1764), + [sym_crate] = ACTIONS(1764), + [sym_metavariable] = ACTIONS(1762), + [sym_raw_string_literal] = ACTIONS(1762), + [sym_float_literal] = ACTIONS(1762), [sym_block_comment] = ACTIONS(3), }, - [351] = { + [353] = { [ts_builtin_sym_end] = ACTIONS(1766), [sym_identifier] = ACTIONS(1768), [anon_sym_SEMI] = ACTIONS(1766), @@ -40982,83 +41239,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1766), [sym_block_comment] = ACTIONS(3), }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(421), - [sym_identifier] = ACTIONS(423), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_macro_rules_BANG] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(421), - [anon_sym_u8] = ACTIONS(423), - [anon_sym_i8] = ACTIONS(423), - [anon_sym_u16] = ACTIONS(423), - [anon_sym_i16] = ACTIONS(423), - [anon_sym_u32] = ACTIONS(423), - [anon_sym_i32] = ACTIONS(423), - [anon_sym_u64] = ACTIONS(423), - [anon_sym_i64] = ACTIONS(423), - [anon_sym_u128] = ACTIONS(423), - [anon_sym_i128] = ACTIONS(423), - [anon_sym_isize] = ACTIONS(423), - [anon_sym_usize] = ACTIONS(423), - [anon_sym_f32] = ACTIONS(423), - [anon_sym_f64] = ACTIONS(423), - [anon_sym_bool] = ACTIONS(423), - [anon_sym_str] = ACTIONS(423), - [anon_sym_char] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(423), - [anon_sym_async] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_const] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(423), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_fn] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_impl] = ACTIONS(423), - [anon_sym_let] = ACTIONS(423), - [anon_sym_loop] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_mod] = ACTIONS(423), - [anon_sym_pub] = ACTIONS(423), - [anon_sym_return] = ACTIONS(423), - [anon_sym_static] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_trait] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_union] = ACTIONS(423), - [anon_sym_unsafe] = ACTIONS(423), - [anon_sym_use] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_POUND] = ACTIONS(421), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_extern] = ACTIONS(423), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_COLON_COLON] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(421), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(421), - [anon_sym_move] = ACTIONS(423), - [sym_integer_literal] = ACTIONS(421), - [aux_sym_string_literal_token1] = ACTIONS(421), - [sym_char_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(423), - [sym_super] = ACTIONS(423), - [sym_crate] = ACTIONS(423), - [sym_metavariable] = ACTIONS(421), - [sym_raw_string_literal] = ACTIONS(421), - [sym_float_literal] = ACTIONS(421), - [sym_block_comment] = ACTIONS(3), - }, - [353] = { + [354] = { [ts_builtin_sym_end] = ACTIONS(1770), [sym_identifier] = ACTIONS(1772), [anon_sym_SEMI] = ACTIONS(1770), @@ -41134,7 +41315,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1770), [sym_block_comment] = ACTIONS(3), }, - [354] = { + [355] = { + [sym__token_pattern] = STATE(233), + [sym_token_tree_pattern] = STATE(233), + [sym_token_binding_pattern] = STATE(233), + [sym_token_repetition_pattern] = STATE(233), + [sym__literal] = STATE(233), + [sym_string_literal] = STATE(233), + [sym_boolean_literal] = STATE(233), + [aux_sym_token_tree_pattern_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_RBRACK] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_impl] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1605), + [anon_sym_pub] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_trait] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_unsafe] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [sym_mutable_specifier] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1605), + [sym_crate] = ACTIONS(1605), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), + [sym_block_comment] = ACTIONS(3), + }, + [356] = { [ts_builtin_sym_end] = ACTIONS(1774), [sym_identifier] = ACTIONS(1776), [anon_sym_SEMI] = ACTIONS(1774), @@ -41210,7 +41467,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1774), [sym_block_comment] = ACTIONS(3), }, - [355] = { + [357] = { [ts_builtin_sym_end] = ACTIONS(1778), [sym_identifier] = ACTIONS(1780), [anon_sym_SEMI] = ACTIONS(1778), @@ -41286,947 +41543,1183 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1778), [sym_block_comment] = ACTIONS(3), }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_macro_rules_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_async] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_impl] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1784), - [anon_sym_pub] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_trait] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_unsafe] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_move] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1782), - [aux_sym_string_literal_token1] = ACTIONS(1782), - [sym_char_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym_raw_string_literal] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), - [sym_block_comment] = ACTIONS(3), - }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_macro_rules_BANG] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_u8] = ACTIONS(1788), - [anon_sym_i8] = ACTIONS(1788), - [anon_sym_u16] = ACTIONS(1788), - [anon_sym_i16] = ACTIONS(1788), - [anon_sym_u32] = ACTIONS(1788), - [anon_sym_i32] = ACTIONS(1788), - [anon_sym_u64] = ACTIONS(1788), - [anon_sym_i64] = ACTIONS(1788), - [anon_sym_u128] = ACTIONS(1788), - [anon_sym_i128] = ACTIONS(1788), - [anon_sym_isize] = ACTIONS(1788), - [anon_sym_usize] = ACTIONS(1788), - [anon_sym_f32] = ACTIONS(1788), - [anon_sym_f64] = ACTIONS(1788), - [anon_sym_bool] = ACTIONS(1788), - [anon_sym_str] = ACTIONS(1788), - [anon_sym_char] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_fn] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_impl] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1788), - [anon_sym_pub] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_trait] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_unsafe] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_move] = ACTIONS(1788), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym_raw_string_literal] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), - [sym_block_comment] = ACTIONS(3), - }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_macro_rules_BANG] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_u8] = ACTIONS(1792), - [anon_sym_i8] = ACTIONS(1792), - [anon_sym_u16] = ACTIONS(1792), - [anon_sym_i16] = ACTIONS(1792), - [anon_sym_u32] = ACTIONS(1792), - [anon_sym_i32] = ACTIONS(1792), - [anon_sym_u64] = ACTIONS(1792), - [anon_sym_i64] = ACTIONS(1792), - [anon_sym_u128] = ACTIONS(1792), - [anon_sym_i128] = ACTIONS(1792), - [anon_sym_isize] = ACTIONS(1792), - [anon_sym_usize] = ACTIONS(1792), - [anon_sym_f32] = ACTIONS(1792), - [anon_sym_f64] = ACTIONS(1792), - [anon_sym_bool] = ACTIONS(1792), - [anon_sym_str] = ACTIONS(1792), - [anon_sym_char] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [anon_sym_fn] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_impl] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1792), - [anon_sym_pub] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_struct] = ACTIONS(1792), - [anon_sym_trait] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_union] = ACTIONS(1792), - [anon_sym_unsafe] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_move] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [aux_sym_string_literal_token1] = ACTIONS(1790), - [sym_char_literal] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym_raw_string_literal] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), + [sym__token_pattern] = STATE(233), + [sym_token_tree_pattern] = STATE(233), + [sym_token_binding_pattern] = STATE(233), + [sym_token_repetition_pattern] = STATE(233), + [sym__literal] = STATE(233), + [sym_string_literal] = STATE(233), + [sym_boolean_literal] = STATE(233), + [aux_sym_token_tree_pattern_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_impl] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1605), + [anon_sym_pub] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_trait] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_unsafe] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [sym_mutable_specifier] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1605), + [sym_crate] = ACTIONS(1605), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_identifier] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_macro_rules_BANG] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_async] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_enum] = ACTIONS(1796), - [anon_sym_fn] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_impl] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1796), - [anon_sym_pub] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_struct] = ACTIONS(1796), - [anon_sym_trait] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1796), - [anon_sym_union] = ACTIONS(1796), - [anon_sym_unsafe] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_move] = ACTIONS(1796), - [sym_integer_literal] = ACTIONS(1794), - [aux_sym_string_literal_token1] = ACTIONS(1794), - [sym_char_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), + [ts_builtin_sym_end] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_macro_rules_BANG] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_u8] = ACTIONS(1786), + [anon_sym_i8] = ACTIONS(1786), + [anon_sym_u16] = ACTIONS(1786), + [anon_sym_i16] = ACTIONS(1786), + [anon_sym_u32] = ACTIONS(1786), + [anon_sym_i32] = ACTIONS(1786), + [anon_sym_u64] = ACTIONS(1786), + [anon_sym_i64] = ACTIONS(1786), + [anon_sym_u128] = ACTIONS(1786), + [anon_sym_i128] = ACTIONS(1786), + [anon_sym_isize] = ACTIONS(1786), + [anon_sym_usize] = ACTIONS(1786), + [anon_sym_f32] = ACTIONS(1786), + [anon_sym_f64] = ACTIONS(1786), + [anon_sym_bool] = ACTIONS(1786), + [anon_sym_str] = ACTIONS(1786), + [anon_sym_char] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_async] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_default] = ACTIONS(1786), + [anon_sym_enum] = ACTIONS(1786), + [anon_sym_fn] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_impl] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_mod] = ACTIONS(1786), + [anon_sym_pub] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1786), + [anon_sym_trait] = ACTIONS(1786), + [anon_sym_type] = ACTIONS(1786), + [anon_sym_union] = ACTIONS(1786), + [anon_sym_unsafe] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_DOT_DOT] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_move] = ACTIONS(1786), + [sym_integer_literal] = ACTIONS(1784), + [aux_sym_string_literal_token1] = ACTIONS(1784), + [sym_char_literal] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym_raw_string_literal] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), + [sym_self] = ACTIONS(1786), + [sym_super] = ACTIONS(1786), + [sym_crate] = ACTIONS(1786), + [sym_metavariable] = ACTIONS(1784), + [sym_raw_string_literal] = ACTIONS(1784), + [sym_float_literal] = ACTIONS(1784), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_move] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), + [ts_builtin_sym_end] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_macro_rules_BANG] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_u8] = ACTIONS(1790), + [anon_sym_i8] = ACTIONS(1790), + [anon_sym_u16] = ACTIONS(1790), + [anon_sym_i16] = ACTIONS(1790), + [anon_sym_u32] = ACTIONS(1790), + [anon_sym_i32] = ACTIONS(1790), + [anon_sym_u64] = ACTIONS(1790), + [anon_sym_i64] = ACTIONS(1790), + [anon_sym_u128] = ACTIONS(1790), + [anon_sym_i128] = ACTIONS(1790), + [anon_sym_isize] = ACTIONS(1790), + [anon_sym_usize] = ACTIONS(1790), + [anon_sym_f32] = ACTIONS(1790), + [anon_sym_f64] = ACTIONS(1790), + [anon_sym_bool] = ACTIONS(1790), + [anon_sym_str] = ACTIONS(1790), + [anon_sym_char] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_default] = ACTIONS(1790), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_fn] = ACTIONS(1790), + [anon_sym_for] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_impl] = ACTIONS(1790), + [anon_sym_let] = ACTIONS(1790), + [anon_sym_loop] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_mod] = ACTIONS(1790), + [anon_sym_pub] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_struct] = ACTIONS(1790), + [anon_sym_trait] = ACTIONS(1790), + [anon_sym_type] = ACTIONS(1790), + [anon_sym_union] = ACTIONS(1790), + [anon_sym_unsafe] = ACTIONS(1790), + [anon_sym_use] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_COLON_COLON] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_move] = ACTIONS(1790), + [sym_integer_literal] = ACTIONS(1788), + [aux_sym_string_literal_token1] = ACTIONS(1788), + [sym_char_literal] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym_raw_string_literal] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), + [sym_self] = ACTIONS(1790), + [sym_super] = ACTIONS(1790), + [sym_crate] = ACTIONS(1790), + [sym_metavariable] = ACTIONS(1788), + [sym_raw_string_literal] = ACTIONS(1788), + [sym_float_literal] = ACTIONS(1788), [sym_block_comment] = ACTIONS(3), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_move] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym_raw_string_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [sym__token_pattern] = STATE(233), + [sym_token_tree_pattern] = STATE(233), + [sym_token_binding_pattern] = STATE(233), + [sym_token_repetition_pattern] = STATE(233), + [sym__literal] = STATE(233), + [sym_string_literal] = STATE(233), + [sym_boolean_literal] = STATE(233), + [aux_sym_token_tree_pattern_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_impl] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1605), + [anon_sym_pub] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_trait] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_unsafe] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [sym_mutable_specifier] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1605), + [sym_crate] = ACTIONS(1605), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_move] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), + [ts_builtin_sym_end] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_macro_rules_BANG] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_u8] = ACTIONS(1794), + [anon_sym_i8] = ACTIONS(1794), + [anon_sym_u16] = ACTIONS(1794), + [anon_sym_i16] = ACTIONS(1794), + [anon_sym_u32] = ACTIONS(1794), + [anon_sym_i32] = ACTIONS(1794), + [anon_sym_u64] = ACTIONS(1794), + [anon_sym_i64] = ACTIONS(1794), + [anon_sym_u128] = ACTIONS(1794), + [anon_sym_i128] = ACTIONS(1794), + [anon_sym_isize] = ACTIONS(1794), + [anon_sym_usize] = ACTIONS(1794), + [anon_sym_f32] = ACTIONS(1794), + [anon_sym_f64] = ACTIONS(1794), + [anon_sym_bool] = ACTIONS(1794), + [anon_sym_str] = ACTIONS(1794), + [anon_sym_char] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_async] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_enum] = ACTIONS(1794), + [anon_sym_fn] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_impl] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_loop] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_mod] = ACTIONS(1794), + [anon_sym_pub] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_struct] = ACTIONS(1794), + [anon_sym_trait] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_unsafe] = ACTIONS(1794), + [anon_sym_use] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_AMP] = ACTIONS(1792), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_move] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(1792), + [aux_sym_string_literal_token1] = ACTIONS(1792), + [sym_char_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym_raw_string_literal] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [sym_self] = ACTIONS(1794), + [sym_super] = ACTIONS(1794), + [sym_crate] = ACTIONS(1794), + [sym_metavariable] = ACTIONS(1792), + [sym_raw_string_literal] = ACTIONS(1792), + [sym_float_literal] = ACTIONS(1792), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_move] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), + [ts_builtin_sym_end] = ACTIONS(1796), + [sym_identifier] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_macro_rules_BANG] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_u8] = ACTIONS(1798), + [anon_sym_i8] = ACTIONS(1798), + [anon_sym_u16] = ACTIONS(1798), + [anon_sym_i16] = ACTIONS(1798), + [anon_sym_u32] = ACTIONS(1798), + [anon_sym_i32] = ACTIONS(1798), + [anon_sym_u64] = ACTIONS(1798), + [anon_sym_i64] = ACTIONS(1798), + [anon_sym_u128] = ACTIONS(1798), + [anon_sym_i128] = ACTIONS(1798), + [anon_sym_isize] = ACTIONS(1798), + [anon_sym_usize] = ACTIONS(1798), + [anon_sym_f32] = ACTIONS(1798), + [anon_sym_f64] = ACTIONS(1798), + [anon_sym_bool] = ACTIONS(1798), + [anon_sym_str] = ACTIONS(1798), + [anon_sym_char] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_async] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [anon_sym_fn] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_impl] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_loop] = ACTIONS(1798), + [anon_sym_match] = ACTIONS(1798), + [anon_sym_mod] = ACTIONS(1798), + [anon_sym_pub] = ACTIONS(1798), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_struct] = ACTIONS(1798), + [anon_sym_trait] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1798), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsafe] = ACTIONS(1798), + [anon_sym_use] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1796), + [anon_sym_AMP] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_move] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [aux_sym_string_literal_token1] = ACTIONS(1796), + [sym_char_literal] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym_raw_string_literal] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [sym_self] = ACTIONS(1798), + [sym_super] = ACTIONS(1798), + [sym_crate] = ACTIONS(1798), + [sym_metavariable] = ACTIONS(1796), + [sym_raw_string_literal] = ACTIONS(1796), + [sym_float_literal] = ACTIONS(1796), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_macro_rules_BANG] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_u8] = ACTIONS(1802), + [anon_sym_i8] = ACTIONS(1802), + [anon_sym_u16] = ACTIONS(1802), + [anon_sym_i16] = ACTIONS(1802), + [anon_sym_u32] = ACTIONS(1802), + [anon_sym_i32] = ACTIONS(1802), + [anon_sym_u64] = ACTIONS(1802), + [anon_sym_i64] = ACTIONS(1802), + [anon_sym_u128] = ACTIONS(1802), + [anon_sym_i128] = ACTIONS(1802), + [anon_sym_isize] = ACTIONS(1802), + [anon_sym_usize] = ACTIONS(1802), + [anon_sym_f32] = ACTIONS(1802), + [anon_sym_f64] = ACTIONS(1802), + [anon_sym_bool] = ACTIONS(1802), + [anon_sym_str] = ACTIONS(1802), + [anon_sym_char] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [anon_sym_fn] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_impl] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_pub] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_struct] = ACTIONS(1802), + [anon_sym_trait] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_union] = ACTIONS(1802), + [anon_sym_unsafe] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_move] = ACTIONS(1802), + [sym_integer_literal] = ACTIONS(1800), + [aux_sym_string_literal_token1] = ACTIONS(1800), + [sym_char_literal] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym_raw_string_literal] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [sym_self] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_crate] = ACTIONS(1802), + [sym_metavariable] = ACTIONS(1800), + [sym_raw_string_literal] = ACTIONS(1800), + [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_move] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), + [ts_builtin_sym_end] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_macro_rules_BANG] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_u8] = ACTIONS(1806), + [anon_sym_i8] = ACTIONS(1806), + [anon_sym_u16] = ACTIONS(1806), + [anon_sym_i16] = ACTIONS(1806), + [anon_sym_u32] = ACTIONS(1806), + [anon_sym_i32] = ACTIONS(1806), + [anon_sym_u64] = ACTIONS(1806), + [anon_sym_i64] = ACTIONS(1806), + [anon_sym_u128] = ACTIONS(1806), + [anon_sym_i128] = ACTIONS(1806), + [anon_sym_isize] = ACTIONS(1806), + [anon_sym_usize] = ACTIONS(1806), + [anon_sym_f32] = ACTIONS(1806), + [anon_sym_f64] = ACTIONS(1806), + [anon_sym_bool] = ACTIONS(1806), + [anon_sym_str] = ACTIONS(1806), + [anon_sym_char] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_fn] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_impl] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_mod] = ACTIONS(1806), + [anon_sym_pub] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1806), + [anon_sym_trait] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_unsafe] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_move] = ACTIONS(1806), + [sym_integer_literal] = ACTIONS(1804), + [aux_sym_string_literal_token1] = ACTIONS(1804), + [sym_char_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym_raw_string_literal] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1804), + [sym_raw_string_literal] = ACTIONS(1804), + [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_move] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym_identifier] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_macro_rules_BANG] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_u8] = ACTIONS(1810), + [anon_sym_i8] = ACTIONS(1810), + [anon_sym_u16] = ACTIONS(1810), + [anon_sym_i16] = ACTIONS(1810), + [anon_sym_u32] = ACTIONS(1810), + [anon_sym_i32] = ACTIONS(1810), + [anon_sym_u64] = ACTIONS(1810), + [anon_sym_i64] = ACTIONS(1810), + [anon_sym_u128] = ACTIONS(1810), + [anon_sym_i128] = ACTIONS(1810), + [anon_sym_isize] = ACTIONS(1810), + [anon_sym_usize] = ACTIONS(1810), + [anon_sym_f32] = ACTIONS(1810), + [anon_sym_f64] = ACTIONS(1810), + [anon_sym_bool] = ACTIONS(1810), + [anon_sym_str] = ACTIONS(1810), + [anon_sym_char] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_async] = ACTIONS(1810), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1810), + [anon_sym_default] = ACTIONS(1810), + [anon_sym_enum] = ACTIONS(1810), + [anon_sym_fn] = ACTIONS(1810), + [anon_sym_for] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(1810), + [anon_sym_impl] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(1810), + [anon_sym_loop] = ACTIONS(1810), + [anon_sym_match] = ACTIONS(1810), + [anon_sym_mod] = ACTIONS(1810), + [anon_sym_pub] = ACTIONS(1810), + [anon_sym_return] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_struct] = ACTIONS(1810), + [anon_sym_trait] = ACTIONS(1810), + [anon_sym_type] = ACTIONS(1810), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_unsafe] = ACTIONS(1810), + [anon_sym_use] = ACTIONS(1810), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1808), + [anon_sym_AMP] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_move] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [aux_sym_string_literal_token1] = ACTIONS(1808), + [sym_char_literal] = ACTIONS(1808), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym_raw_string_literal] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1808), + [sym_raw_string_literal] = ACTIONS(1808), + [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_move] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), + [ts_builtin_sym_end] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_macro_rules_BANG] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_u8] = ACTIONS(1814), + [anon_sym_i8] = ACTIONS(1814), + [anon_sym_u16] = ACTIONS(1814), + [anon_sym_i16] = ACTIONS(1814), + [anon_sym_u32] = ACTIONS(1814), + [anon_sym_i32] = ACTIONS(1814), + [anon_sym_u64] = ACTIONS(1814), + [anon_sym_i64] = ACTIONS(1814), + [anon_sym_u128] = ACTIONS(1814), + [anon_sym_i128] = ACTIONS(1814), + [anon_sym_isize] = ACTIONS(1814), + [anon_sym_usize] = ACTIONS(1814), + [anon_sym_f32] = ACTIONS(1814), + [anon_sym_f64] = ACTIONS(1814), + [anon_sym_bool] = ACTIONS(1814), + [anon_sym_str] = ACTIONS(1814), + [anon_sym_char] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1814), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_fn] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_impl] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1814), + [anon_sym_loop] = ACTIONS(1814), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_mod] = ACTIONS(1814), + [anon_sym_pub] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_struct] = ACTIONS(1814), + [anon_sym_trait] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_union] = ACTIONS(1814), + [anon_sym_unsafe] = ACTIONS(1814), + [anon_sym_use] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1814), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_COLON_COLON] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1812), + [anon_sym_DOT_DOT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_move] = ACTIONS(1814), + [sym_integer_literal] = ACTIONS(1812), + [aux_sym_string_literal_token1] = ACTIONS(1812), + [sym_char_literal] = ACTIONS(1812), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym_raw_string_literal] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [sym_self] = ACTIONS(1814), + [sym_super] = ACTIONS(1814), + [sym_crate] = ACTIONS(1814), + [sym_metavariable] = ACTIONS(1812), + [sym_raw_string_literal] = ACTIONS(1812), + [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1830), + [sym__token_pattern] = STATE(233), + [sym_token_tree_pattern] = STATE(233), + [sym_token_binding_pattern] = STATE(233), + [sym_token_repetition_pattern] = STATE(233), + [sym__literal] = STATE(233), + [sym_string_literal] = STATE(233), + [sym_boolean_literal] = STATE(233), + [aux_sym_token_tree_pattern_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_impl] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1605), + [anon_sym_pub] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_trait] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_unsafe] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_where] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [sym_mutable_specifier] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1605), + [sym_crate] = ACTIONS(1605), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), + [sym_block_comment] = ACTIONS(3), + }, + [369] = { + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_macro_rules_BANG] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_u8] = ACTIONS(1818), + [anon_sym_i8] = ACTIONS(1818), + [anon_sym_u16] = ACTIONS(1818), + [anon_sym_i16] = ACTIONS(1818), + [anon_sym_u32] = ACTIONS(1818), + [anon_sym_i32] = ACTIONS(1818), + [anon_sym_u64] = ACTIONS(1818), + [anon_sym_i64] = ACTIONS(1818), + [anon_sym_u128] = ACTIONS(1818), + [anon_sym_i128] = ACTIONS(1818), + [anon_sym_isize] = ACTIONS(1818), + [anon_sym_usize] = ACTIONS(1818), + [anon_sym_f32] = ACTIONS(1818), + [anon_sym_f64] = ACTIONS(1818), + [anon_sym_bool] = ACTIONS(1818), + [anon_sym_str] = ACTIONS(1818), + [anon_sym_char] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [anon_sym_fn] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_impl] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_mod] = ACTIONS(1818), + [anon_sym_pub] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_trait] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1818), + [anon_sym_unsafe] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_move] = ACTIONS(1818), + [sym_integer_literal] = ACTIONS(1816), + [aux_sym_string_literal_token1] = ACTIONS(1816), + [sym_char_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1818), + [anon_sym_false] = ACTIONS(1818), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_crate] = ACTIONS(1818), + [sym_metavariable] = ACTIONS(1816), + [sym_raw_string_literal] = ACTIONS(1816), + [sym_float_literal] = ACTIONS(1816), + [sym_block_comment] = ACTIONS(3), + }, + [370] = { + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_macro_rules_BANG] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_u8] = ACTIONS(1822), + [anon_sym_i8] = ACTIONS(1822), + [anon_sym_u16] = ACTIONS(1822), + [anon_sym_i16] = ACTIONS(1822), + [anon_sym_u32] = ACTIONS(1822), + [anon_sym_i32] = ACTIONS(1822), + [anon_sym_u64] = ACTIONS(1822), + [anon_sym_i64] = ACTIONS(1822), + [anon_sym_u128] = ACTIONS(1822), + [anon_sym_i128] = ACTIONS(1822), + [anon_sym_isize] = ACTIONS(1822), + [anon_sym_usize] = ACTIONS(1822), + [anon_sym_f32] = ACTIONS(1822), + [anon_sym_f64] = ACTIONS(1822), + [anon_sym_bool] = ACTIONS(1822), + [anon_sym_str] = ACTIONS(1822), + [anon_sym_char] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_fn] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_impl] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_pub] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1822), + [anon_sym_trait] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_union] = ACTIONS(1822), + [anon_sym_unsafe] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_COLON_COLON] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_move] = ACTIONS(1822), + [sym_integer_literal] = ACTIONS(1820), + [aux_sym_string_literal_token1] = ACTIONS(1820), + [sym_char_literal] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_crate] = ACTIONS(1822), + [sym_metavariable] = ACTIONS(1820), + [sym_raw_string_literal] = ACTIONS(1820), + [sym_float_literal] = ACTIONS(1820), + [sym_block_comment] = ACTIONS(3), + }, + [371] = { + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_macro_rules_BANG] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u128] = ACTIONS(1826), + [anon_sym_i128] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_str] = ACTIONS(1826), + [anon_sym_char] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_fn] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_impl] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mod] = ACTIONS(1826), + [anon_sym_pub] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_trait] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_unsafe] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_move] = ACTIONS(1826), + [sym_integer_literal] = ACTIONS(1824), + [aux_sym_string_literal_token1] = ACTIONS(1824), + [sym_char_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1824), + [sym_raw_string_literal] = ACTIONS(1824), + [sym_float_literal] = ACTIONS(1824), + [sym_block_comment] = ACTIONS(3), + }, + [372] = { + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_macro_rules_BANG] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_u8] = ACTIONS(1830), + [anon_sym_i8] = ACTIONS(1830), + [anon_sym_u16] = ACTIONS(1830), + [anon_sym_i16] = ACTIONS(1830), + [anon_sym_u32] = ACTIONS(1830), + [anon_sym_i32] = ACTIONS(1830), + [anon_sym_u64] = ACTIONS(1830), + [anon_sym_i64] = ACTIONS(1830), + [anon_sym_u128] = ACTIONS(1830), + [anon_sym_i128] = ACTIONS(1830), + [anon_sym_isize] = ACTIONS(1830), + [anon_sym_usize] = ACTIONS(1830), + [anon_sym_f32] = ACTIONS(1830), + [anon_sym_f64] = ACTIONS(1830), + [anon_sym_bool] = ACTIONS(1830), + [anon_sym_str] = ACTIONS(1830), + [anon_sym_char] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [anon_sym_fn] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_impl] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mod] = ACTIONS(1830), + [anon_sym_pub] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_struct] = ACTIONS(1830), + [anon_sym_trait] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_union] = ACTIONS(1830), + [anon_sym_unsafe] = ACTIONS(1830), + [anon_sym_use] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_COLON_COLON] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_move] = ACTIONS(1830), + [sym_integer_literal] = ACTIONS(1828), + [aux_sym_string_literal_token1] = ACTIONS(1828), + [sym_char_literal] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_crate] = ACTIONS(1830), + [sym_metavariable] = ACTIONS(1828), + [sym_raw_string_literal] = ACTIONS(1828), + [sym_float_literal] = ACTIONS(1828), + [sym_block_comment] = ACTIONS(3), + }, + [373] = { + [sym__token_pattern] = STATE(355), + [sym_token_tree_pattern] = STATE(355), + [sym_token_binding_pattern] = STATE(355), + [sym_token_repetition_pattern] = STATE(355), + [sym__literal] = STATE(355), + [sym_string_literal] = STATE(355), + [sym_boolean_literal] = STATE(355), + [aux_sym_token_tree_pattern_repeat1] = STATE(355), [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_RBRACK] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1832), [anon_sym_SQUOTE] = ACTIONS(1832), + [anon_sym_as] = ACTIONS(1832), [anon_sym_async] = ACTIONS(1832), + [anon_sym_await] = ACTIONS(1832), [anon_sym_break] = ACTIONS(1832), [anon_sym_const] = ACTIONS(1832), [anon_sym_continue] = ACTIONS(1832), @@ -42249,184 +42742,100 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1832), [anon_sym_unsafe] = ACTIONS(1832), [anon_sym_use] = ACTIONS(1832), + [anon_sym_where] = ACTIONS(1832), [anon_sym_while] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_move] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(1832), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), [sym_self] = ACTIONS(1832), [sym_super] = ACTIONS(1832), [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym_raw_string_literal] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1836), + [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), + [374] = { + [sym__token_pattern] = STATE(335), + [sym_token_tree_pattern] = STATE(335), + [sym_token_binding_pattern] = STATE(335), + [sym_token_repetition_pattern] = STATE(335), + [sym__literal] = STATE(335), + [sym_string_literal] = STATE(335), + [sym_boolean_literal] = STATE(335), + [aux_sym_token_tree_pattern_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1427), [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_move] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), - [sym_block_comment] = ACTIONS(3), - }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_move] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_as] = ACTIONS(1838), + [anon_sym_async] = ACTIONS(1838), + [anon_sym_await] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_union] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_where] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [sym_mutable_specifier] = ACTIONS(1838), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1838), + [sym_super] = ACTIONS(1838), + [sym_crate] = ACTIONS(1838), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), [sym_block_comment] = ACTIONS(3), }, - [371] = { + [375] = { [ts_builtin_sym_end] = ACTIONS(1842), [sym_identifier] = ACTIONS(1844), [anon_sym_SEMI] = ACTIONS(1842), @@ -42502,83 +42911,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1842), [sym_block_comment] = ACTIONS(3), }, - [372] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_move] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym_raw_string_literal] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [376] = { + [sym__token_pattern] = STATE(326), + [sym_token_tree_pattern] = STATE(326), + [sym_token_binding_pattern] = STATE(326), + [sym_token_repetition_pattern] = STATE(326), + [sym__literal] = STATE(326), + [sym_string_literal] = STATE(326), + [sym_boolean_literal] = STATE(326), + [aux_sym_token_tree_pattern_repeat1] = STATE(326), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [aux_sym__non_special_token_token1] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_as] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_await] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_unsafe] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_where] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [sym_mutable_specifier] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(1848), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_crate] = ACTIONS(1846), + [sym_metavariable] = ACTIONS(1441), + [sym_raw_string_literal] = ACTIONS(1848), + [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, - [373] = { + [377] = { [ts_builtin_sym_end] = ACTIONS(1850), [sym_identifier] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(1850), @@ -42654,7 +43063,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1850), [sym_block_comment] = ACTIONS(3), }, - [374] = { + [378] = { [ts_builtin_sym_end] = ACTIONS(1854), [sym_identifier] = ACTIONS(1856), [anon_sym_SEMI] = ACTIONS(1854), @@ -42730,7 +43139,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1854), [sym_block_comment] = ACTIONS(3), }, - [375] = { + [379] = { [ts_builtin_sym_end] = ACTIONS(1858), [sym_identifier] = ACTIONS(1860), [anon_sym_SEMI] = ACTIONS(1858), @@ -42806,7 +43215,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1858), [sym_block_comment] = ACTIONS(3), }, - [376] = { + [380] = { [ts_builtin_sym_end] = ACTIONS(1862), [sym_identifier] = ACTIONS(1864), [anon_sym_SEMI] = ACTIONS(1862), @@ -42882,7 +43291,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1862), [sym_block_comment] = ACTIONS(3), }, - [377] = { + [381] = { [ts_builtin_sym_end] = ACTIONS(1866), [sym_identifier] = ACTIONS(1868), [anon_sym_SEMI] = ACTIONS(1866), @@ -42958,7 +43367,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1866), [sym_block_comment] = ACTIONS(3), }, - [378] = { + [382] = { [ts_builtin_sym_end] = ACTIONS(1870), [sym_identifier] = ACTIONS(1872), [anon_sym_SEMI] = ACTIONS(1870), @@ -43034,83 +43443,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1870), [sym_block_comment] = ACTIONS(3), }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(399), - [sym_identifier] = ACTIONS(401), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_macro_rules_BANG] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_u8] = ACTIONS(401), - [anon_sym_i8] = ACTIONS(401), - [anon_sym_u16] = ACTIONS(401), - [anon_sym_i16] = ACTIONS(401), - [anon_sym_u32] = ACTIONS(401), - [anon_sym_i32] = ACTIONS(401), - [anon_sym_u64] = ACTIONS(401), - [anon_sym_i64] = ACTIONS(401), - [anon_sym_u128] = ACTIONS(401), - [anon_sym_i128] = ACTIONS(401), - [anon_sym_isize] = ACTIONS(401), - [anon_sym_usize] = ACTIONS(401), - [anon_sym_f32] = ACTIONS(401), - [anon_sym_f64] = ACTIONS(401), - [anon_sym_bool] = ACTIONS(401), - [anon_sym_str] = ACTIONS(401), - [anon_sym_char] = ACTIONS(401), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_async] = ACTIONS(401), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(401), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_default] = ACTIONS(401), - [anon_sym_enum] = ACTIONS(401), - [anon_sym_fn] = ACTIONS(401), - [anon_sym_for] = ACTIONS(401), - [anon_sym_if] = ACTIONS(401), - [anon_sym_impl] = ACTIONS(401), - [anon_sym_let] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(401), - [anon_sym_match] = ACTIONS(401), - [anon_sym_mod] = ACTIONS(401), - [anon_sym_pub] = ACTIONS(401), - [anon_sym_return] = ACTIONS(401), - [anon_sym_static] = ACTIONS(401), - [anon_sym_struct] = ACTIONS(401), - [anon_sym_trait] = ACTIONS(401), - [anon_sym_type] = ACTIONS(401), - [anon_sym_union] = ACTIONS(401), - [anon_sym_unsafe] = ACTIONS(401), - [anon_sym_use] = ACTIONS(401), - [anon_sym_while] = ACTIONS(401), - [anon_sym_POUND] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_extern] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_move] = ACTIONS(401), - [sym_integer_literal] = ACTIONS(399), - [aux_sym_string_literal_token1] = ACTIONS(399), - [sym_char_literal] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(401), - [sym_super] = ACTIONS(401), - [sym_crate] = ACTIONS(401), - [sym_metavariable] = ACTIONS(399), - [sym_raw_string_literal] = ACTIONS(399), - [sym_float_literal] = ACTIONS(399), - [sym_block_comment] = ACTIONS(3), - }, - [380] = { + [383] = { [ts_builtin_sym_end] = ACTIONS(1874), [sym_identifier] = ACTIONS(1876), [anon_sym_SEMI] = ACTIONS(1874), @@ -43186,7 +43519,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1874), [sym_block_comment] = ACTIONS(3), }, - [381] = { + [384] = { [ts_builtin_sym_end] = ACTIONS(1878), [sym_identifier] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), @@ -43262,7 +43595,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1878), [sym_block_comment] = ACTIONS(3), }, - [382] = { + [385] = { [ts_builtin_sym_end] = ACTIONS(1882), [sym_identifier] = ACTIONS(1884), [anon_sym_SEMI] = ACTIONS(1882), @@ -43338,119 +43671,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1882), [sym_block_comment] = ACTIONS(3), }, - [383] = { - [sym__token_pattern] = STATE(403), - [sym_token_tree_pattern] = STATE(403), - [sym_token_binding_pattern] = STATE(403), - [sym_token_repetition_pattern] = STATE(403), - [sym__literal] = STATE(403), - [sym_string_literal] = STATE(403), - [sym_boolean_literal] = STATE(403), - [aux_sym_token_tree_pattern_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_RBRACK] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_as] = ACTIONS(1886), - [anon_sym_async] = ACTIONS(1886), - [anon_sym_await] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_fn] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_impl] = ACTIONS(1886), - [anon_sym_let] = ACTIONS(1886), - [anon_sym_loop] = ACTIONS(1886), - [anon_sym_match] = ACTIONS(1886), - [anon_sym_mod] = ACTIONS(1886), - [anon_sym_pub] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1886), - [anon_sym_trait] = ACTIONS(1886), - [anon_sym_type] = ACTIONS(1886), - [anon_sym_union] = ACTIONS(1886), - [anon_sym_unsafe] = ACTIONS(1886), - [anon_sym_use] = ACTIONS(1886), - [anon_sym_where] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [sym_mutable_specifier] = ACTIONS(1886), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_crate] = ACTIONS(1886), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [386] = { + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_macro_rules_BANG] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_u8] = ACTIONS(1888), + [anon_sym_i8] = ACTIONS(1888), + [anon_sym_u16] = ACTIONS(1888), + [anon_sym_i16] = ACTIONS(1888), + [anon_sym_u32] = ACTIONS(1888), + [anon_sym_i32] = ACTIONS(1888), + [anon_sym_u64] = ACTIONS(1888), + [anon_sym_i64] = ACTIONS(1888), + [anon_sym_u128] = ACTIONS(1888), + [anon_sym_i128] = ACTIONS(1888), + [anon_sym_isize] = ACTIONS(1888), + [anon_sym_usize] = ACTIONS(1888), + [anon_sym_f32] = ACTIONS(1888), + [anon_sym_f64] = ACTIONS(1888), + [anon_sym_bool] = ACTIONS(1888), + [anon_sym_str] = ACTIONS(1888), + [anon_sym_char] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [anon_sym_async] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_fn] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_impl] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_mod] = ACTIONS(1888), + [anon_sym_pub] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_trait] = ACTIONS(1888), + [anon_sym_type] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_unsafe] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_COLON_COLON] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1888), + [sym_integer_literal] = ACTIONS(1886), + [aux_sym_string_literal_token1] = ACTIONS(1886), + [sym_char_literal] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_crate] = ACTIONS(1888), + [sym_metavariable] = ACTIONS(1886), + [sym_raw_string_literal] = ACTIONS(1886), + [sym_float_literal] = ACTIONS(1886), [sym_block_comment] = ACTIONS(3), }, - [384] = { - [sym__token_pattern] = STATE(402), - [sym_token_tree_pattern] = STATE(402), - [sym_token_binding_pattern] = STATE(402), - [sym_token_repetition_pattern] = STATE(402), - [sym__literal] = STATE(402), - [sym_string_literal] = STATE(402), - [sym_boolean_literal] = STATE(402), - [aux_sym_token_tree_pattern_repeat1] = STATE(402), + [387] = { + [ts_builtin_sym_end] = ACTIONS(1890), [sym_identifier] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_macro_rules_BANG] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_u8] = ACTIONS(1892), + [anon_sym_i8] = ACTIONS(1892), + [anon_sym_u16] = ACTIONS(1892), + [anon_sym_i16] = ACTIONS(1892), + [anon_sym_u32] = ACTIONS(1892), + [anon_sym_i32] = ACTIONS(1892), + [anon_sym_u64] = ACTIONS(1892), + [anon_sym_i64] = ACTIONS(1892), + [anon_sym_u128] = ACTIONS(1892), + [anon_sym_i128] = ACTIONS(1892), + [anon_sym_isize] = ACTIONS(1892), + [anon_sym_usize] = ACTIONS(1892), + [anon_sym_f32] = ACTIONS(1892), + [anon_sym_f64] = ACTIONS(1892), + [anon_sym_bool] = ACTIONS(1892), + [anon_sym_str] = ACTIONS(1892), + [anon_sym_char] = ACTIONS(1892), [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(1892), [anon_sym_async] = ACTIONS(1892), - [anon_sym_await] = ACTIONS(1892), [anon_sym_break] = ACTIONS(1892), [anon_sym_const] = ACTIONS(1892), [anon_sym_continue] = ACTIONS(1892), @@ -43473,668 +43798,668 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1892), [anon_sym_unsafe] = ACTIONS(1892), [anon_sym_use] = ACTIONS(1892), - [anon_sym_where] = ACTIONS(1892), [anon_sym_while] = ACTIONS(1892), - [sym_mutable_specifier] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_COLON_COLON] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1892), + [sym_integer_literal] = ACTIONS(1890), + [aux_sym_string_literal_token1] = ACTIONS(1890), + [sym_char_literal] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1892), [sym_super] = ACTIONS(1892), [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1890), + [sym_raw_string_literal] = ACTIONS(1890), + [sym_float_literal] = ACTIONS(1890), [sym_block_comment] = ACTIONS(3), }, - [385] = { - [ts_builtin_sym_end] = ACTIONS(1896), - [sym_identifier] = ACTIONS(1898), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_macro_rules_BANG] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_u8] = ACTIONS(1898), - [anon_sym_i8] = ACTIONS(1898), - [anon_sym_u16] = ACTIONS(1898), - [anon_sym_i16] = ACTIONS(1898), - [anon_sym_u32] = ACTIONS(1898), - [anon_sym_i32] = ACTIONS(1898), - [anon_sym_u64] = ACTIONS(1898), - [anon_sym_i64] = ACTIONS(1898), - [anon_sym_u128] = ACTIONS(1898), - [anon_sym_i128] = ACTIONS(1898), - [anon_sym_isize] = ACTIONS(1898), - [anon_sym_usize] = ACTIONS(1898), - [anon_sym_f32] = ACTIONS(1898), - [anon_sym_f64] = ACTIONS(1898), - [anon_sym_bool] = ACTIONS(1898), - [anon_sym_str] = ACTIONS(1898), - [anon_sym_char] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_async] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_const] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1898), - [anon_sym_enum] = ACTIONS(1898), - [anon_sym_fn] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_impl] = ACTIONS(1898), - [anon_sym_let] = ACTIONS(1898), - [anon_sym_loop] = ACTIONS(1898), - [anon_sym_match] = ACTIONS(1898), - [anon_sym_mod] = ACTIONS(1898), - [anon_sym_pub] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1898), - [anon_sym_trait] = ACTIONS(1898), - [anon_sym_type] = ACTIONS(1898), - [anon_sym_union] = ACTIONS(1898), - [anon_sym_unsafe] = ACTIONS(1898), - [anon_sym_use] = ACTIONS(1898), - [anon_sym_while] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_COLON_COLON] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_DOT_DOT] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1898), - [sym_integer_literal] = ACTIONS(1896), - [aux_sym_string_literal_token1] = ACTIONS(1896), - [sym_char_literal] = ACTIONS(1896), - [anon_sym_true] = ACTIONS(1898), - [anon_sym_false] = ACTIONS(1898), + [388] = { + [ts_builtin_sym_end] = ACTIONS(1894), + [sym_identifier] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_macro_rules_BANG] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_u8] = ACTIONS(1896), + [anon_sym_i8] = ACTIONS(1896), + [anon_sym_u16] = ACTIONS(1896), + [anon_sym_i16] = ACTIONS(1896), + [anon_sym_u32] = ACTIONS(1896), + [anon_sym_i32] = ACTIONS(1896), + [anon_sym_u64] = ACTIONS(1896), + [anon_sym_i64] = ACTIONS(1896), + [anon_sym_u128] = ACTIONS(1896), + [anon_sym_i128] = ACTIONS(1896), + [anon_sym_isize] = ACTIONS(1896), + [anon_sym_usize] = ACTIONS(1896), + [anon_sym_f32] = ACTIONS(1896), + [anon_sym_f64] = ACTIONS(1896), + [anon_sym_bool] = ACTIONS(1896), + [anon_sym_str] = ACTIONS(1896), + [anon_sym_char] = ACTIONS(1896), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_async] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_fn] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_impl] = ACTIONS(1896), + [anon_sym_let] = ACTIONS(1896), + [anon_sym_loop] = ACTIONS(1896), + [anon_sym_match] = ACTIONS(1896), + [anon_sym_mod] = ACTIONS(1896), + [anon_sym_pub] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [anon_sym_trait] = ACTIONS(1896), + [anon_sym_type] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_unsafe] = ACTIONS(1896), + [anon_sym_use] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_COLON_COLON] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_DOT_DOT] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1896), + [sym_integer_literal] = ACTIONS(1894), + [aux_sym_string_literal_token1] = ACTIONS(1894), + [sym_char_literal] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1898), - [sym_super] = ACTIONS(1898), - [sym_crate] = ACTIONS(1898), - [sym_metavariable] = ACTIONS(1896), - [sym_raw_string_literal] = ACTIONS(1896), - [sym_float_literal] = ACTIONS(1896), + [sym_self] = ACTIONS(1896), + [sym_super] = ACTIONS(1896), + [sym_crate] = ACTIONS(1896), + [sym_metavariable] = ACTIONS(1894), + [sym_raw_string_literal] = ACTIONS(1894), + [sym_float_literal] = ACTIONS(1894), [sym_block_comment] = ACTIONS(3), }, - [386] = { - [ts_builtin_sym_end] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_macro_rules_BANG] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1900), - [anon_sym_u8] = ACTIONS(1902), - [anon_sym_i8] = ACTIONS(1902), - [anon_sym_u16] = ACTIONS(1902), - [anon_sym_i16] = ACTIONS(1902), - [anon_sym_u32] = ACTIONS(1902), - [anon_sym_i32] = ACTIONS(1902), - [anon_sym_u64] = ACTIONS(1902), - [anon_sym_i64] = ACTIONS(1902), - [anon_sym_u128] = ACTIONS(1902), - [anon_sym_i128] = ACTIONS(1902), - [anon_sym_isize] = ACTIONS(1902), - [anon_sym_usize] = ACTIONS(1902), - [anon_sym_f32] = ACTIONS(1902), - [anon_sym_f64] = ACTIONS(1902), - [anon_sym_bool] = ACTIONS(1902), - [anon_sym_str] = ACTIONS(1902), - [anon_sym_char] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_async] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_fn] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_impl] = ACTIONS(1902), - [anon_sym_let] = ACTIONS(1902), - [anon_sym_loop] = ACTIONS(1902), - [anon_sym_match] = ACTIONS(1902), - [anon_sym_mod] = ACTIONS(1902), - [anon_sym_pub] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_trait] = ACTIONS(1902), - [anon_sym_type] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_unsafe] = ACTIONS(1902), - [anon_sym_use] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1900), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1902), - [sym_integer_literal] = ACTIONS(1900), - [aux_sym_string_literal_token1] = ACTIONS(1900), - [sym_char_literal] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1902), + [389] = { + [ts_builtin_sym_end] = ACTIONS(1898), + [sym_identifier] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_macro_rules_BANG] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_u8] = ACTIONS(1900), + [anon_sym_i8] = ACTIONS(1900), + [anon_sym_u16] = ACTIONS(1900), + [anon_sym_i16] = ACTIONS(1900), + [anon_sym_u32] = ACTIONS(1900), + [anon_sym_i32] = ACTIONS(1900), + [anon_sym_u64] = ACTIONS(1900), + [anon_sym_i64] = ACTIONS(1900), + [anon_sym_u128] = ACTIONS(1900), + [anon_sym_i128] = ACTIONS(1900), + [anon_sym_isize] = ACTIONS(1900), + [anon_sym_usize] = ACTIONS(1900), + [anon_sym_f32] = ACTIONS(1900), + [anon_sym_f64] = ACTIONS(1900), + [anon_sym_bool] = ACTIONS(1900), + [anon_sym_str] = ACTIONS(1900), + [anon_sym_char] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1900), + [anon_sym_async] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_fn] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_impl] = ACTIONS(1900), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_loop] = ACTIONS(1900), + [anon_sym_match] = ACTIONS(1900), + [anon_sym_mod] = ACTIONS(1900), + [anon_sym_pub] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_trait] = ACTIONS(1900), + [anon_sym_type] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsafe] = ACTIONS(1900), + [anon_sym_use] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1900), + [sym_integer_literal] = ACTIONS(1898), + [aux_sym_string_literal_token1] = ACTIONS(1898), + [sym_char_literal] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1900), - [sym_raw_string_literal] = ACTIONS(1900), - [sym_float_literal] = ACTIONS(1900), + [sym_self] = ACTIONS(1900), + [sym_super] = ACTIONS(1900), + [sym_crate] = ACTIONS(1900), + [sym_metavariable] = ACTIONS(1898), + [sym_raw_string_literal] = ACTIONS(1898), + [sym_float_literal] = ACTIONS(1898), [sym_block_comment] = ACTIONS(3), }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_macro_rules_BANG] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_u8] = ACTIONS(1906), - [anon_sym_i8] = ACTIONS(1906), - [anon_sym_u16] = ACTIONS(1906), - [anon_sym_i16] = ACTIONS(1906), - [anon_sym_u32] = ACTIONS(1906), - [anon_sym_i32] = ACTIONS(1906), - [anon_sym_u64] = ACTIONS(1906), - [anon_sym_i64] = ACTIONS(1906), - [anon_sym_u128] = ACTIONS(1906), - [anon_sym_i128] = ACTIONS(1906), - [anon_sym_isize] = ACTIONS(1906), - [anon_sym_usize] = ACTIONS(1906), - [anon_sym_f32] = ACTIONS(1906), - [anon_sym_f64] = ACTIONS(1906), - [anon_sym_bool] = ACTIONS(1906), - [anon_sym_str] = ACTIONS(1906), - [anon_sym_char] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_async] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_fn] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_impl] = ACTIONS(1906), - [anon_sym_let] = ACTIONS(1906), - [anon_sym_loop] = ACTIONS(1906), - [anon_sym_match] = ACTIONS(1906), - [anon_sym_mod] = ACTIONS(1906), - [anon_sym_pub] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_trait] = ACTIONS(1906), - [anon_sym_type] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_unsafe] = ACTIONS(1906), - [anon_sym_use] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1904), - [anon_sym_COLON_COLON] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_DOT_DOT] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1906), - [sym_integer_literal] = ACTIONS(1904), - [aux_sym_string_literal_token1] = ACTIONS(1904), - [sym_char_literal] = ACTIONS(1904), - [anon_sym_true] = ACTIONS(1906), - [anon_sym_false] = ACTIONS(1906), + [390] = { + [ts_builtin_sym_end] = ACTIONS(1902), + [sym_identifier] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_macro_rules_BANG] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_u8] = ACTIONS(1904), + [anon_sym_i8] = ACTIONS(1904), + [anon_sym_u16] = ACTIONS(1904), + [anon_sym_i16] = ACTIONS(1904), + [anon_sym_u32] = ACTIONS(1904), + [anon_sym_i32] = ACTIONS(1904), + [anon_sym_u64] = ACTIONS(1904), + [anon_sym_i64] = ACTIONS(1904), + [anon_sym_u128] = ACTIONS(1904), + [anon_sym_i128] = ACTIONS(1904), + [anon_sym_isize] = ACTIONS(1904), + [anon_sym_usize] = ACTIONS(1904), + [anon_sym_f32] = ACTIONS(1904), + [anon_sym_f64] = ACTIONS(1904), + [anon_sym_bool] = ACTIONS(1904), + [anon_sym_str] = ACTIONS(1904), + [anon_sym_char] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1904), + [anon_sym_async] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [anon_sym_fn] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_impl] = ACTIONS(1904), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_loop] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1904), + [anon_sym_mod] = ACTIONS(1904), + [anon_sym_pub] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_trait] = ACTIONS(1904), + [anon_sym_type] = ACTIONS(1904), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_unsafe] = ACTIONS(1904), + [anon_sym_use] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_COLON_COLON] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1904), + [sym_integer_literal] = ACTIONS(1902), + [aux_sym_string_literal_token1] = ACTIONS(1902), + [sym_char_literal] = ACTIONS(1902), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_crate] = ACTIONS(1906), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(1904), - [sym_float_literal] = ACTIONS(1904), + [sym_self] = ACTIONS(1904), + [sym_super] = ACTIONS(1904), + [sym_crate] = ACTIONS(1904), + [sym_metavariable] = ACTIONS(1902), + [sym_raw_string_literal] = ACTIONS(1902), + [sym_float_literal] = ACTIONS(1902), [sym_block_comment] = ACTIONS(3), }, - [388] = { - [ts_builtin_sym_end] = ACTIONS(1908), - [sym_identifier] = ACTIONS(1910), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_macro_rules_BANG] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1908), - [anon_sym_COLON_COLON] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_DOT_DOT] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1908), - [aux_sym_string_literal_token1] = ACTIONS(1908), - [sym_char_literal] = ACTIONS(1908), - [anon_sym_true] = ACTIONS(1910), - [anon_sym_false] = ACTIONS(1910), + [391] = { + [ts_builtin_sym_end] = ACTIONS(1906), + [sym_identifier] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_macro_rules_BANG] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_u8] = ACTIONS(1908), + [anon_sym_i8] = ACTIONS(1908), + [anon_sym_u16] = ACTIONS(1908), + [anon_sym_i16] = ACTIONS(1908), + [anon_sym_u32] = ACTIONS(1908), + [anon_sym_i32] = ACTIONS(1908), + [anon_sym_u64] = ACTIONS(1908), + [anon_sym_i64] = ACTIONS(1908), + [anon_sym_u128] = ACTIONS(1908), + [anon_sym_i128] = ACTIONS(1908), + [anon_sym_isize] = ACTIONS(1908), + [anon_sym_usize] = ACTIONS(1908), + [anon_sym_f32] = ACTIONS(1908), + [anon_sym_f64] = ACTIONS(1908), + [anon_sym_bool] = ACTIONS(1908), + [anon_sym_str] = ACTIONS(1908), + [anon_sym_char] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1908), + [anon_sym_async] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_fn] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_impl] = ACTIONS(1908), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_loop] = ACTIONS(1908), + [anon_sym_match] = ACTIONS(1908), + [anon_sym_mod] = ACTIONS(1908), + [anon_sym_pub] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_trait] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_unsafe] = ACTIONS(1908), + [anon_sym_use] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_COLON_COLON] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_DOT_DOT] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1908), + [sym_integer_literal] = ACTIONS(1906), + [aux_sym_string_literal_token1] = ACTIONS(1906), + [sym_char_literal] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1908), - [sym_raw_string_literal] = ACTIONS(1908), - [sym_float_literal] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_crate] = ACTIONS(1908), + [sym_metavariable] = ACTIONS(1906), + [sym_raw_string_literal] = ACTIONS(1906), + [sym_float_literal] = ACTIONS(1906), [sym_block_comment] = ACTIONS(3), }, - [389] = { - [ts_builtin_sym_end] = ACTIONS(1912), - [sym_identifier] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_macro_rules_BANG] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_u8] = ACTIONS(1914), - [anon_sym_i8] = ACTIONS(1914), - [anon_sym_u16] = ACTIONS(1914), - [anon_sym_i16] = ACTIONS(1914), - [anon_sym_u32] = ACTIONS(1914), - [anon_sym_i32] = ACTIONS(1914), - [anon_sym_u64] = ACTIONS(1914), - [anon_sym_i64] = ACTIONS(1914), - [anon_sym_u128] = ACTIONS(1914), - [anon_sym_i128] = ACTIONS(1914), - [anon_sym_isize] = ACTIONS(1914), - [anon_sym_usize] = ACTIONS(1914), - [anon_sym_f32] = ACTIONS(1914), - [anon_sym_f64] = ACTIONS(1914), - [anon_sym_bool] = ACTIONS(1914), - [anon_sym_str] = ACTIONS(1914), - [anon_sym_char] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1914), - [anon_sym_async] = ACTIONS(1914), - [anon_sym_break] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1914), - [anon_sym_continue] = ACTIONS(1914), - [anon_sym_default] = ACTIONS(1914), - [anon_sym_enum] = ACTIONS(1914), - [anon_sym_fn] = ACTIONS(1914), - [anon_sym_for] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1914), - [anon_sym_impl] = ACTIONS(1914), - [anon_sym_let] = ACTIONS(1914), - [anon_sym_loop] = ACTIONS(1914), - [anon_sym_match] = ACTIONS(1914), - [anon_sym_mod] = ACTIONS(1914), - [anon_sym_pub] = ACTIONS(1914), - [anon_sym_return] = ACTIONS(1914), - [anon_sym_static] = ACTIONS(1914), - [anon_sym_struct] = ACTIONS(1914), - [anon_sym_trait] = ACTIONS(1914), - [anon_sym_type] = ACTIONS(1914), - [anon_sym_union] = ACTIONS(1914), - [anon_sym_unsafe] = ACTIONS(1914), - [anon_sym_use] = ACTIONS(1914), - [anon_sym_while] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_COLON_COLON] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(1912), - [aux_sym_string_literal_token1] = ACTIONS(1912), - [sym_char_literal] = ACTIONS(1912), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), + [392] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_macro_rules_BANG] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_u8] = ACTIONS(1912), + [anon_sym_i8] = ACTIONS(1912), + [anon_sym_u16] = ACTIONS(1912), + [anon_sym_i16] = ACTIONS(1912), + [anon_sym_u32] = ACTIONS(1912), + [anon_sym_i32] = ACTIONS(1912), + [anon_sym_u64] = ACTIONS(1912), + [anon_sym_i64] = ACTIONS(1912), + [anon_sym_u128] = ACTIONS(1912), + [anon_sym_i128] = ACTIONS(1912), + [anon_sym_isize] = ACTIONS(1912), + [anon_sym_usize] = ACTIONS(1912), + [anon_sym_f32] = ACTIONS(1912), + [anon_sym_f64] = ACTIONS(1912), + [anon_sym_bool] = ACTIONS(1912), + [anon_sym_str] = ACTIONS(1912), + [anon_sym_char] = ACTIONS(1912), + [anon_sym_SQUOTE] = ACTIONS(1912), + [anon_sym_async] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_fn] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_impl] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1912), + [anon_sym_loop] = ACTIONS(1912), + [anon_sym_match] = ACTIONS(1912), + [anon_sym_mod] = ACTIONS(1912), + [anon_sym_pub] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_trait] = ACTIONS(1912), + [anon_sym_type] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_unsafe] = ACTIONS(1912), + [anon_sym_use] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1910), + [anon_sym_COLON_COLON] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_DOT_DOT] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1912), + [sym_integer_literal] = ACTIONS(1910), + [aux_sym_string_literal_token1] = ACTIONS(1910), + [sym_char_literal] = ACTIONS(1910), + [anon_sym_true] = ACTIONS(1912), + [anon_sym_false] = ACTIONS(1912), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_crate] = ACTIONS(1914), - [sym_metavariable] = ACTIONS(1912), - [sym_raw_string_literal] = ACTIONS(1912), - [sym_float_literal] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_crate] = ACTIONS(1912), + [sym_metavariable] = ACTIONS(1910), + [sym_raw_string_literal] = ACTIONS(1910), + [sym_float_literal] = ACTIONS(1910), [sym_block_comment] = ACTIONS(3), }, - [390] = { - [ts_builtin_sym_end] = ACTIONS(1916), - [sym_identifier] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_macro_rules_BANG] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_u8] = ACTIONS(1918), - [anon_sym_i8] = ACTIONS(1918), - [anon_sym_u16] = ACTIONS(1918), - [anon_sym_i16] = ACTIONS(1918), - [anon_sym_u32] = ACTIONS(1918), - [anon_sym_i32] = ACTIONS(1918), - [anon_sym_u64] = ACTIONS(1918), - [anon_sym_i64] = ACTIONS(1918), - [anon_sym_u128] = ACTIONS(1918), - [anon_sym_i128] = ACTIONS(1918), - [anon_sym_isize] = ACTIONS(1918), - [anon_sym_usize] = ACTIONS(1918), - [anon_sym_f32] = ACTIONS(1918), - [anon_sym_f64] = ACTIONS(1918), - [anon_sym_bool] = ACTIONS(1918), - [anon_sym_str] = ACTIONS(1918), - [anon_sym_char] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_async] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_default] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [anon_sym_fn] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_impl] = ACTIONS(1918), - [anon_sym_let] = ACTIONS(1918), - [anon_sym_loop] = ACTIONS(1918), - [anon_sym_match] = ACTIONS(1918), - [anon_sym_mod] = ACTIONS(1918), - [anon_sym_pub] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_trait] = ACTIONS(1918), - [anon_sym_type] = ACTIONS(1918), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_unsafe] = ACTIONS(1918), - [anon_sym_use] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_COLON_COLON] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_DOT_DOT] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1918), - [sym_integer_literal] = ACTIONS(1916), - [aux_sym_string_literal_token1] = ACTIONS(1916), - [sym_char_literal] = ACTIONS(1916), - [anon_sym_true] = ACTIONS(1918), - [anon_sym_false] = ACTIONS(1918), + [393] = { + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_macro_rules_BANG] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_u8] = ACTIONS(1916), + [anon_sym_i8] = ACTIONS(1916), + [anon_sym_u16] = ACTIONS(1916), + [anon_sym_i16] = ACTIONS(1916), + [anon_sym_u32] = ACTIONS(1916), + [anon_sym_i32] = ACTIONS(1916), + [anon_sym_u64] = ACTIONS(1916), + [anon_sym_i64] = ACTIONS(1916), + [anon_sym_u128] = ACTIONS(1916), + [anon_sym_i128] = ACTIONS(1916), + [anon_sym_isize] = ACTIONS(1916), + [anon_sym_usize] = ACTIONS(1916), + [anon_sym_f32] = ACTIONS(1916), + [anon_sym_f64] = ACTIONS(1916), + [anon_sym_bool] = ACTIONS(1916), + [anon_sym_str] = ACTIONS(1916), + [anon_sym_char] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_fn] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_impl] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(1916), + [anon_sym_loop] = ACTIONS(1916), + [anon_sym_match] = ACTIONS(1916), + [anon_sym_mod] = ACTIONS(1916), + [anon_sym_pub] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_trait] = ACTIONS(1916), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_unsafe] = ACTIONS(1916), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_DOT_DOT] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1916), + [sym_integer_literal] = ACTIONS(1914), + [aux_sym_string_literal_token1] = ACTIONS(1914), + [sym_char_literal] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1918), - [sym_super] = ACTIONS(1918), - [sym_crate] = ACTIONS(1918), - [sym_metavariable] = ACTIONS(1916), - [sym_raw_string_literal] = ACTIONS(1916), - [sym_float_literal] = ACTIONS(1916), + [sym_self] = ACTIONS(1916), + [sym_super] = ACTIONS(1916), + [sym_crate] = ACTIONS(1916), + [sym_metavariable] = ACTIONS(1914), + [sym_raw_string_literal] = ACTIONS(1914), + [sym_float_literal] = ACTIONS(1914), [sym_block_comment] = ACTIONS(3), }, - [391] = { - [ts_builtin_sym_end] = ACTIONS(1920), - [sym_identifier] = ACTIONS(1922), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_macro_rules_BANG] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1922), - [anon_sym_i8] = ACTIONS(1922), - [anon_sym_u16] = ACTIONS(1922), - [anon_sym_i16] = ACTIONS(1922), - [anon_sym_u32] = ACTIONS(1922), - [anon_sym_i32] = ACTIONS(1922), - [anon_sym_u64] = ACTIONS(1922), - [anon_sym_i64] = ACTIONS(1922), - [anon_sym_u128] = ACTIONS(1922), - [anon_sym_i128] = ACTIONS(1922), - [anon_sym_isize] = ACTIONS(1922), - [anon_sym_usize] = ACTIONS(1922), - [anon_sym_f32] = ACTIONS(1922), - [anon_sym_f64] = ACTIONS(1922), - [anon_sym_bool] = ACTIONS(1922), - [anon_sym_str] = ACTIONS(1922), - [anon_sym_char] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_fn] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_impl] = ACTIONS(1922), - [anon_sym_let] = ACTIONS(1922), - [anon_sym_loop] = ACTIONS(1922), - [anon_sym_match] = ACTIONS(1922), - [anon_sym_mod] = ACTIONS(1922), - [anon_sym_pub] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_trait] = ACTIONS(1922), - [anon_sym_type] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_unsafe] = ACTIONS(1922), - [anon_sym_use] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1920), - [anon_sym_COLON_COLON] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1922), - [sym_integer_literal] = ACTIONS(1920), - [aux_sym_string_literal_token1] = ACTIONS(1920), - [sym_char_literal] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1922), - [anon_sym_false] = ACTIONS(1922), + [394] = { + [ts_builtin_sym_end] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_macro_rules_BANG] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_u8] = ACTIONS(1920), + [anon_sym_i8] = ACTIONS(1920), + [anon_sym_u16] = ACTIONS(1920), + [anon_sym_i16] = ACTIONS(1920), + [anon_sym_u32] = ACTIONS(1920), + [anon_sym_i32] = ACTIONS(1920), + [anon_sym_u64] = ACTIONS(1920), + [anon_sym_i64] = ACTIONS(1920), + [anon_sym_u128] = ACTIONS(1920), + [anon_sym_i128] = ACTIONS(1920), + [anon_sym_isize] = ACTIONS(1920), + [anon_sym_usize] = ACTIONS(1920), + [anon_sym_f32] = ACTIONS(1920), + [anon_sym_f64] = ACTIONS(1920), + [anon_sym_bool] = ACTIONS(1920), + [anon_sym_str] = ACTIONS(1920), + [anon_sym_char] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_const] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_fn] = ACTIONS(1920), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_impl] = ACTIONS(1920), + [anon_sym_let] = ACTIONS(1920), + [anon_sym_loop] = ACTIONS(1920), + [anon_sym_match] = ACTIONS(1920), + [anon_sym_mod] = ACTIONS(1920), + [anon_sym_pub] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1920), + [anon_sym_trait] = ACTIONS(1920), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1920), + [anon_sym_unsafe] = ACTIONS(1920), + [anon_sym_use] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_COLON_COLON] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_DOT_DOT] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1920), + [sym_integer_literal] = ACTIONS(1918), + [aux_sym_string_literal_token1] = ACTIONS(1918), + [sym_char_literal] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(1920), + [anon_sym_false] = ACTIONS(1920), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_crate] = ACTIONS(1922), - [sym_metavariable] = ACTIONS(1920), - [sym_raw_string_literal] = ACTIONS(1920), - [sym_float_literal] = ACTIONS(1920), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_crate] = ACTIONS(1920), + [sym_metavariable] = ACTIONS(1918), + [sym_raw_string_literal] = ACTIONS(1918), + [sym_float_literal] = ACTIONS(1918), [sym_block_comment] = ACTIONS(3), }, - [392] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_identifier] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_macro_rules_BANG] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_u8] = ACTIONS(1926), - [anon_sym_i8] = ACTIONS(1926), - [anon_sym_u16] = ACTIONS(1926), - [anon_sym_i16] = ACTIONS(1926), - [anon_sym_u32] = ACTIONS(1926), - [anon_sym_i32] = ACTIONS(1926), - [anon_sym_u64] = ACTIONS(1926), - [anon_sym_i64] = ACTIONS(1926), - [anon_sym_u128] = ACTIONS(1926), - [anon_sym_i128] = ACTIONS(1926), - [anon_sym_isize] = ACTIONS(1926), - [anon_sym_usize] = ACTIONS(1926), - [anon_sym_f32] = ACTIONS(1926), - [anon_sym_f64] = ACTIONS(1926), - [anon_sym_bool] = ACTIONS(1926), - [anon_sym_str] = ACTIONS(1926), - [anon_sym_char] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1926), - [anon_sym_async] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1926), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_continue] = ACTIONS(1926), - [anon_sym_default] = ACTIONS(1926), - [anon_sym_enum] = ACTIONS(1926), - [anon_sym_fn] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_impl] = ACTIONS(1926), - [anon_sym_let] = ACTIONS(1926), - [anon_sym_loop] = ACTIONS(1926), - [anon_sym_match] = ACTIONS(1926), - [anon_sym_mod] = ACTIONS(1926), - [anon_sym_pub] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_struct] = ACTIONS(1926), - [anon_sym_trait] = ACTIONS(1926), - [anon_sym_type] = ACTIONS(1926), - [anon_sym_union] = ACTIONS(1926), - [anon_sym_unsafe] = ACTIONS(1926), - [anon_sym_use] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(1924), - [aux_sym_string_literal_token1] = ACTIONS(1924), - [sym_char_literal] = ACTIONS(1924), - [anon_sym_true] = ACTIONS(1926), - [anon_sym_false] = ACTIONS(1926), + [395] = { + [ts_builtin_sym_end] = ACTIONS(1922), + [sym_identifier] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_macro_rules_BANG] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_u8] = ACTIONS(1924), + [anon_sym_i8] = ACTIONS(1924), + [anon_sym_u16] = ACTIONS(1924), + [anon_sym_i16] = ACTIONS(1924), + [anon_sym_u32] = ACTIONS(1924), + [anon_sym_i32] = ACTIONS(1924), + [anon_sym_u64] = ACTIONS(1924), + [anon_sym_i64] = ACTIONS(1924), + [anon_sym_u128] = ACTIONS(1924), + [anon_sym_i128] = ACTIONS(1924), + [anon_sym_isize] = ACTIONS(1924), + [anon_sym_usize] = ACTIONS(1924), + [anon_sym_f32] = ACTIONS(1924), + [anon_sym_f64] = ACTIONS(1924), + [anon_sym_bool] = ACTIONS(1924), + [anon_sym_str] = ACTIONS(1924), + [anon_sym_char] = ACTIONS(1924), + [anon_sym_SQUOTE] = ACTIONS(1924), + [anon_sym_async] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_fn] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_impl] = ACTIONS(1924), + [anon_sym_let] = ACTIONS(1924), + [anon_sym_loop] = ACTIONS(1924), + [anon_sym_match] = ACTIONS(1924), + [anon_sym_mod] = ACTIONS(1924), + [anon_sym_pub] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_trait] = ACTIONS(1924), + [anon_sym_type] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_unsafe] = ACTIONS(1924), + [anon_sym_use] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_COLON_COLON] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_move] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(1922), + [aux_sym_string_literal_token1] = ACTIONS(1922), + [sym_char_literal] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1926), - [sym_super] = ACTIONS(1926), - [sym_crate] = ACTIONS(1926), - [sym_metavariable] = ACTIONS(1924), - [sym_raw_string_literal] = ACTIONS(1924), - [sym_float_literal] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_crate] = ACTIONS(1924), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1922), + [sym_float_literal] = ACTIONS(1922), [sym_block_comment] = ACTIONS(3), }, - [393] = { - [sym__token_pattern] = STATE(399), - [sym_token_tree_pattern] = STATE(399), - [sym_token_binding_pattern] = STATE(399), - [sym_token_repetition_pattern] = STATE(399), - [sym__literal] = STATE(399), - [sym_string_literal] = STATE(399), - [sym_boolean_literal] = STATE(399), - [aux_sym_token_tree_pattern_repeat1] = STATE(399), + [396] = { + [ts_builtin_sym_end] = ACTIONS(1926), [sym_identifier] = ACTIONS(1928), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1928), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_macro_rules_BANG] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_u8] = ACTIONS(1928), + [anon_sym_i8] = ACTIONS(1928), + [anon_sym_u16] = ACTIONS(1928), + [anon_sym_i16] = ACTIONS(1928), + [anon_sym_u32] = ACTIONS(1928), + [anon_sym_i32] = ACTIONS(1928), + [anon_sym_u64] = ACTIONS(1928), + [anon_sym_i64] = ACTIONS(1928), + [anon_sym_u128] = ACTIONS(1928), + [anon_sym_i128] = ACTIONS(1928), + [anon_sym_isize] = ACTIONS(1928), + [anon_sym_usize] = ACTIONS(1928), + [anon_sym_f32] = ACTIONS(1928), + [anon_sym_f64] = ACTIONS(1928), + [anon_sym_bool] = ACTIONS(1928), + [anon_sym_str] = ACTIONS(1928), + [anon_sym_char] = ACTIONS(1928), [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_as] = ACTIONS(1928), [anon_sym_async] = ACTIONS(1928), - [anon_sym_await] = ACTIONS(1928), [anon_sym_break] = ACTIONS(1928), [anon_sym_const] = ACTIONS(1928), [anon_sym_continue] = ACTIONS(1928), @@ -44157,480 +44482,488 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1928), [anon_sym_unsafe] = ACTIONS(1928), [anon_sym_use] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1928), [anon_sym_while] = ACTIONS(1928), - [sym_mutable_specifier] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_extern] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_DOT_DOT] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_move] = ACTIONS(1928), + [sym_integer_literal] = ACTIONS(1926), + [aux_sym_string_literal_token1] = ACTIONS(1926), + [sym_char_literal] = ACTIONS(1926), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1928), [sym_super] = ACTIONS(1928), [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [sym_metavariable] = ACTIONS(1926), + [sym_raw_string_literal] = ACTIONS(1926), + [sym_float_literal] = ACTIONS(1926), [sym_block_comment] = ACTIONS(3), }, - [394] = { - [ts_builtin_sym_end] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_macro_rules_BANG] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_RBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1932), - [anon_sym_u8] = ACTIONS(1934), - [anon_sym_i8] = ACTIONS(1934), - [anon_sym_u16] = ACTIONS(1934), - [anon_sym_i16] = ACTIONS(1934), - [anon_sym_u32] = ACTIONS(1934), - [anon_sym_i32] = ACTIONS(1934), - [anon_sym_u64] = ACTIONS(1934), - [anon_sym_i64] = ACTIONS(1934), - [anon_sym_u128] = ACTIONS(1934), - [anon_sym_i128] = ACTIONS(1934), - [anon_sym_isize] = ACTIONS(1934), - [anon_sym_usize] = ACTIONS(1934), - [anon_sym_f32] = ACTIONS(1934), - [anon_sym_f64] = ACTIONS(1934), - [anon_sym_bool] = ACTIONS(1934), - [anon_sym_str] = ACTIONS(1934), - [anon_sym_char] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_async] = ACTIONS(1934), - [anon_sym_break] = ACTIONS(1934), - [anon_sym_const] = ACTIONS(1934), - [anon_sym_continue] = ACTIONS(1934), - [anon_sym_default] = ACTIONS(1934), - [anon_sym_enum] = ACTIONS(1934), - [anon_sym_fn] = ACTIONS(1934), - [anon_sym_for] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1934), - [anon_sym_impl] = ACTIONS(1934), - [anon_sym_let] = ACTIONS(1934), - [anon_sym_loop] = ACTIONS(1934), - [anon_sym_match] = ACTIONS(1934), - [anon_sym_mod] = ACTIONS(1934), - [anon_sym_pub] = ACTIONS(1934), - [anon_sym_return] = ACTIONS(1934), - [anon_sym_static] = ACTIONS(1934), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_trait] = ACTIONS(1934), - [anon_sym_type] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1934), - [anon_sym_unsafe] = ACTIONS(1934), - [anon_sym_use] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_COLON_COLON] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_DOT_DOT] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1934), - [sym_integer_literal] = ACTIONS(1932), - [aux_sym_string_literal_token1] = ACTIONS(1932), - [sym_char_literal] = ACTIONS(1932), - [anon_sym_true] = ACTIONS(1934), - [anon_sym_false] = ACTIONS(1934), + [397] = { + [ts_builtin_sym_end] = ACTIONS(1930), + [sym_identifier] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_macro_rules_BANG] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_u8] = ACTIONS(1932), + [anon_sym_i8] = ACTIONS(1932), + [anon_sym_u16] = ACTIONS(1932), + [anon_sym_i16] = ACTIONS(1932), + [anon_sym_u32] = ACTIONS(1932), + [anon_sym_i32] = ACTIONS(1932), + [anon_sym_u64] = ACTIONS(1932), + [anon_sym_i64] = ACTIONS(1932), + [anon_sym_u128] = ACTIONS(1932), + [anon_sym_i128] = ACTIONS(1932), + [anon_sym_isize] = ACTIONS(1932), + [anon_sym_usize] = ACTIONS(1932), + [anon_sym_f32] = ACTIONS(1932), + [anon_sym_f64] = ACTIONS(1932), + [anon_sym_bool] = ACTIONS(1932), + [anon_sym_str] = ACTIONS(1932), + [anon_sym_char] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_fn] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_impl] = ACTIONS(1932), + [anon_sym_let] = ACTIONS(1932), + [anon_sym_loop] = ACTIONS(1932), + [anon_sym_match] = ACTIONS(1932), + [anon_sym_mod] = ACTIONS(1932), + [anon_sym_pub] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_trait] = ACTIONS(1932), + [anon_sym_type] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_unsafe] = ACTIONS(1932), + [anon_sym_use] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_COLON_COLON] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_DOT_DOT] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_move] = ACTIONS(1932), + [sym_integer_literal] = ACTIONS(1930), + [aux_sym_string_literal_token1] = ACTIONS(1930), + [sym_char_literal] = ACTIONS(1930), + [anon_sym_true] = ACTIONS(1932), + [anon_sym_false] = ACTIONS(1932), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1934), - [sym_super] = ACTIONS(1934), - [sym_crate] = ACTIONS(1934), - [sym_metavariable] = ACTIONS(1932), - [sym_raw_string_literal] = ACTIONS(1932), - [sym_float_literal] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_crate] = ACTIONS(1932), + [sym_metavariable] = ACTIONS(1930), + [sym_raw_string_literal] = ACTIONS(1930), + [sym_float_literal] = ACTIONS(1930), [sym_block_comment] = ACTIONS(3), }, - [395] = { - [ts_builtin_sym_end] = ACTIONS(1936), - [sym_identifier] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_macro_rules_BANG] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_RBRACE] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_u8] = ACTIONS(1938), - [anon_sym_i8] = ACTIONS(1938), - [anon_sym_u16] = ACTIONS(1938), - [anon_sym_i16] = ACTIONS(1938), - [anon_sym_u32] = ACTIONS(1938), - [anon_sym_i32] = ACTIONS(1938), - [anon_sym_u64] = ACTIONS(1938), - [anon_sym_i64] = ACTIONS(1938), - [anon_sym_u128] = ACTIONS(1938), - [anon_sym_i128] = ACTIONS(1938), - [anon_sym_isize] = ACTIONS(1938), - [anon_sym_usize] = ACTIONS(1938), - [anon_sym_f32] = ACTIONS(1938), - [anon_sym_f64] = ACTIONS(1938), - [anon_sym_bool] = ACTIONS(1938), - [anon_sym_str] = ACTIONS(1938), - [anon_sym_char] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_async] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_fn] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_impl] = ACTIONS(1938), - [anon_sym_let] = ACTIONS(1938), - [anon_sym_loop] = ACTIONS(1938), - [anon_sym_match] = ACTIONS(1938), - [anon_sym_mod] = ACTIONS(1938), - [anon_sym_pub] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_trait] = ACTIONS(1938), - [anon_sym_type] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_unsafe] = ACTIONS(1938), - [anon_sym_use] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_DOT_DOT] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(1936), - [aux_sym_string_literal_token1] = ACTIONS(1936), - [sym_char_literal] = ACTIONS(1936), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), + [398] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_macro_rules_BANG] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_u8] = ACTIONS(1936), + [anon_sym_i8] = ACTIONS(1936), + [anon_sym_u16] = ACTIONS(1936), + [anon_sym_i16] = ACTIONS(1936), + [anon_sym_u32] = ACTIONS(1936), + [anon_sym_i32] = ACTIONS(1936), + [anon_sym_u64] = ACTIONS(1936), + [anon_sym_i64] = ACTIONS(1936), + [anon_sym_u128] = ACTIONS(1936), + [anon_sym_i128] = ACTIONS(1936), + [anon_sym_isize] = ACTIONS(1936), + [anon_sym_usize] = ACTIONS(1936), + [anon_sym_f32] = ACTIONS(1936), + [anon_sym_f64] = ACTIONS(1936), + [anon_sym_bool] = ACTIONS(1936), + [anon_sym_str] = ACTIONS(1936), + [anon_sym_char] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_fn] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_impl] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_loop] = ACTIONS(1936), + [anon_sym_match] = ACTIONS(1936), + [anon_sym_mod] = ACTIONS(1936), + [anon_sym_pub] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_trait] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_unsafe] = ACTIONS(1936), + [anon_sym_use] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1934), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_DOT_DOT] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_PIPE] = ACTIONS(1934), + [anon_sym_move] = ACTIONS(1936), + [sym_integer_literal] = ACTIONS(1934), + [aux_sym_string_literal_token1] = ACTIONS(1934), + [sym_char_literal] = ACTIONS(1934), + [anon_sym_true] = ACTIONS(1936), + [anon_sym_false] = ACTIONS(1936), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1938), - [sym_super] = ACTIONS(1938), - [sym_crate] = ACTIONS(1938), - [sym_metavariable] = ACTIONS(1936), - [sym_raw_string_literal] = ACTIONS(1936), - [sym_float_literal] = ACTIONS(1936), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_crate] = ACTIONS(1936), + [sym_metavariable] = ACTIONS(1934), + [sym_raw_string_literal] = ACTIONS(1934), + [sym_float_literal] = ACTIONS(1934), [sym_block_comment] = ACTIONS(3), }, - [396] = { - [ts_builtin_sym_end] = ACTIONS(1940), - [sym_identifier] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_macro_rules_BANG] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_u8] = ACTIONS(1942), - [anon_sym_i8] = ACTIONS(1942), - [anon_sym_u16] = ACTIONS(1942), - [anon_sym_i16] = ACTIONS(1942), - [anon_sym_u32] = ACTIONS(1942), - [anon_sym_i32] = ACTIONS(1942), - [anon_sym_u64] = ACTIONS(1942), - [anon_sym_i64] = ACTIONS(1942), - [anon_sym_u128] = ACTIONS(1942), - [anon_sym_i128] = ACTIONS(1942), - [anon_sym_isize] = ACTIONS(1942), - [anon_sym_usize] = ACTIONS(1942), - [anon_sym_f32] = ACTIONS(1942), - [anon_sym_f64] = ACTIONS(1942), - [anon_sym_bool] = ACTIONS(1942), - [anon_sym_str] = ACTIONS(1942), - [anon_sym_char] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_fn] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_impl] = ACTIONS(1942), - [anon_sym_let] = ACTIONS(1942), - [anon_sym_loop] = ACTIONS(1942), - [anon_sym_match] = ACTIONS(1942), - [anon_sym_mod] = ACTIONS(1942), - [anon_sym_pub] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_trait] = ACTIONS(1942), - [anon_sym_type] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_unsafe] = ACTIONS(1942), - [anon_sym_use] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1942), - [sym_integer_literal] = ACTIONS(1940), - [aux_sym_string_literal_token1] = ACTIONS(1940), - [sym_char_literal] = ACTIONS(1940), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1942), + [399] = { + [ts_builtin_sym_end] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_macro_rules_BANG] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_u8] = ACTIONS(1940), + [anon_sym_i8] = ACTIONS(1940), + [anon_sym_u16] = ACTIONS(1940), + [anon_sym_i16] = ACTIONS(1940), + [anon_sym_u32] = ACTIONS(1940), + [anon_sym_i32] = ACTIONS(1940), + [anon_sym_u64] = ACTIONS(1940), + [anon_sym_i64] = ACTIONS(1940), + [anon_sym_u128] = ACTIONS(1940), + [anon_sym_i128] = ACTIONS(1940), + [anon_sym_isize] = ACTIONS(1940), + [anon_sym_usize] = ACTIONS(1940), + [anon_sym_f32] = ACTIONS(1940), + [anon_sym_f64] = ACTIONS(1940), + [anon_sym_bool] = ACTIONS(1940), + [anon_sym_str] = ACTIONS(1940), + [anon_sym_char] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_fn] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_impl] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_loop] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1940), + [anon_sym_mod] = ACTIONS(1940), + [anon_sym_pub] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_trait] = ACTIONS(1940), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_unsafe] = ACTIONS(1940), + [anon_sym_use] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_move] = ACTIONS(1940), + [sym_integer_literal] = ACTIONS(1938), + [aux_sym_string_literal_token1] = ACTIONS(1938), + [sym_char_literal] = ACTIONS(1938), + [anon_sym_true] = ACTIONS(1940), + [anon_sym_false] = ACTIONS(1940), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1942), - [sym_super] = ACTIONS(1942), - [sym_crate] = ACTIONS(1942), - [sym_metavariable] = ACTIONS(1940), - [sym_raw_string_literal] = ACTIONS(1940), - [sym_float_literal] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_crate] = ACTIONS(1940), + [sym_metavariable] = ACTIONS(1938), + [sym_raw_string_literal] = ACTIONS(1938), + [sym_float_literal] = ACTIONS(1938), [sym_block_comment] = ACTIONS(3), }, - [397] = { - [ts_builtin_sym_end] = ACTIONS(1944), - [sym_identifier] = ACTIONS(1946), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_macro_rules_BANG] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_u8] = ACTIONS(1946), - [anon_sym_i8] = ACTIONS(1946), - [anon_sym_u16] = ACTIONS(1946), - [anon_sym_i16] = ACTIONS(1946), - [anon_sym_u32] = ACTIONS(1946), - [anon_sym_i32] = ACTIONS(1946), - [anon_sym_u64] = ACTIONS(1946), - [anon_sym_i64] = ACTIONS(1946), - [anon_sym_u128] = ACTIONS(1946), - [anon_sym_i128] = ACTIONS(1946), - [anon_sym_isize] = ACTIONS(1946), - [anon_sym_usize] = ACTIONS(1946), - [anon_sym_f32] = ACTIONS(1946), - [anon_sym_f64] = ACTIONS(1946), - [anon_sym_bool] = ACTIONS(1946), - [anon_sym_str] = ACTIONS(1946), - [anon_sym_char] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1946), - [anon_sym_async] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_fn] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_impl] = ACTIONS(1946), - [anon_sym_let] = ACTIONS(1946), - [anon_sym_loop] = ACTIONS(1946), - [anon_sym_match] = ACTIONS(1946), - [anon_sym_mod] = ACTIONS(1946), - [anon_sym_pub] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_trait] = ACTIONS(1946), - [anon_sym_type] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_unsafe] = ACTIONS(1946), - [anon_sym_use] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_COLON_COLON] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1946), - [sym_integer_literal] = ACTIONS(1944), - [aux_sym_string_literal_token1] = ACTIONS(1944), - [sym_char_literal] = ACTIONS(1944), - [anon_sym_true] = ACTIONS(1946), - [anon_sym_false] = ACTIONS(1946), + [400] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_macro_rules_BANG] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_u8] = ACTIONS(1944), + [anon_sym_i8] = ACTIONS(1944), + [anon_sym_u16] = ACTIONS(1944), + [anon_sym_i16] = ACTIONS(1944), + [anon_sym_u32] = ACTIONS(1944), + [anon_sym_i32] = ACTIONS(1944), + [anon_sym_u64] = ACTIONS(1944), + [anon_sym_i64] = ACTIONS(1944), + [anon_sym_u128] = ACTIONS(1944), + [anon_sym_i128] = ACTIONS(1944), + [anon_sym_isize] = ACTIONS(1944), + [anon_sym_usize] = ACTIONS(1944), + [anon_sym_f32] = ACTIONS(1944), + [anon_sym_f64] = ACTIONS(1944), + [anon_sym_bool] = ACTIONS(1944), + [anon_sym_str] = ACTIONS(1944), + [anon_sym_char] = ACTIONS(1944), + [anon_sym_SQUOTE] = ACTIONS(1944), + [anon_sym_async] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_fn] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_impl] = ACTIONS(1944), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_loop] = ACTIONS(1944), + [anon_sym_match] = ACTIONS(1944), + [anon_sym_mod] = ACTIONS(1944), + [anon_sym_pub] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_trait] = ACTIONS(1944), + [anon_sym_type] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_unsafe] = ACTIONS(1944), + [anon_sym_use] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_move] = ACTIONS(1944), + [sym_integer_literal] = ACTIONS(1942), + [aux_sym_string_literal_token1] = ACTIONS(1942), + [sym_char_literal] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_crate] = ACTIONS(1946), - [sym_metavariable] = ACTIONS(1944), - [sym_raw_string_literal] = ACTIONS(1944), - [sym_float_literal] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_crate] = ACTIONS(1944), + [sym_metavariable] = ACTIONS(1942), + [sym_raw_string_literal] = ACTIONS(1942), + [sym_float_literal] = ACTIONS(1942), [sym_block_comment] = ACTIONS(3), }, - [398] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1950), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_macro_rules_BANG] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_u8] = ACTIONS(1950), - [anon_sym_i8] = ACTIONS(1950), - [anon_sym_u16] = ACTIONS(1950), - [anon_sym_i16] = ACTIONS(1950), - [anon_sym_u32] = ACTIONS(1950), - [anon_sym_i32] = ACTIONS(1950), - [anon_sym_u64] = ACTIONS(1950), - [anon_sym_i64] = ACTIONS(1950), - [anon_sym_u128] = ACTIONS(1950), - [anon_sym_i128] = ACTIONS(1950), - [anon_sym_isize] = ACTIONS(1950), - [anon_sym_usize] = ACTIONS(1950), - [anon_sym_f32] = ACTIONS(1950), - [anon_sym_f64] = ACTIONS(1950), - [anon_sym_bool] = ACTIONS(1950), - [anon_sym_str] = ACTIONS(1950), - [anon_sym_char] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_async] = ACTIONS(1950), - [anon_sym_break] = ACTIONS(1950), - [anon_sym_const] = ACTIONS(1950), - [anon_sym_continue] = ACTIONS(1950), - [anon_sym_default] = ACTIONS(1950), - [anon_sym_enum] = ACTIONS(1950), - [anon_sym_fn] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1950), - [anon_sym_impl] = ACTIONS(1950), - [anon_sym_let] = ACTIONS(1950), - [anon_sym_loop] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(1950), - [anon_sym_mod] = ACTIONS(1950), - [anon_sym_pub] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1950), - [anon_sym_static] = ACTIONS(1950), - [anon_sym_struct] = ACTIONS(1950), - [anon_sym_trait] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(1950), - [anon_sym_union] = ACTIONS(1950), - [anon_sym_unsafe] = ACTIONS(1950), - [anon_sym_use] = ACTIONS(1950), - [anon_sym_while] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1948), - [anon_sym_COLON_COLON] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1950), - [sym_integer_literal] = ACTIONS(1948), - [aux_sym_string_literal_token1] = ACTIONS(1948), - [sym_char_literal] = ACTIONS(1948), - [anon_sym_true] = ACTIONS(1950), - [anon_sym_false] = ACTIONS(1950), + [401] = { + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_macro_rules_BANG] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_u8] = ACTIONS(1948), + [anon_sym_i8] = ACTIONS(1948), + [anon_sym_u16] = ACTIONS(1948), + [anon_sym_i16] = ACTIONS(1948), + [anon_sym_u32] = ACTIONS(1948), + [anon_sym_i32] = ACTIONS(1948), + [anon_sym_u64] = ACTIONS(1948), + [anon_sym_i64] = ACTIONS(1948), + [anon_sym_u128] = ACTIONS(1948), + [anon_sym_i128] = ACTIONS(1948), + [anon_sym_isize] = ACTIONS(1948), + [anon_sym_usize] = ACTIONS(1948), + [anon_sym_f32] = ACTIONS(1948), + [anon_sym_f64] = ACTIONS(1948), + [anon_sym_bool] = ACTIONS(1948), + [anon_sym_str] = ACTIONS(1948), + [anon_sym_char] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_async] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_fn] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_impl] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_loop] = ACTIONS(1948), + [anon_sym_match] = ACTIONS(1948), + [anon_sym_mod] = ACTIONS(1948), + [anon_sym_pub] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_trait] = ACTIONS(1948), + [anon_sym_type] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_unsafe] = ACTIONS(1948), + [anon_sym_use] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1946), + [anon_sym_COLON_COLON] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_DOT_DOT] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_move] = ACTIONS(1948), + [sym_integer_literal] = ACTIONS(1946), + [aux_sym_string_literal_token1] = ACTIONS(1946), + [sym_char_literal] = ACTIONS(1946), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1950), - [sym_super] = ACTIONS(1950), - [sym_crate] = ACTIONS(1950), - [sym_metavariable] = ACTIONS(1948), - [sym_raw_string_literal] = ACTIONS(1948), - [sym_float_literal] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1946), + [sym_raw_string_literal] = ACTIONS(1946), + [sym_float_literal] = ACTIONS(1946), [sym_block_comment] = ACTIONS(3), }, - [399] = { - [sym__token_pattern] = STATE(211), - [sym_token_tree_pattern] = STATE(211), - [sym_token_binding_pattern] = STATE(211), - [sym_token_repetition_pattern] = STATE(211), - [sym__literal] = STATE(211), - [sym_string_literal] = STATE(211), - [sym_boolean_literal] = STATE(211), - [aux_sym_token_tree_pattern_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_await] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_default] = ACTIONS(1617), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_impl] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_mod] = ACTIONS(1617), - [anon_sym_pub] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_trait] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_union] = ACTIONS(1617), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_where] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [sym_mutable_specifier] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1621), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1617), - [sym_super] = ACTIONS(1617), - [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1621), - [sym_float_literal] = ACTIONS(1621), + [402] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_macro_rules_BANG] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_u8] = ACTIONS(1952), + [anon_sym_i8] = ACTIONS(1952), + [anon_sym_u16] = ACTIONS(1952), + [anon_sym_i16] = ACTIONS(1952), + [anon_sym_u32] = ACTIONS(1952), + [anon_sym_i32] = ACTIONS(1952), + [anon_sym_u64] = ACTIONS(1952), + [anon_sym_i64] = ACTIONS(1952), + [anon_sym_u128] = ACTIONS(1952), + [anon_sym_i128] = ACTIONS(1952), + [anon_sym_isize] = ACTIONS(1952), + [anon_sym_usize] = ACTIONS(1952), + [anon_sym_f32] = ACTIONS(1952), + [anon_sym_f64] = ACTIONS(1952), + [anon_sym_bool] = ACTIONS(1952), + [anon_sym_str] = ACTIONS(1952), + [anon_sym_char] = ACTIONS(1952), + [anon_sym_SQUOTE] = ACTIONS(1952), + [anon_sym_async] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_fn] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_impl] = ACTIONS(1952), + [anon_sym_let] = ACTIONS(1952), + [anon_sym_loop] = ACTIONS(1952), + [anon_sym_match] = ACTIONS(1952), + [anon_sym_mod] = ACTIONS(1952), + [anon_sym_pub] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_trait] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_unsafe] = ACTIONS(1952), + [anon_sym_use] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_move] = ACTIONS(1952), + [sym_integer_literal] = ACTIONS(1950), + [aux_sym_string_literal_token1] = ACTIONS(1950), + [sym_char_literal] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1952), + [anon_sym_false] = ACTIONS(1952), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_crate] = ACTIONS(1952), + [sym_metavariable] = ACTIONS(1950), + [sym_raw_string_literal] = ACTIONS(1950), + [sym_float_literal] = ACTIONS(1950), [sym_block_comment] = ACTIONS(3), }, - [400] = { + [403] = { [ts_builtin_sym_end] = ACTIONS(1954), [sym_identifier] = ACTIONS(1956), [anon_sym_SEMI] = ACTIONS(1954), @@ -44706,7 +45039,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1954), [sym_block_comment] = ACTIONS(3), }, - [401] = { + [404] = { [ts_builtin_sym_end] = ACTIONS(1958), [sym_identifier] = ACTIONS(1960), [anon_sym_SEMI] = ACTIONS(1958), @@ -44782,159 +45115,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1958), [sym_block_comment] = ACTIONS(3), }, - [402] = { - [sym__token_pattern] = STATE(211), - [sym_token_tree_pattern] = STATE(211), - [sym_token_binding_pattern] = STATE(211), - [sym_token_repetition_pattern] = STATE(211), - [sym__literal] = STATE(211), - [sym_string_literal] = STATE(211), - [sym_boolean_literal] = STATE(211), - [aux_sym_token_tree_pattern_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_await] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_default] = ACTIONS(1617), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_impl] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_mod] = ACTIONS(1617), - [anon_sym_pub] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_trait] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_union] = ACTIONS(1617), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_where] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [sym_mutable_specifier] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1621), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1617), - [sym_super] = ACTIONS(1617), - [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1621), - [sym_float_literal] = ACTIONS(1621), - [sym_block_comment] = ACTIONS(3), - }, - [403] = { - [sym__token_pattern] = STATE(211), - [sym_token_tree_pattern] = STATE(211), - [sym_token_binding_pattern] = STATE(211), - [sym_token_repetition_pattern] = STATE(211), - [sym__literal] = STATE(211), - [sym_string_literal] = STATE(211), - [sym_boolean_literal] = STATE(211), - [aux_sym_token_tree_pattern_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_RBRACK] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_await] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_default] = ACTIONS(1617), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_impl] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_mod] = ACTIONS(1617), - [anon_sym_pub] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_trait] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_union] = ACTIONS(1617), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_where] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [sym_mutable_specifier] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1621), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1617), - [sym_super] = ACTIONS(1617), - [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1621), - [sym_float_literal] = ACTIONS(1621), - [sym_block_comment] = ACTIONS(3), - }, - [404] = { + [405] = { [ts_builtin_sym_end] = ACTIONS(1962), [sym_identifier] = ACTIONS(1964), [anon_sym_SEMI] = ACTIONS(1962), @@ -45010,7 +45191,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1962), [sym_block_comment] = ACTIONS(3), }, - [405] = { + [406] = { [ts_builtin_sym_end] = ACTIONS(1966), [sym_identifier] = ACTIONS(1968), [anon_sym_SEMI] = ACTIONS(1966), @@ -45086,7 +45267,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1966), [sym_block_comment] = ACTIONS(3), }, - [406] = { + [407] = { [ts_builtin_sym_end] = ACTIONS(1970), [sym_identifier] = ACTIONS(1972), [anon_sym_SEMI] = ACTIONS(1970), @@ -45162,7 +45343,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1970), [sym_block_comment] = ACTIONS(3), }, - [407] = { + [408] = { [ts_builtin_sym_end] = ACTIONS(1974), [sym_identifier] = ACTIONS(1976), [anon_sym_SEMI] = ACTIONS(1974), @@ -45238,7 +45419,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1974), [sym_block_comment] = ACTIONS(3), }, - [408] = { + [409] = { [ts_builtin_sym_end] = ACTIONS(1978), [sym_identifier] = ACTIONS(1980), [anon_sym_SEMI] = ACTIONS(1978), @@ -45314,7 +45495,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1978), [sym_block_comment] = ACTIONS(3), }, - [409] = { + [410] = { [ts_builtin_sym_end] = ACTIONS(1982), [sym_identifier] = ACTIONS(1984), [anon_sym_SEMI] = ACTIONS(1982), @@ -45390,7 +45571,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1982), [sym_block_comment] = ACTIONS(3), }, - [410] = { + [411] = { [ts_builtin_sym_end] = ACTIONS(1986), [sym_identifier] = ACTIONS(1988), [anon_sym_SEMI] = ACTIONS(1986), @@ -45466,7 +45647,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1986), [sym_block_comment] = ACTIONS(3), }, - [411] = { + [412] = { [ts_builtin_sym_end] = ACTIONS(1990), [sym_identifier] = ACTIONS(1992), [anon_sym_SEMI] = ACTIONS(1990), @@ -45542,7 +45723,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1990), [sym_block_comment] = ACTIONS(3), }, - [412] = { + [413] = { [ts_builtin_sym_end] = ACTIONS(1994), [sym_identifier] = ACTIONS(1996), [anon_sym_SEMI] = ACTIONS(1994), @@ -45618,7 +45799,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1994), [sym_block_comment] = ACTIONS(3), }, - [413] = { + [414] = { [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_SEMI] = ACTIONS(1998), @@ -45694,7 +45875,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1998), [sym_block_comment] = ACTIONS(3), }, - [414] = { + [415] = { [ts_builtin_sym_end] = ACTIONS(2002), [sym_identifier] = ACTIONS(2004), [anon_sym_SEMI] = ACTIONS(2002), @@ -45770,7 +45951,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2002), [sym_block_comment] = ACTIONS(3), }, - [415] = { + [416] = { [ts_builtin_sym_end] = ACTIONS(2006), [sym_identifier] = ACTIONS(2008), [anon_sym_SEMI] = ACTIONS(2006), @@ -45846,7 +46027,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2006), [sym_block_comment] = ACTIONS(3), }, - [416] = { + [417] = { [ts_builtin_sym_end] = ACTIONS(2010), [sym_identifier] = ACTIONS(2012), [anon_sym_SEMI] = ACTIONS(2010), @@ -45922,7 +46103,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2010), [sym_block_comment] = ACTIONS(3), }, - [417] = { + [418] = { [ts_builtin_sym_end] = ACTIONS(2014), [sym_identifier] = ACTIONS(2016), [anon_sym_SEMI] = ACTIONS(2014), @@ -45998,7 +46179,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [418] = { + [419] = { [ts_builtin_sym_end] = ACTIONS(2018), [sym_identifier] = ACTIONS(2020), [anon_sym_SEMI] = ACTIONS(2018), @@ -46074,7 +46255,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2018), [sym_block_comment] = ACTIONS(3), }, - [419] = { + [420] = { [ts_builtin_sym_end] = ACTIONS(2022), [sym_identifier] = ACTIONS(2024), [anon_sym_SEMI] = ACTIONS(2022), @@ -46150,7 +46331,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2022), [sym_block_comment] = ACTIONS(3), }, - [420] = { + [421] = { [ts_builtin_sym_end] = ACTIONS(2026), [sym_identifier] = ACTIONS(2028), [anon_sym_SEMI] = ACTIONS(2026), @@ -46226,7 +46407,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2026), [sym_block_comment] = ACTIONS(3), }, - [421] = { + [422] = { [ts_builtin_sym_end] = ACTIONS(2030), [sym_identifier] = ACTIONS(2032), [anon_sym_SEMI] = ACTIONS(2030), @@ -46302,7 +46483,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [422] = { + [423] = { [ts_builtin_sym_end] = ACTIONS(2034), [sym_identifier] = ACTIONS(2036), [anon_sym_SEMI] = ACTIONS(2034), @@ -46378,7 +46559,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2034), [sym_block_comment] = ACTIONS(3), }, - [423] = { + [424] = { [ts_builtin_sym_end] = ACTIONS(2038), [sym_identifier] = ACTIONS(2040), [anon_sym_SEMI] = ACTIONS(2038), @@ -46454,7 +46635,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2038), [sym_block_comment] = ACTIONS(3), }, - [424] = { + [425] = { [ts_builtin_sym_end] = ACTIONS(2042), [sym_identifier] = ACTIONS(2044), [anon_sym_SEMI] = ACTIONS(2042), @@ -46530,7 +46711,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2042), [sym_block_comment] = ACTIONS(3), }, - [425] = { + [426] = { [ts_builtin_sym_end] = ACTIONS(2046), [sym_identifier] = ACTIONS(2048), [anon_sym_SEMI] = ACTIONS(2046), @@ -46606,7 +46787,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2046), [sym_block_comment] = ACTIONS(3), }, - [426] = { + [427] = { [ts_builtin_sym_end] = ACTIONS(2050), [sym_identifier] = ACTIONS(2052), [anon_sym_SEMI] = ACTIONS(2050), @@ -46682,7 +46863,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2050), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [428] = { [ts_builtin_sym_end] = ACTIONS(2054), [sym_identifier] = ACTIONS(2056), [anon_sym_SEMI] = ACTIONS(2054), @@ -46758,7 +46939,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2054), [sym_block_comment] = ACTIONS(3), }, - [428] = { + [429] = { [ts_builtin_sym_end] = ACTIONS(2058), [sym_identifier] = ACTIONS(2060), [anon_sym_SEMI] = ACTIONS(2058), @@ -46834,7 +47015,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2058), [sym_block_comment] = ACTIONS(3), }, - [429] = { + [430] = { [ts_builtin_sym_end] = ACTIONS(2062), [sym_identifier] = ACTIONS(2064), [anon_sym_SEMI] = ACTIONS(2062), @@ -46910,7 +47091,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2062), [sym_block_comment] = ACTIONS(3), }, - [430] = { + [431] = { [ts_builtin_sym_end] = ACTIONS(2066), [sym_identifier] = ACTIONS(2068), [anon_sym_SEMI] = ACTIONS(2066), @@ -46986,7 +47167,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2066), [sym_block_comment] = ACTIONS(3), }, - [431] = { + [432] = { [ts_builtin_sym_end] = ACTIONS(2070), [sym_identifier] = ACTIONS(2072), [anon_sym_SEMI] = ACTIONS(2070), @@ -47062,1707 +47243,1327 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2070), [sym_block_comment] = ACTIONS(3), }, - [432] = { - [sym__token_pattern] = STATE(211), - [sym_token_tree_pattern] = STATE(211), - [sym_token_binding_pattern] = STATE(211), - [sym_token_repetition_pattern] = STATE(211), - [sym__literal] = STATE(211), - [sym_string_literal] = STATE(211), - [sym_boolean_literal] = STATE(211), - [aux_sym_token_tree_pattern_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [aux_sym__non_special_token_token1] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_as] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_await] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_default] = ACTIONS(1617), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_impl] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_mod] = ACTIONS(1617), - [anon_sym_pub] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_trait] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_union] = ACTIONS(1617), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_where] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [sym_mutable_specifier] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1621), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(1617), - [sym_super] = ACTIONS(1617), - [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1621), - [sym_float_literal] = ACTIONS(1621), - [sym_block_comment] = ACTIONS(3), - }, [433] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_macro_rules_BANG] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_u8] = ACTIONS(2078), - [anon_sym_i8] = ACTIONS(2078), - [anon_sym_u16] = ACTIONS(2078), - [anon_sym_i16] = ACTIONS(2078), - [anon_sym_u32] = ACTIONS(2078), - [anon_sym_i32] = ACTIONS(2078), - [anon_sym_u64] = ACTIONS(2078), - [anon_sym_i64] = ACTIONS(2078), - [anon_sym_u128] = ACTIONS(2078), - [anon_sym_i128] = ACTIONS(2078), - [anon_sym_isize] = ACTIONS(2078), - [anon_sym_usize] = ACTIONS(2078), - [anon_sym_f32] = ACTIONS(2078), - [anon_sym_f64] = ACTIONS(2078), - [anon_sym_bool] = ACTIONS(2078), - [anon_sym_str] = ACTIONS(2078), - [anon_sym_char] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2078), - [anon_sym_async] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_fn] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_impl] = ACTIONS(2078), - [anon_sym_let] = ACTIONS(2078), - [anon_sym_loop] = ACTIONS(2078), - [anon_sym_match] = ACTIONS(2078), - [anon_sym_mod] = ACTIONS(2078), - [anon_sym_pub] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_trait] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_unsafe] = ACTIONS(2078), - [anon_sym_use] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_COLON_COLON] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_DOT_DOT] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_move] = ACTIONS(2078), - [sym_integer_literal] = ACTIONS(2076), - [aux_sym_string_literal_token1] = ACTIONS(2076), - [sym_char_literal] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_macro_rules_BANG] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_u8] = ACTIONS(2076), + [anon_sym_i8] = ACTIONS(2076), + [anon_sym_u16] = ACTIONS(2076), + [anon_sym_i16] = ACTIONS(2076), + [anon_sym_u32] = ACTIONS(2076), + [anon_sym_i32] = ACTIONS(2076), + [anon_sym_u64] = ACTIONS(2076), + [anon_sym_i64] = ACTIONS(2076), + [anon_sym_u128] = ACTIONS(2076), + [anon_sym_i128] = ACTIONS(2076), + [anon_sym_isize] = ACTIONS(2076), + [anon_sym_usize] = ACTIONS(2076), + [anon_sym_f32] = ACTIONS(2076), + [anon_sym_f64] = ACTIONS(2076), + [anon_sym_bool] = ACTIONS(2076), + [anon_sym_str] = ACTIONS(2076), + [anon_sym_char] = ACTIONS(2076), + [anon_sym_SQUOTE] = ACTIONS(2076), + [anon_sym_async] = ACTIONS(2076), + [anon_sym_break] = ACTIONS(2076), + [anon_sym_const] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2076), + [anon_sym_default] = ACTIONS(2076), + [anon_sym_enum] = ACTIONS(2076), + [anon_sym_fn] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2076), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_impl] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2076), + [anon_sym_loop] = ACTIONS(2076), + [anon_sym_match] = ACTIONS(2076), + [anon_sym_mod] = ACTIONS(2076), + [anon_sym_pub] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_static] = ACTIONS(2076), + [anon_sym_struct] = ACTIONS(2076), + [anon_sym_trait] = ACTIONS(2076), + [anon_sym_type] = ACTIONS(2076), + [anon_sym_union] = ACTIONS(2076), + [anon_sym_unsafe] = ACTIONS(2076), + [anon_sym_use] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_extern] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2074), + [anon_sym_COLON_COLON] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_DOT_DOT] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_move] = ACTIONS(2076), + [sym_integer_literal] = ACTIONS(2074), + [aux_sym_string_literal_token1] = ACTIONS(2074), + [sym_char_literal] = ACTIONS(2074), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_crate] = ACTIONS(2078), - [sym_metavariable] = ACTIONS(2076), - [sym_raw_string_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), + [sym_self] = ACTIONS(2076), + [sym_super] = ACTIONS(2076), + [sym_crate] = ACTIONS(2076), + [sym_metavariable] = ACTIONS(2074), + [sym_raw_string_literal] = ACTIONS(2074), + [sym_float_literal] = ACTIONS(2074), [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_macro_rules_BANG] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_u8] = ACTIONS(2082), - [anon_sym_i8] = ACTIONS(2082), - [anon_sym_u16] = ACTIONS(2082), - [anon_sym_i16] = ACTIONS(2082), - [anon_sym_u32] = ACTIONS(2082), - [anon_sym_i32] = ACTIONS(2082), - [anon_sym_u64] = ACTIONS(2082), - [anon_sym_i64] = ACTIONS(2082), - [anon_sym_u128] = ACTIONS(2082), - [anon_sym_i128] = ACTIONS(2082), - [anon_sym_isize] = ACTIONS(2082), - [anon_sym_usize] = ACTIONS(2082), - [anon_sym_f32] = ACTIONS(2082), - [anon_sym_f64] = ACTIONS(2082), - [anon_sym_bool] = ACTIONS(2082), - [anon_sym_str] = ACTIONS(2082), - [anon_sym_char] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2082), - [anon_sym_async] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_default] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_fn] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_impl] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_loop] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_mod] = ACTIONS(2082), - [anon_sym_pub] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2082), - [anon_sym_trait] = ACTIONS(2082), - [anon_sym_type] = ACTIONS(2082), - [anon_sym_union] = ACTIONS(2082), - [anon_sym_unsafe] = ACTIONS(2082), - [anon_sym_use] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2080), - [anon_sym_COLON_COLON] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_DOT_DOT] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2080), - [anon_sym_move] = ACTIONS(2082), - [sym_integer_literal] = ACTIONS(2080), - [aux_sym_string_literal_token1] = ACTIONS(2080), - [sym_char_literal] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_macro_rules_BANG] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_STAR] = ACTIONS(2078), + [anon_sym_u8] = ACTIONS(2080), + [anon_sym_i8] = ACTIONS(2080), + [anon_sym_u16] = ACTIONS(2080), + [anon_sym_i16] = ACTIONS(2080), + [anon_sym_u32] = ACTIONS(2080), + [anon_sym_i32] = ACTIONS(2080), + [anon_sym_u64] = ACTIONS(2080), + [anon_sym_i64] = ACTIONS(2080), + [anon_sym_u128] = ACTIONS(2080), + [anon_sym_i128] = ACTIONS(2080), + [anon_sym_isize] = ACTIONS(2080), + [anon_sym_usize] = ACTIONS(2080), + [anon_sym_f32] = ACTIONS(2080), + [anon_sym_f64] = ACTIONS(2080), + [anon_sym_bool] = ACTIONS(2080), + [anon_sym_str] = ACTIONS(2080), + [anon_sym_char] = ACTIONS(2080), + [anon_sym_SQUOTE] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_fn] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_impl] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_loop] = ACTIONS(2080), + [anon_sym_match] = ACTIONS(2080), + [anon_sym_mod] = ACTIONS(2080), + [anon_sym_pub] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_trait] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(2078), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_move] = ACTIONS(2080), + [sym_integer_literal] = ACTIONS(2078), + [aux_sym_string_literal_token1] = ACTIONS(2078), + [sym_char_literal] = ACTIONS(2078), + [anon_sym_true] = ACTIONS(2080), + [anon_sym_false] = ACTIONS(2080), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2082), - [sym_super] = ACTIONS(2082), - [sym_crate] = ACTIONS(2082), - [sym_metavariable] = ACTIONS(2080), - [sym_raw_string_literal] = ACTIONS(2080), - [sym_float_literal] = ACTIONS(2080), + [sym_self] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_crate] = ACTIONS(2080), + [sym_metavariable] = ACTIONS(2078), + [sym_raw_string_literal] = ACTIONS(2078), + [sym_float_literal] = ACTIONS(2078), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2086), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_macro_rules_BANG] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_u8] = ACTIONS(2086), - [anon_sym_i8] = ACTIONS(2086), - [anon_sym_u16] = ACTIONS(2086), - [anon_sym_i16] = ACTIONS(2086), - [anon_sym_u32] = ACTIONS(2086), - [anon_sym_i32] = ACTIONS(2086), - [anon_sym_u64] = ACTIONS(2086), - [anon_sym_i64] = ACTIONS(2086), - [anon_sym_u128] = ACTIONS(2086), - [anon_sym_i128] = ACTIONS(2086), - [anon_sym_isize] = ACTIONS(2086), - [anon_sym_usize] = ACTIONS(2086), - [anon_sym_f32] = ACTIONS(2086), - [anon_sym_f64] = ACTIONS(2086), - [anon_sym_bool] = ACTIONS(2086), - [anon_sym_str] = ACTIONS(2086), - [anon_sym_char] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2086), - [anon_sym_async] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_default] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), - [anon_sym_fn] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_impl] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_mod] = ACTIONS(2086), - [anon_sym_pub] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_struct] = ACTIONS(2086), - [anon_sym_trait] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_unsafe] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_COLON_COLON] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_move] = ACTIONS(2086), - [sym_integer_literal] = ACTIONS(2084), - [aux_sym_string_literal_token1] = ACTIONS(2084), - [sym_char_literal] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2086), - [anon_sym_false] = ACTIONS(2086), + [ts_builtin_sym_end] = ACTIONS(2082), + [sym_identifier] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_macro_rules_BANG] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(2082), + [anon_sym_u8] = ACTIONS(2084), + [anon_sym_i8] = ACTIONS(2084), + [anon_sym_u16] = ACTIONS(2084), + [anon_sym_i16] = ACTIONS(2084), + [anon_sym_u32] = ACTIONS(2084), + [anon_sym_i32] = ACTIONS(2084), + [anon_sym_u64] = ACTIONS(2084), + [anon_sym_i64] = ACTIONS(2084), + [anon_sym_u128] = ACTIONS(2084), + [anon_sym_i128] = ACTIONS(2084), + [anon_sym_isize] = ACTIONS(2084), + [anon_sym_usize] = ACTIONS(2084), + [anon_sym_f32] = ACTIONS(2084), + [anon_sym_f64] = ACTIONS(2084), + [anon_sym_bool] = ACTIONS(2084), + [anon_sym_str] = ACTIONS(2084), + [anon_sym_char] = ACTIONS(2084), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_async] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_fn] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_impl] = ACTIONS(2084), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_loop] = ACTIONS(2084), + [anon_sym_match] = ACTIONS(2084), + [anon_sym_mod] = ACTIONS(2084), + [anon_sym_pub] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_trait] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_unsafe] = ACTIONS(2084), + [anon_sym_use] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2082), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_move] = ACTIONS(2084), + [sym_integer_literal] = ACTIONS(2082), + [aux_sym_string_literal_token1] = ACTIONS(2082), + [sym_char_literal] = ACTIONS(2082), + [anon_sym_true] = ACTIONS(2084), + [anon_sym_false] = ACTIONS(2084), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2086), - [sym_super] = ACTIONS(2086), - [sym_crate] = ACTIONS(2086), - [sym_metavariable] = ACTIONS(2084), - [sym_raw_string_literal] = ACTIONS(2084), - [sym_float_literal] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_crate] = ACTIONS(2084), + [sym_metavariable] = ACTIONS(2082), + [sym_raw_string_literal] = ACTIONS(2082), + [sym_float_literal] = ACTIONS(2082), [sym_block_comment] = ACTIONS(3), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(2088), - [sym_identifier] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_macro_rules_BANG] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_STAR] = ACTIONS(2088), - [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_SQUOTE] = ACTIONS(2090), - [anon_sym_async] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_fn] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_impl] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_mod] = ACTIONS(2090), - [anon_sym_pub] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_struct] = ACTIONS(2090), - [anon_sym_trait] = ACTIONS(2090), - [anon_sym_type] = ACTIONS(2090), - [anon_sym_union] = ACTIONS(2090), - [anon_sym_unsafe] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_COLON_COLON] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2088), - [anon_sym_DOT_DOT] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_move] = ACTIONS(2090), - [sym_integer_literal] = ACTIONS(2088), - [aux_sym_string_literal_token1] = ACTIONS(2088), - [sym_char_literal] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(2090), - [anon_sym_false] = ACTIONS(2090), + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_macro_rules_BANG] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2088), + [anon_sym_i8] = ACTIONS(2088), + [anon_sym_u16] = ACTIONS(2088), + [anon_sym_i16] = ACTIONS(2088), + [anon_sym_u32] = ACTIONS(2088), + [anon_sym_i32] = ACTIONS(2088), + [anon_sym_u64] = ACTIONS(2088), + [anon_sym_i64] = ACTIONS(2088), + [anon_sym_u128] = ACTIONS(2088), + [anon_sym_i128] = ACTIONS(2088), + [anon_sym_isize] = ACTIONS(2088), + [anon_sym_usize] = ACTIONS(2088), + [anon_sym_f32] = ACTIONS(2088), + [anon_sym_f64] = ACTIONS(2088), + [anon_sym_bool] = ACTIONS(2088), + [anon_sym_str] = ACTIONS(2088), + [anon_sym_char] = ACTIONS(2088), + [anon_sym_SQUOTE] = ACTIONS(2088), + [anon_sym_async] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_impl] = ACTIONS(2088), + [anon_sym_let] = ACTIONS(2088), + [anon_sym_loop] = ACTIONS(2088), + [anon_sym_match] = ACTIONS(2088), + [anon_sym_mod] = ACTIONS(2088), + [anon_sym_pub] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_trait] = ACTIONS(2088), + [anon_sym_type] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_unsafe] = ACTIONS(2088), + [anon_sym_use] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2086), + [anon_sym_COLON_COLON] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_DOT_DOT] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_move] = ACTIONS(2088), + [sym_integer_literal] = ACTIONS(2086), + [aux_sym_string_literal_token1] = ACTIONS(2086), + [sym_char_literal] = ACTIONS(2086), + [anon_sym_true] = ACTIONS(2088), + [anon_sym_false] = ACTIONS(2088), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2090), - [sym_super] = ACTIONS(2090), - [sym_crate] = ACTIONS(2090), - [sym_metavariable] = ACTIONS(2088), - [sym_raw_string_literal] = ACTIONS(2088), - [sym_float_literal] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_crate] = ACTIONS(2088), + [sym_metavariable] = ACTIONS(2086), + [sym_raw_string_literal] = ACTIONS(2086), + [sym_float_literal] = ACTIONS(2086), [sym_block_comment] = ACTIONS(3), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(2092), - [sym_identifier] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_macro_rules_BANG] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_u8] = ACTIONS(2094), - [anon_sym_i8] = ACTIONS(2094), - [anon_sym_u16] = ACTIONS(2094), - [anon_sym_i16] = ACTIONS(2094), - [anon_sym_u32] = ACTIONS(2094), - [anon_sym_i32] = ACTIONS(2094), - [anon_sym_u64] = ACTIONS(2094), - [anon_sym_i64] = ACTIONS(2094), - [anon_sym_u128] = ACTIONS(2094), - [anon_sym_i128] = ACTIONS(2094), - [anon_sym_isize] = ACTIONS(2094), - [anon_sym_usize] = ACTIONS(2094), - [anon_sym_f32] = ACTIONS(2094), - [anon_sym_f64] = ACTIONS(2094), - [anon_sym_bool] = ACTIONS(2094), - [anon_sym_str] = ACTIONS(2094), - [anon_sym_char] = ACTIONS(2094), - [anon_sym_SQUOTE] = ACTIONS(2094), - [anon_sym_async] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_default] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_fn] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_impl] = ACTIONS(2094), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_loop] = ACTIONS(2094), - [anon_sym_match] = ACTIONS(2094), - [anon_sym_mod] = ACTIONS(2094), - [anon_sym_pub] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_trait] = ACTIONS(2094), - [anon_sym_type] = ACTIONS(2094), - [anon_sym_union] = ACTIONS(2094), - [anon_sym_unsafe] = ACTIONS(2094), - [anon_sym_use] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2092), - [anon_sym_BANG] = ACTIONS(2092), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_COLON_COLON] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_DOT_DOT] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2094), - [sym_integer_literal] = ACTIONS(2092), - [aux_sym_string_literal_token1] = ACTIONS(2092), - [sym_char_literal] = ACTIONS(2092), - [anon_sym_true] = ACTIONS(2094), - [anon_sym_false] = ACTIONS(2094), + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_u8] = ACTIONS(2092), + [anon_sym_i8] = ACTIONS(2092), + [anon_sym_u16] = ACTIONS(2092), + [anon_sym_i16] = ACTIONS(2092), + [anon_sym_u32] = ACTIONS(2092), + [anon_sym_i32] = ACTIONS(2092), + [anon_sym_u64] = ACTIONS(2092), + [anon_sym_i64] = ACTIONS(2092), + [anon_sym_u128] = ACTIONS(2092), + [anon_sym_i128] = ACTIONS(2092), + [anon_sym_isize] = ACTIONS(2092), + [anon_sym_usize] = ACTIONS(2092), + [anon_sym_f32] = ACTIONS(2092), + [anon_sym_f64] = ACTIONS(2092), + [anon_sym_bool] = ACTIONS(2092), + [anon_sym_str] = ACTIONS(2092), + [anon_sym_char] = ACTIONS(2092), + [anon_sym_SQUOTE] = ACTIONS(2092), + [anon_sym_async] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_continue] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2092), + [anon_sym_enum] = ACTIONS(2092), + [anon_sym_fn] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2092), + [anon_sym_if] = ACTIONS(2092), + [anon_sym_impl] = ACTIONS(2092), + [anon_sym_let] = ACTIONS(2092), + [anon_sym_loop] = ACTIONS(2092), + [anon_sym_match] = ACTIONS(2092), + [anon_sym_mod] = ACTIONS(2092), + [anon_sym_pub] = ACTIONS(2092), + [anon_sym_return] = ACTIONS(2092), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_struct] = ACTIONS(2092), + [anon_sym_trait] = ACTIONS(2092), + [anon_sym_type] = ACTIONS(2092), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_unsafe] = ACTIONS(2092), + [anon_sym_use] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_COLON_COLON] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_DOT_DOT] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_move] = ACTIONS(2092), + [sym_integer_literal] = ACTIONS(2090), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2090), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2094), - [sym_super] = ACTIONS(2094), - [sym_crate] = ACTIONS(2094), - [sym_metavariable] = ACTIONS(2092), - [sym_raw_string_literal] = ACTIONS(2092), - [sym_float_literal] = ACTIONS(2092), + [sym_self] = ACTIONS(2092), + [sym_super] = ACTIONS(2092), + [sym_crate] = ACTIONS(2092), + [sym_metavariable] = ACTIONS(2090), + [sym_raw_string_literal] = ACTIONS(2090), + [sym_float_literal] = ACTIONS(2090), [sym_block_comment] = ACTIONS(3), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(411), - [sym_identifier] = ACTIONS(413), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_macro_rules_BANG] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(411), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_u8] = ACTIONS(413), - [anon_sym_i8] = ACTIONS(413), - [anon_sym_u16] = ACTIONS(413), - [anon_sym_i16] = ACTIONS(413), - [anon_sym_u32] = ACTIONS(413), - [anon_sym_i32] = ACTIONS(413), - [anon_sym_u64] = ACTIONS(413), - [anon_sym_i64] = ACTIONS(413), - [anon_sym_u128] = ACTIONS(413), - [anon_sym_i128] = ACTIONS(413), - [anon_sym_isize] = ACTIONS(413), - [anon_sym_usize] = ACTIONS(413), - [anon_sym_f32] = ACTIONS(413), - [anon_sym_f64] = ACTIONS(413), - [anon_sym_bool] = ACTIONS(413), - [anon_sym_str] = ACTIONS(413), - [anon_sym_char] = ACTIONS(413), - [anon_sym_SQUOTE] = ACTIONS(413), - [anon_sym_async] = ACTIONS(413), - [anon_sym_break] = ACTIONS(413), - [anon_sym_const] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(413), - [anon_sym_default] = ACTIONS(413), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_fn] = ACTIONS(413), - [anon_sym_for] = ACTIONS(413), - [anon_sym_if] = ACTIONS(413), - [anon_sym_impl] = ACTIONS(413), - [anon_sym_let] = ACTIONS(413), - [anon_sym_loop] = ACTIONS(413), - [anon_sym_match] = ACTIONS(413), - [anon_sym_mod] = ACTIONS(413), - [anon_sym_pub] = ACTIONS(413), - [anon_sym_return] = ACTIONS(413), - [anon_sym_static] = ACTIONS(413), - [anon_sym_struct] = ACTIONS(413), - [anon_sym_trait] = ACTIONS(413), - [anon_sym_type] = ACTIONS(413), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(413), - [anon_sym_use] = ACTIONS(413), - [anon_sym_while] = ACTIONS(413), - [anon_sym_POUND] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_extern] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_COLON_COLON] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_DOT_DOT] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_move] = ACTIONS(413), - [sym_integer_literal] = ACTIONS(411), - [aux_sym_string_literal_token1] = ACTIONS(411), - [sym_char_literal] = ACTIONS(411), - [anon_sym_true] = ACTIONS(413), - [anon_sym_false] = ACTIONS(413), + [ts_builtin_sym_end] = ACTIONS(2094), + [sym_identifier] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_macro_rules_BANG] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_async] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_fn] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_impl] = ACTIONS(2096), + [anon_sym_let] = ACTIONS(2096), + [anon_sym_loop] = ACTIONS(2096), + [anon_sym_match] = ACTIONS(2096), + [anon_sym_mod] = ACTIONS(2096), + [anon_sym_pub] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_trait] = ACTIONS(2096), + [anon_sym_type] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_unsafe] = ACTIONS(2096), + [anon_sym_use] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(2094), + [anon_sym_BANG] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2094), + [anon_sym_DOT_DOT] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_move] = ACTIONS(2096), + [sym_integer_literal] = ACTIONS(2094), + [aux_sym_string_literal_token1] = ACTIONS(2094), + [sym_char_literal] = ACTIONS(2094), + [anon_sym_true] = ACTIONS(2096), + [anon_sym_false] = ACTIONS(2096), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(413), - [sym_super] = ACTIONS(413), - [sym_crate] = ACTIONS(413), - [sym_metavariable] = ACTIONS(411), - [sym_raw_string_literal] = ACTIONS(411), - [sym_float_literal] = ACTIONS(411), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_crate] = ACTIONS(2096), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2094), + [sym_float_literal] = ACTIONS(2094), [sym_block_comment] = ACTIONS(3), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(2096), - [sym_identifier] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_macro_rules_BANG] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_u8] = ACTIONS(2098), - [anon_sym_i8] = ACTIONS(2098), - [anon_sym_u16] = ACTIONS(2098), - [anon_sym_i16] = ACTIONS(2098), - [anon_sym_u32] = ACTIONS(2098), - [anon_sym_i32] = ACTIONS(2098), - [anon_sym_u64] = ACTIONS(2098), - [anon_sym_i64] = ACTIONS(2098), - [anon_sym_u128] = ACTIONS(2098), - [anon_sym_i128] = ACTIONS(2098), - [anon_sym_isize] = ACTIONS(2098), - [anon_sym_usize] = ACTIONS(2098), - [anon_sym_f32] = ACTIONS(2098), - [anon_sym_f64] = ACTIONS(2098), - [anon_sym_bool] = ACTIONS(2098), - [anon_sym_str] = ACTIONS(2098), - [anon_sym_char] = ACTIONS(2098), - [anon_sym_SQUOTE] = ACTIONS(2098), - [anon_sym_async] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_default] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [anon_sym_fn] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_impl] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_loop] = ACTIONS(2098), - [anon_sym_match] = ACTIONS(2098), - [anon_sym_mod] = ACTIONS(2098), - [anon_sym_pub] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_struct] = ACTIONS(2098), - [anon_sym_trait] = ACTIONS(2098), - [anon_sym_type] = ACTIONS(2098), - [anon_sym_union] = ACTIONS(2098), - [anon_sym_unsafe] = ACTIONS(2098), - [anon_sym_use] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2098), - [sym_integer_literal] = ACTIONS(2096), - [aux_sym_string_literal_token1] = ACTIONS(2096), - [sym_char_literal] = ACTIONS(2096), - [anon_sym_true] = ACTIONS(2098), - [anon_sym_false] = ACTIONS(2098), + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_macro_rules_BANG] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_u8] = ACTIONS(2100), + [anon_sym_i8] = ACTIONS(2100), + [anon_sym_u16] = ACTIONS(2100), + [anon_sym_i16] = ACTIONS(2100), + [anon_sym_u32] = ACTIONS(2100), + [anon_sym_i32] = ACTIONS(2100), + [anon_sym_u64] = ACTIONS(2100), + [anon_sym_i64] = ACTIONS(2100), + [anon_sym_u128] = ACTIONS(2100), + [anon_sym_i128] = ACTIONS(2100), + [anon_sym_isize] = ACTIONS(2100), + [anon_sym_usize] = ACTIONS(2100), + [anon_sym_f32] = ACTIONS(2100), + [anon_sym_f64] = ACTIONS(2100), + [anon_sym_bool] = ACTIONS(2100), + [anon_sym_str] = ACTIONS(2100), + [anon_sym_char] = ACTIONS(2100), + [anon_sym_SQUOTE] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_fn] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_impl] = ACTIONS(2100), + [anon_sym_let] = ACTIONS(2100), + [anon_sym_loop] = ACTIONS(2100), + [anon_sym_match] = ACTIONS(2100), + [anon_sym_mod] = ACTIONS(2100), + [anon_sym_pub] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_trait] = ACTIONS(2100), + [anon_sym_type] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_unsafe] = ACTIONS(2100), + [anon_sym_use] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2098), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_DOT_DOT] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_move] = ACTIONS(2100), + [sym_integer_literal] = ACTIONS(2098), + [aux_sym_string_literal_token1] = ACTIONS(2098), + [sym_char_literal] = ACTIONS(2098), + [anon_sym_true] = ACTIONS(2100), + [anon_sym_false] = ACTIONS(2100), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2098), - [sym_super] = ACTIONS(2098), - [sym_crate] = ACTIONS(2098), - [sym_metavariable] = ACTIONS(2096), - [sym_raw_string_literal] = ACTIONS(2096), - [sym_float_literal] = ACTIONS(2096), + [sym_self] = ACTIONS(2100), + [sym_super] = ACTIONS(2100), + [sym_crate] = ACTIONS(2100), + [sym_metavariable] = ACTIONS(2098), + [sym_raw_string_literal] = ACTIONS(2098), + [sym_float_literal] = ACTIONS(2098), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(2100), - [sym_identifier] = ACTIONS(2102), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_macro_rules_BANG] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(2100), - [anon_sym_u8] = ACTIONS(2102), - [anon_sym_i8] = ACTIONS(2102), - [anon_sym_u16] = ACTIONS(2102), - [anon_sym_i16] = ACTIONS(2102), - [anon_sym_u32] = ACTIONS(2102), - [anon_sym_i32] = ACTIONS(2102), - [anon_sym_u64] = ACTIONS(2102), - [anon_sym_i64] = ACTIONS(2102), - [anon_sym_u128] = ACTIONS(2102), - [anon_sym_i128] = ACTIONS(2102), - [anon_sym_isize] = ACTIONS(2102), - [anon_sym_usize] = ACTIONS(2102), - [anon_sym_f32] = ACTIONS(2102), - [anon_sym_f64] = ACTIONS(2102), - [anon_sym_bool] = ACTIONS(2102), - [anon_sym_str] = ACTIONS(2102), - [anon_sym_char] = ACTIONS(2102), - [anon_sym_SQUOTE] = ACTIONS(2102), - [anon_sym_async] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_impl] = ACTIONS(2102), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_loop] = ACTIONS(2102), - [anon_sym_match] = ACTIONS(2102), - [anon_sym_mod] = ACTIONS(2102), - [anon_sym_pub] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_struct] = ACTIONS(2102), - [anon_sym_trait] = ACTIONS(2102), - [anon_sym_type] = ACTIONS(2102), - [anon_sym_union] = ACTIONS(2102), - [anon_sym_unsafe] = ACTIONS(2102), - [anon_sym_use] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(2100), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_COLON_COLON] = ACTIONS(2100), - [anon_sym_AMP] = ACTIONS(2100), - [anon_sym_DOT_DOT] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2102), - [sym_integer_literal] = ACTIONS(2100), - [aux_sym_string_literal_token1] = ACTIONS(2100), - [sym_char_literal] = ACTIONS(2100), - [anon_sym_true] = ACTIONS(2102), - [anon_sym_false] = ACTIONS(2102), + [ts_builtin_sym_end] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_macro_rules_BANG] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2102), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_u8] = ACTIONS(2104), + [anon_sym_i8] = ACTIONS(2104), + [anon_sym_u16] = ACTIONS(2104), + [anon_sym_i16] = ACTIONS(2104), + [anon_sym_u32] = ACTIONS(2104), + [anon_sym_i32] = ACTIONS(2104), + [anon_sym_u64] = ACTIONS(2104), + [anon_sym_i64] = ACTIONS(2104), + [anon_sym_u128] = ACTIONS(2104), + [anon_sym_i128] = ACTIONS(2104), + [anon_sym_isize] = ACTIONS(2104), + [anon_sym_usize] = ACTIONS(2104), + [anon_sym_f32] = ACTIONS(2104), + [anon_sym_f64] = ACTIONS(2104), + [anon_sym_bool] = ACTIONS(2104), + [anon_sym_str] = ACTIONS(2104), + [anon_sym_char] = ACTIONS(2104), + [anon_sym_SQUOTE] = ACTIONS(2104), + [anon_sym_async] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_fn] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_impl] = ACTIONS(2104), + [anon_sym_let] = ACTIONS(2104), + [anon_sym_loop] = ACTIONS(2104), + [anon_sym_match] = ACTIONS(2104), + [anon_sym_mod] = ACTIONS(2104), + [anon_sym_pub] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_trait] = ACTIONS(2104), + [anon_sym_type] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_unsafe] = ACTIONS(2104), + [anon_sym_use] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2102), + [anon_sym_COLON_COLON] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_DOT_DOT] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_move] = ACTIONS(2104), + [sym_integer_literal] = ACTIONS(2102), + [aux_sym_string_literal_token1] = ACTIONS(2102), + [sym_char_literal] = ACTIONS(2102), + [anon_sym_true] = ACTIONS(2104), + [anon_sym_false] = ACTIONS(2104), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2102), - [sym_super] = ACTIONS(2102), - [sym_crate] = ACTIONS(2102), - [sym_metavariable] = ACTIONS(2100), - [sym_raw_string_literal] = ACTIONS(2100), - [sym_float_literal] = ACTIONS(2100), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_crate] = ACTIONS(2104), + [sym_metavariable] = ACTIONS(2102), + [sym_raw_string_literal] = ACTIONS(2102), + [sym_float_literal] = ACTIONS(2102), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_macro_rules_BANG] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_u8] = ACTIONS(2106), - [anon_sym_i8] = ACTIONS(2106), - [anon_sym_u16] = ACTIONS(2106), - [anon_sym_i16] = ACTIONS(2106), - [anon_sym_u32] = ACTIONS(2106), - [anon_sym_i32] = ACTIONS(2106), - [anon_sym_u64] = ACTIONS(2106), - [anon_sym_i64] = ACTIONS(2106), - [anon_sym_u128] = ACTIONS(2106), - [anon_sym_i128] = ACTIONS(2106), - [anon_sym_isize] = ACTIONS(2106), - [anon_sym_usize] = ACTIONS(2106), - [anon_sym_f32] = ACTIONS(2106), - [anon_sym_f64] = ACTIONS(2106), - [anon_sym_bool] = ACTIONS(2106), - [anon_sym_str] = ACTIONS(2106), - [anon_sym_char] = ACTIONS(2106), - [anon_sym_SQUOTE] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_default] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_fn] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_impl] = ACTIONS(2106), - [anon_sym_let] = ACTIONS(2106), - [anon_sym_loop] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_mod] = ACTIONS(2106), - [anon_sym_pub] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(2106), - [anon_sym_trait] = ACTIONS(2106), - [anon_sym_type] = ACTIONS(2106), - [anon_sym_union] = ACTIONS(2106), - [anon_sym_unsafe] = ACTIONS(2106), - [anon_sym_use] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_POUND] = ACTIONS(2104), - [anon_sym_BANG] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_move] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2104), - [aux_sym_string_literal_token1] = ACTIONS(2104), - [sym_char_literal] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2106), - [anon_sym_false] = ACTIONS(2106), + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_macro_rules_BANG] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_u8] = ACTIONS(2108), + [anon_sym_i8] = ACTIONS(2108), + [anon_sym_u16] = ACTIONS(2108), + [anon_sym_i16] = ACTIONS(2108), + [anon_sym_u32] = ACTIONS(2108), + [anon_sym_i32] = ACTIONS(2108), + [anon_sym_u64] = ACTIONS(2108), + [anon_sym_i64] = ACTIONS(2108), + [anon_sym_u128] = ACTIONS(2108), + [anon_sym_i128] = ACTIONS(2108), + [anon_sym_isize] = ACTIONS(2108), + [anon_sym_usize] = ACTIONS(2108), + [anon_sym_f32] = ACTIONS(2108), + [anon_sym_f64] = ACTIONS(2108), + [anon_sym_bool] = ACTIONS(2108), + [anon_sym_str] = ACTIONS(2108), + [anon_sym_char] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_async] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_impl] = ACTIONS(2108), + [anon_sym_let] = ACTIONS(2108), + [anon_sym_loop] = ACTIONS(2108), + [anon_sym_match] = ACTIONS(2108), + [anon_sym_mod] = ACTIONS(2108), + [anon_sym_pub] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_trait] = ACTIONS(2108), + [anon_sym_type] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_unsafe] = ACTIONS(2108), + [anon_sym_use] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_DOT_DOT] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_move] = ACTIONS(2108), + [sym_integer_literal] = ACTIONS(2106), + [aux_sym_string_literal_token1] = ACTIONS(2106), + [sym_char_literal] = ACTIONS(2106), + [anon_sym_true] = ACTIONS(2108), + [anon_sym_false] = ACTIONS(2108), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2106), - [sym_super] = ACTIONS(2106), - [sym_crate] = ACTIONS(2106), - [sym_metavariable] = ACTIONS(2104), - [sym_raw_string_literal] = ACTIONS(2104), - [sym_float_literal] = ACTIONS(2104), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_crate] = ACTIONS(2108), + [sym_metavariable] = ACTIONS(2106), + [sym_raw_string_literal] = ACTIONS(2106), + [sym_float_literal] = ACTIONS(2106), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2110), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_macro_rules_BANG] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_u8] = ACTIONS(2110), - [anon_sym_i8] = ACTIONS(2110), - [anon_sym_u16] = ACTIONS(2110), - [anon_sym_i16] = ACTIONS(2110), - [anon_sym_u32] = ACTIONS(2110), - [anon_sym_i32] = ACTIONS(2110), - [anon_sym_u64] = ACTIONS(2110), - [anon_sym_i64] = ACTIONS(2110), - [anon_sym_u128] = ACTIONS(2110), - [anon_sym_i128] = ACTIONS(2110), - [anon_sym_isize] = ACTIONS(2110), - [anon_sym_usize] = ACTIONS(2110), - [anon_sym_f32] = ACTIONS(2110), - [anon_sym_f64] = ACTIONS(2110), - [anon_sym_bool] = ACTIONS(2110), - [anon_sym_str] = ACTIONS(2110), - [anon_sym_char] = ACTIONS(2110), - [anon_sym_SQUOTE] = ACTIONS(2110), - [anon_sym_async] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_const] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2110), - [anon_sym_default] = ACTIONS(2110), - [anon_sym_enum] = ACTIONS(2110), - [anon_sym_fn] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_impl] = ACTIONS(2110), - [anon_sym_let] = ACTIONS(2110), - [anon_sym_loop] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2110), - [anon_sym_mod] = ACTIONS(2110), - [anon_sym_pub] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2110), - [anon_sym_static] = ACTIONS(2110), - [anon_sym_struct] = ACTIONS(2110), - [anon_sym_trait] = ACTIONS(2110), - [anon_sym_type] = ACTIONS(2110), - [anon_sym_union] = ACTIONS(2110), - [anon_sym_unsafe] = ACTIONS(2110), - [anon_sym_use] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_COLON_COLON] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_DOT_DOT] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2110), - [sym_integer_literal] = ACTIONS(2108), - [aux_sym_string_literal_token1] = ACTIONS(2108), - [sym_char_literal] = ACTIONS(2108), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_macro_rules_BANG] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_u8] = ACTIONS(2112), + [anon_sym_i8] = ACTIONS(2112), + [anon_sym_u16] = ACTIONS(2112), + [anon_sym_i16] = ACTIONS(2112), + [anon_sym_u32] = ACTIONS(2112), + [anon_sym_i32] = ACTIONS(2112), + [anon_sym_u64] = ACTIONS(2112), + [anon_sym_i64] = ACTIONS(2112), + [anon_sym_u128] = ACTIONS(2112), + [anon_sym_i128] = ACTIONS(2112), + [anon_sym_isize] = ACTIONS(2112), + [anon_sym_usize] = ACTIONS(2112), + [anon_sym_f32] = ACTIONS(2112), + [anon_sym_f64] = ACTIONS(2112), + [anon_sym_bool] = ACTIONS(2112), + [anon_sym_str] = ACTIONS(2112), + [anon_sym_char] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2112), + [anon_sym_async] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2112), + [anon_sym_loop] = ACTIONS(2112), + [anon_sym_match] = ACTIONS(2112), + [anon_sym_mod] = ACTIONS(2112), + [anon_sym_pub] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_trait] = ACTIONS(2112), + [anon_sym_type] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_unsafe] = ACTIONS(2112), + [anon_sym_use] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_POUND] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_DOT_DOT] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_move] = ACTIONS(2112), + [sym_integer_literal] = ACTIONS(2110), + [aux_sym_string_literal_token1] = ACTIONS(2110), + [sym_char_literal] = ACTIONS(2110), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2110), - [sym_super] = ACTIONS(2110), - [sym_crate] = ACTIONS(2110), - [sym_metavariable] = ACTIONS(2108), - [sym_raw_string_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), + [sym_self] = ACTIONS(2112), + [sym_super] = ACTIONS(2112), + [sym_crate] = ACTIONS(2112), + [sym_metavariable] = ACTIONS(2110), + [sym_raw_string_literal] = ACTIONS(2110), + [sym_float_literal] = ACTIONS(2110), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_macro_rules_BANG] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_u8] = ACTIONS(2114), - [anon_sym_i8] = ACTIONS(2114), - [anon_sym_u16] = ACTIONS(2114), - [anon_sym_i16] = ACTIONS(2114), - [anon_sym_u32] = ACTIONS(2114), - [anon_sym_i32] = ACTIONS(2114), - [anon_sym_u64] = ACTIONS(2114), - [anon_sym_i64] = ACTIONS(2114), - [anon_sym_u128] = ACTIONS(2114), - [anon_sym_i128] = ACTIONS(2114), - [anon_sym_isize] = ACTIONS(2114), - [anon_sym_usize] = ACTIONS(2114), - [anon_sym_f32] = ACTIONS(2114), - [anon_sym_f64] = ACTIONS(2114), - [anon_sym_bool] = ACTIONS(2114), - [anon_sym_str] = ACTIONS(2114), - [anon_sym_char] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(2114), - [anon_sym_async] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_fn] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_impl] = ACTIONS(2114), - [anon_sym_let] = ACTIONS(2114), - [anon_sym_loop] = ACTIONS(2114), - [anon_sym_match] = ACTIONS(2114), - [anon_sym_mod] = ACTIONS(2114), - [anon_sym_pub] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2114), - [anon_sym_trait] = ACTIONS(2114), - [anon_sym_type] = ACTIONS(2114), - [anon_sym_union] = ACTIONS(2114), - [anon_sym_unsafe] = ACTIONS(2114), - [anon_sym_use] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(2112), - [anon_sym_DOT_DOT] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_move] = ACTIONS(2114), - [sym_integer_literal] = ACTIONS(2112), - [aux_sym_string_literal_token1] = ACTIONS(2112), - [sym_char_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2114), - [anon_sym_false] = ACTIONS(2114), + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_macro_rules_BANG] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [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_SQUOTE] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_fn] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_impl] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_loop] = ACTIONS(2116), + [anon_sym_match] = ACTIONS(2116), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_trait] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_unsafe] = ACTIONS(2116), + [anon_sym_use] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_POUND] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_DOT_DOT] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_move] = ACTIONS(2116), + [sym_integer_literal] = ACTIONS(2114), + [aux_sym_string_literal_token1] = ACTIONS(2114), + [sym_char_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2116), + [anon_sym_false] = ACTIONS(2116), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2114), - [sym_super] = ACTIONS(2114), - [sym_crate] = ACTIONS(2114), - [sym_metavariable] = ACTIONS(2112), - [sym_raw_string_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_crate] = ACTIONS(2116), + [sym_metavariable] = ACTIONS(2114), + [sym_raw_string_literal] = ACTIONS(2114), + [sym_float_literal] = ACTIONS(2114), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2118), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_macro_rules_BANG] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_u8] = ACTIONS(2118), - [anon_sym_i8] = ACTIONS(2118), - [anon_sym_u16] = ACTIONS(2118), - [anon_sym_i16] = ACTIONS(2118), - [anon_sym_u32] = ACTIONS(2118), - [anon_sym_i32] = ACTIONS(2118), - [anon_sym_u64] = ACTIONS(2118), - [anon_sym_i64] = ACTIONS(2118), - [anon_sym_u128] = ACTIONS(2118), - [anon_sym_i128] = ACTIONS(2118), - [anon_sym_isize] = ACTIONS(2118), - [anon_sym_usize] = ACTIONS(2118), - [anon_sym_f32] = ACTIONS(2118), - [anon_sym_f64] = ACTIONS(2118), - [anon_sym_bool] = ACTIONS(2118), - [anon_sym_str] = ACTIONS(2118), - [anon_sym_char] = ACTIONS(2118), - [anon_sym_SQUOTE] = ACTIONS(2118), - [anon_sym_async] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_default] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [anon_sym_fn] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_impl] = ACTIONS(2118), - [anon_sym_let] = ACTIONS(2118), - [anon_sym_loop] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_mod] = ACTIONS(2118), - [anon_sym_pub] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2118), - [anon_sym_trait] = ACTIONS(2118), - [anon_sym_type] = ACTIONS(2118), - [anon_sym_union] = ACTIONS(2118), - [anon_sym_unsafe] = ACTIONS(2118), - [anon_sym_use] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2116), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_DOT_DOT] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_move] = ACTIONS(2118), - [sym_integer_literal] = ACTIONS(2116), - [aux_sym_string_literal_token1] = ACTIONS(2116), - [sym_char_literal] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_macro_rules_BANG] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_u8] = ACTIONS(2120), + [anon_sym_i8] = ACTIONS(2120), + [anon_sym_u16] = ACTIONS(2120), + [anon_sym_i16] = ACTIONS(2120), + [anon_sym_u32] = ACTIONS(2120), + [anon_sym_i32] = ACTIONS(2120), + [anon_sym_u64] = ACTIONS(2120), + [anon_sym_i64] = ACTIONS(2120), + [anon_sym_u128] = ACTIONS(2120), + [anon_sym_i128] = ACTIONS(2120), + [anon_sym_isize] = ACTIONS(2120), + [anon_sym_usize] = ACTIONS(2120), + [anon_sym_f32] = ACTIONS(2120), + [anon_sym_f64] = ACTIONS(2120), + [anon_sym_bool] = ACTIONS(2120), + [anon_sym_str] = ACTIONS(2120), + [anon_sym_char] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_fn] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_impl] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_loop] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [anon_sym_mod] = ACTIONS(2120), + [anon_sym_pub] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_unsafe] = ACTIONS(2120), + [anon_sym_use] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2118), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_DOT_DOT] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_move] = ACTIONS(2120), + [sym_integer_literal] = ACTIONS(2118), + [aux_sym_string_literal_token1] = ACTIONS(2118), + [sym_char_literal] = ACTIONS(2118), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2118), - [sym_super] = ACTIONS(2118), - [sym_crate] = ACTIONS(2118), - [sym_metavariable] = ACTIONS(2116), - [sym_raw_string_literal] = ACTIONS(2116), - [sym_float_literal] = ACTIONS(2116), + [sym_self] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_crate] = ACTIONS(2120), + [sym_metavariable] = ACTIONS(2118), + [sym_raw_string_literal] = ACTIONS(2118), + [sym_float_literal] = ACTIONS(2118), [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(2120), - [sym_identifier] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_macro_rules_BANG] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_u8] = ACTIONS(2122), - [anon_sym_i8] = ACTIONS(2122), - [anon_sym_u16] = ACTIONS(2122), - [anon_sym_i16] = ACTIONS(2122), - [anon_sym_u32] = ACTIONS(2122), - [anon_sym_i32] = ACTIONS(2122), - [anon_sym_u64] = ACTIONS(2122), - [anon_sym_i64] = ACTIONS(2122), - [anon_sym_u128] = ACTIONS(2122), - [anon_sym_i128] = ACTIONS(2122), - [anon_sym_isize] = ACTIONS(2122), - [anon_sym_usize] = ACTIONS(2122), - [anon_sym_f32] = ACTIONS(2122), - [anon_sym_f64] = ACTIONS(2122), - [anon_sym_bool] = ACTIONS(2122), - [anon_sym_str] = ACTIONS(2122), - [anon_sym_char] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_fn] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_impl] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_loop] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_mod] = ACTIONS(2122), - [anon_sym_pub] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_trait] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_unsafe] = ACTIONS(2122), - [anon_sym_use] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2120), - [anon_sym_BANG] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2120), - [anon_sym_COLON_COLON] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_move] = ACTIONS(2122), - [sym_integer_literal] = ACTIONS(2120), - [aux_sym_string_literal_token1] = ACTIONS(2120), - [sym_char_literal] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_macro_rules_BANG] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_u8] = ACTIONS(2124), + [anon_sym_i8] = ACTIONS(2124), + [anon_sym_u16] = ACTIONS(2124), + [anon_sym_i16] = ACTIONS(2124), + [anon_sym_u32] = ACTIONS(2124), + [anon_sym_i32] = ACTIONS(2124), + [anon_sym_u64] = ACTIONS(2124), + [anon_sym_i64] = ACTIONS(2124), + [anon_sym_u128] = ACTIONS(2124), + [anon_sym_i128] = ACTIONS(2124), + [anon_sym_isize] = ACTIONS(2124), + [anon_sym_usize] = ACTIONS(2124), + [anon_sym_f32] = ACTIONS(2124), + [anon_sym_f64] = ACTIONS(2124), + [anon_sym_bool] = ACTIONS(2124), + [anon_sym_str] = ACTIONS(2124), + [anon_sym_char] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_fn] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_impl] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_loop] = ACTIONS(2124), + [anon_sym_match] = ACTIONS(2124), + [anon_sym_mod] = ACTIONS(2124), + [anon_sym_pub] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_trait] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_unsafe] = ACTIONS(2124), + [anon_sym_use] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_move] = ACTIONS(2124), + [sym_integer_literal] = ACTIONS(2122), + [aux_sym_string_literal_token1] = ACTIONS(2122), + [sym_char_literal] = ACTIONS(2122), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_crate] = ACTIONS(2122), - [sym_metavariable] = ACTIONS(2120), - [sym_raw_string_literal] = ACTIONS(2120), - [sym_float_literal] = ACTIONS(2120), + [sym_self] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_crate] = ACTIONS(2124), + [sym_metavariable] = ACTIONS(2122), + [sym_raw_string_literal] = ACTIONS(2122), + [sym_float_literal] = ACTIONS(2122), [sym_block_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_macro_rules_BANG] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_u8] = ACTIONS(2126), - [anon_sym_i8] = ACTIONS(2126), - [anon_sym_u16] = ACTIONS(2126), - [anon_sym_i16] = ACTIONS(2126), - [anon_sym_u32] = ACTIONS(2126), - [anon_sym_i32] = ACTIONS(2126), - [anon_sym_u64] = ACTIONS(2126), - [anon_sym_i64] = ACTIONS(2126), - [anon_sym_u128] = ACTIONS(2126), - [anon_sym_i128] = ACTIONS(2126), - [anon_sym_isize] = ACTIONS(2126), - [anon_sym_usize] = ACTIONS(2126), - [anon_sym_f32] = ACTIONS(2126), - [anon_sym_f64] = ACTIONS(2126), - [anon_sym_bool] = ACTIONS(2126), - [anon_sym_str] = ACTIONS(2126), - [anon_sym_char] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [anon_sym_fn] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_impl] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_loop] = ACTIONS(2126), - [anon_sym_match] = ACTIONS(2126), - [anon_sym_mod] = ACTIONS(2126), - [anon_sym_pub] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_static] = ACTIONS(2126), - [anon_sym_struct] = ACTIONS(2126), - [anon_sym_trait] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_unsafe] = ACTIONS(2126), - [anon_sym_use] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2124), - [anon_sym_COLON_COLON] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_DOT_DOT] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_move] = ACTIONS(2126), - [sym_integer_literal] = ACTIONS(2124), - [aux_sym_string_literal_token1] = ACTIONS(2124), - [sym_char_literal] = ACTIONS(2124), - [anon_sym_true] = ACTIONS(2126), - [anon_sym_false] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2126), + [sym_identifier] = ACTIONS(2128), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_macro_rules_BANG] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_u8] = ACTIONS(2128), + [anon_sym_i8] = ACTIONS(2128), + [anon_sym_u16] = ACTIONS(2128), + [anon_sym_i16] = ACTIONS(2128), + [anon_sym_u32] = ACTIONS(2128), + [anon_sym_i32] = ACTIONS(2128), + [anon_sym_u64] = ACTIONS(2128), + [anon_sym_i64] = ACTIONS(2128), + [anon_sym_u128] = ACTIONS(2128), + [anon_sym_i128] = ACTIONS(2128), + [anon_sym_isize] = ACTIONS(2128), + [anon_sym_usize] = ACTIONS(2128), + [anon_sym_f32] = ACTIONS(2128), + [anon_sym_f64] = ACTIONS(2128), + [anon_sym_bool] = ACTIONS(2128), + [anon_sym_str] = ACTIONS(2128), + [anon_sym_char] = ACTIONS(2128), + [anon_sym_SQUOTE] = ACTIONS(2128), + [anon_sym_async] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_default] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2128), + [anon_sym_fn] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_impl] = ACTIONS(2128), + [anon_sym_let] = ACTIONS(2128), + [anon_sym_loop] = ACTIONS(2128), + [anon_sym_match] = ACTIONS(2128), + [anon_sym_mod] = ACTIONS(2128), + [anon_sym_pub] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_static] = ACTIONS(2128), + [anon_sym_struct] = ACTIONS(2128), + [anon_sym_trait] = ACTIONS(2128), + [anon_sym_type] = ACTIONS(2128), + [anon_sym_union] = ACTIONS(2128), + [anon_sym_unsafe] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_COLON_COLON] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_DOT_DOT] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_move] = ACTIONS(2128), + [sym_integer_literal] = ACTIONS(2126), + [aux_sym_string_literal_token1] = ACTIONS(2126), + [sym_char_literal] = ACTIONS(2126), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_crate] = ACTIONS(2126), - [sym_metavariable] = ACTIONS(2124), - [sym_raw_string_literal] = ACTIONS(2124), - [sym_float_literal] = ACTIONS(2124), + [sym_self] = ACTIONS(2128), + [sym_super] = ACTIONS(2128), + [sym_crate] = ACTIONS(2128), + [sym_metavariable] = ACTIONS(2126), + [sym_raw_string_literal] = ACTIONS(2126), + [sym_float_literal] = ACTIONS(2126), [sym_block_comment] = ACTIONS(3), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2130), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_macro_rules_BANG] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_u8] = ACTIONS(2130), - [anon_sym_i8] = ACTIONS(2130), - [anon_sym_u16] = ACTIONS(2130), - [anon_sym_i16] = ACTIONS(2130), - [anon_sym_u32] = ACTIONS(2130), - [anon_sym_i32] = ACTIONS(2130), - [anon_sym_u64] = ACTIONS(2130), - [anon_sym_i64] = ACTIONS(2130), - [anon_sym_u128] = ACTIONS(2130), - [anon_sym_i128] = ACTIONS(2130), - [anon_sym_isize] = ACTIONS(2130), - [anon_sym_usize] = ACTIONS(2130), - [anon_sym_f32] = ACTIONS(2130), - [anon_sym_f64] = ACTIONS(2130), - [anon_sym_bool] = ACTIONS(2130), - [anon_sym_str] = ACTIONS(2130), - [anon_sym_char] = ACTIONS(2130), - [anon_sym_SQUOTE] = ACTIONS(2130), - [anon_sym_async] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_default] = ACTIONS(2130), - [anon_sym_enum] = ACTIONS(2130), - [anon_sym_fn] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_impl] = ACTIONS(2130), - [anon_sym_let] = ACTIONS(2130), - [anon_sym_loop] = ACTIONS(2130), - [anon_sym_match] = ACTIONS(2130), - [anon_sym_mod] = ACTIONS(2130), - [anon_sym_pub] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_static] = ACTIONS(2130), - [anon_sym_struct] = ACTIONS(2130), - [anon_sym_trait] = ACTIONS(2130), - [anon_sym_type] = ACTIONS(2130), - [anon_sym_union] = ACTIONS(2130), - [anon_sym_unsafe] = ACTIONS(2130), - [anon_sym_use] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(2128), - [anon_sym_BANG] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2128), - [anon_sym_COLON_COLON] = ACTIONS(2128), - [anon_sym_AMP] = ACTIONS(2128), - [anon_sym_DOT_DOT] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_move] = ACTIONS(2130), - [sym_integer_literal] = ACTIONS(2128), - [aux_sym_string_literal_token1] = ACTIONS(2128), - [sym_char_literal] = ACTIONS(2128), - [anon_sym_true] = ACTIONS(2130), - [anon_sym_false] = ACTIONS(2130), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_macro_rules_BANG] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_STAR] = ACTIONS(2130), + [anon_sym_u8] = ACTIONS(2132), + [anon_sym_i8] = ACTIONS(2132), + [anon_sym_u16] = ACTIONS(2132), + [anon_sym_i16] = ACTIONS(2132), + [anon_sym_u32] = ACTIONS(2132), + [anon_sym_i32] = ACTIONS(2132), + [anon_sym_u64] = ACTIONS(2132), + [anon_sym_i64] = ACTIONS(2132), + [anon_sym_u128] = ACTIONS(2132), + [anon_sym_i128] = ACTIONS(2132), + [anon_sym_isize] = ACTIONS(2132), + [anon_sym_usize] = ACTIONS(2132), + [anon_sym_f32] = ACTIONS(2132), + [anon_sym_f64] = ACTIONS(2132), + [anon_sym_bool] = ACTIONS(2132), + [anon_sym_str] = ACTIONS(2132), + [anon_sym_char] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_async] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_fn] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_impl] = ACTIONS(2132), + [anon_sym_let] = ACTIONS(2132), + [anon_sym_loop] = ACTIONS(2132), + [anon_sym_match] = ACTIONS(2132), + [anon_sym_mod] = ACTIONS(2132), + [anon_sym_pub] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_trait] = ACTIONS(2132), + [anon_sym_type] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_unsafe] = ACTIONS(2132), + [anon_sym_use] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(2130), + [anon_sym_BANG] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(2130), + [anon_sym_AMP] = ACTIONS(2130), + [anon_sym_DOT_DOT] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_move] = ACTIONS(2132), + [sym_integer_literal] = ACTIONS(2130), + [aux_sym_string_literal_token1] = ACTIONS(2130), + [sym_char_literal] = ACTIONS(2130), + [anon_sym_true] = ACTIONS(2132), + [anon_sym_false] = ACTIONS(2132), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2130), - [sym_super] = ACTIONS(2130), - [sym_crate] = ACTIONS(2130), - [sym_metavariable] = ACTIONS(2128), - [sym_raw_string_literal] = ACTIONS(2128), - [sym_float_literal] = ACTIONS(2128), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_crate] = ACTIONS(2132), + [sym_metavariable] = ACTIONS(2130), + [sym_raw_string_literal] = ACTIONS(2130), + [sym_float_literal] = ACTIONS(2130), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(2132), - [sym_identifier] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_macro_rules_BANG] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_u8] = ACTIONS(2134), - [anon_sym_i8] = ACTIONS(2134), - [anon_sym_u16] = ACTIONS(2134), - [anon_sym_i16] = ACTIONS(2134), - [anon_sym_u32] = ACTIONS(2134), - [anon_sym_i32] = ACTIONS(2134), - [anon_sym_u64] = ACTIONS(2134), - [anon_sym_i64] = ACTIONS(2134), - [anon_sym_u128] = ACTIONS(2134), - [anon_sym_i128] = ACTIONS(2134), - [anon_sym_isize] = ACTIONS(2134), - [anon_sym_usize] = ACTIONS(2134), - [anon_sym_f32] = ACTIONS(2134), - [anon_sym_f64] = ACTIONS(2134), - [anon_sym_bool] = ACTIONS(2134), - [anon_sym_str] = ACTIONS(2134), - [anon_sym_char] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2134), - [anon_sym_async] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_fn] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_impl] = ACTIONS(2134), - [anon_sym_let] = ACTIONS(2134), - [anon_sym_loop] = ACTIONS(2134), - [anon_sym_match] = ACTIONS(2134), - [anon_sym_mod] = ACTIONS(2134), - [anon_sym_pub] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_trait] = ACTIONS(2134), - [anon_sym_type] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_unsafe] = ACTIONS(2134), - [anon_sym_use] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(2132), - [anon_sym_BANG] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2132), - [anon_sym_COLON_COLON] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2132), - [anon_sym_DOT_DOT] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_move] = ACTIONS(2134), - [sym_integer_literal] = ACTIONS(2132), - [aux_sym_string_literal_token1] = ACTIONS(2132), - [sym_char_literal] = ACTIONS(2132), - [anon_sym_true] = ACTIONS(2134), - [anon_sym_false] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_macro_rules_BANG] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_u8] = ACTIONS(2136), + [anon_sym_i8] = ACTIONS(2136), + [anon_sym_u16] = ACTIONS(2136), + [anon_sym_i16] = ACTIONS(2136), + [anon_sym_u32] = ACTIONS(2136), + [anon_sym_i32] = ACTIONS(2136), + [anon_sym_u64] = ACTIONS(2136), + [anon_sym_i64] = ACTIONS(2136), + [anon_sym_u128] = ACTIONS(2136), + [anon_sym_i128] = ACTIONS(2136), + [anon_sym_isize] = ACTIONS(2136), + [anon_sym_usize] = ACTIONS(2136), + [anon_sym_f32] = ACTIONS(2136), + [anon_sym_f64] = ACTIONS(2136), + [anon_sym_bool] = ACTIONS(2136), + [anon_sym_str] = ACTIONS(2136), + [anon_sym_char] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_async] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_fn] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_impl] = ACTIONS(2136), + [anon_sym_let] = ACTIONS(2136), + [anon_sym_loop] = ACTIONS(2136), + [anon_sym_match] = ACTIONS(2136), + [anon_sym_mod] = ACTIONS(2136), + [anon_sym_pub] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_trait] = ACTIONS(2136), + [anon_sym_type] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [anon_sym_unsafe] = ACTIONS(2136), + [anon_sym_use] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_DOT_DOT] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_move] = ACTIONS(2136), + [sym_integer_literal] = ACTIONS(2134), + [aux_sym_string_literal_token1] = ACTIONS(2134), + [sym_char_literal] = ACTIONS(2134), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = ACTIONS(2136), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_crate] = ACTIONS(2134), - [sym_metavariable] = ACTIONS(2132), - [sym_raw_string_literal] = ACTIONS(2132), - [sym_float_literal] = ACTIONS(2132), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2136), + [sym_crate] = ACTIONS(2136), + [sym_metavariable] = ACTIONS(2134), + [sym_raw_string_literal] = ACTIONS(2134), + [sym_float_literal] = ACTIONS(2134), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_macro_rules_BANG] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_u8] = ACTIONS(2138), - [anon_sym_i8] = ACTIONS(2138), - [anon_sym_u16] = ACTIONS(2138), - [anon_sym_i16] = ACTIONS(2138), - [anon_sym_u32] = ACTIONS(2138), - [anon_sym_i32] = ACTIONS(2138), - [anon_sym_u64] = ACTIONS(2138), - [anon_sym_i64] = ACTIONS(2138), - [anon_sym_u128] = ACTIONS(2138), - [anon_sym_i128] = ACTIONS(2138), - [anon_sym_isize] = ACTIONS(2138), - [anon_sym_usize] = ACTIONS(2138), - [anon_sym_f32] = ACTIONS(2138), - [anon_sym_f64] = ACTIONS(2138), - [anon_sym_bool] = ACTIONS(2138), - [anon_sym_str] = ACTIONS(2138), - [anon_sym_char] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [anon_sym_fn] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_impl] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_loop] = ACTIONS(2138), - [anon_sym_match] = ACTIONS(2138), - [anon_sym_mod] = ACTIONS(2138), - [anon_sym_pub] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(2138), - [anon_sym_trait] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_union] = ACTIONS(2138), - [anon_sym_unsafe] = ACTIONS(2138), - [anon_sym_use] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2136), - [anon_sym_COLON_COLON] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_DOT_DOT] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_move] = ACTIONS(2138), - [sym_integer_literal] = ACTIONS(2136), - [aux_sym_string_literal_token1] = ACTIONS(2136), - [sym_char_literal] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2138), - [anon_sym_false] = ACTIONS(2138), + [ts_builtin_sym_end] = ACTIONS(2138), + [sym_identifier] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_macro_rules_BANG] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_u8] = ACTIONS(2140), + [anon_sym_i8] = ACTIONS(2140), + [anon_sym_u16] = ACTIONS(2140), + [anon_sym_i16] = ACTIONS(2140), + [anon_sym_u32] = ACTIONS(2140), + [anon_sym_i32] = ACTIONS(2140), + [anon_sym_u64] = ACTIONS(2140), + [anon_sym_i64] = ACTIONS(2140), + [anon_sym_u128] = ACTIONS(2140), + [anon_sym_i128] = ACTIONS(2140), + [anon_sym_isize] = ACTIONS(2140), + [anon_sym_usize] = ACTIONS(2140), + [anon_sym_f32] = ACTIONS(2140), + [anon_sym_f64] = ACTIONS(2140), + [anon_sym_bool] = ACTIONS(2140), + [anon_sym_str] = ACTIONS(2140), + [anon_sym_char] = ACTIONS(2140), + [anon_sym_SQUOTE] = ACTIONS(2140), + [anon_sym_async] = ACTIONS(2140), + [anon_sym_break] = ACTIONS(2140), + [anon_sym_const] = ACTIONS(2140), + [anon_sym_continue] = ACTIONS(2140), + [anon_sym_default] = ACTIONS(2140), + [anon_sym_enum] = ACTIONS(2140), + [anon_sym_fn] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_impl] = ACTIONS(2140), + [anon_sym_let] = ACTIONS(2140), + [anon_sym_loop] = ACTIONS(2140), + [anon_sym_match] = ACTIONS(2140), + [anon_sym_mod] = ACTIONS(2140), + [anon_sym_pub] = ACTIONS(2140), + [anon_sym_return] = ACTIONS(2140), + [anon_sym_static] = ACTIONS(2140), + [anon_sym_struct] = ACTIONS(2140), + [anon_sym_trait] = ACTIONS(2140), + [anon_sym_type] = ACTIONS(2140), + [anon_sym_union] = ACTIONS(2140), + [anon_sym_unsafe] = ACTIONS(2140), + [anon_sym_use] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_DOT_DOT] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_move] = ACTIONS(2140), + [sym_integer_literal] = ACTIONS(2138), + [aux_sym_string_literal_token1] = ACTIONS(2138), + [sym_char_literal] = ACTIONS(2138), + [anon_sym_true] = ACTIONS(2140), + [anon_sym_false] = ACTIONS(2140), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_crate] = ACTIONS(2138), - [sym_metavariable] = ACTIONS(2136), - [sym_raw_string_literal] = ACTIONS(2136), - [sym_float_literal] = ACTIONS(2136), + [sym_self] = ACTIONS(2140), + [sym_super] = ACTIONS(2140), + [sym_crate] = ACTIONS(2140), + [sym_metavariable] = ACTIONS(2138), + [sym_raw_string_literal] = ACTIONS(2138), + [sym_float_literal] = ACTIONS(2138), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_identifier] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_macro_rules_BANG] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_u8] = ACTIONS(2142), - [anon_sym_i8] = ACTIONS(2142), - [anon_sym_u16] = ACTIONS(2142), - [anon_sym_i16] = ACTIONS(2142), - [anon_sym_u32] = ACTIONS(2142), - [anon_sym_i32] = ACTIONS(2142), - [anon_sym_u64] = ACTIONS(2142), - [anon_sym_i64] = ACTIONS(2142), - [anon_sym_u128] = ACTIONS(2142), - [anon_sym_i128] = ACTIONS(2142), - [anon_sym_isize] = ACTIONS(2142), - [anon_sym_usize] = ACTIONS(2142), - [anon_sym_f32] = ACTIONS(2142), - [anon_sym_f64] = ACTIONS(2142), - [anon_sym_bool] = ACTIONS(2142), - [anon_sym_str] = ACTIONS(2142), - [anon_sym_char] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_fn] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_impl] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_loop] = ACTIONS(2142), - [anon_sym_match] = ACTIONS(2142), - [anon_sym_mod] = ACTIONS(2142), - [anon_sym_pub] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_trait] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_unsafe] = ACTIONS(2142), - [anon_sym_use] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_COLON_COLON] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_DOT_DOT] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_move] = ACTIONS(2142), - [sym_integer_literal] = ACTIONS(2140), - [aux_sym_string_literal_token1] = ACTIONS(2140), - [sym_char_literal] = ACTIONS(2140), - [anon_sym_true] = ACTIONS(2142), - [anon_sym_false] = ACTIONS(2142), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_crate] = ACTIONS(2142), - [sym_metavariable] = ACTIONS(2140), - [sym_raw_string_literal] = ACTIONS(2140), - [sym_float_literal] = ACTIONS(2140), - [sym_block_comment] = ACTIONS(3), - }, - [451] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), - [sym_block_comment] = ACTIONS(3), - }, - [452] = { - [sym_token_tree] = STATE(457), - [sym_token_repetition] = STATE(457), - [sym__literal] = STATE(457), - [sym_string_literal] = STATE(457), - [sym_boolean_literal] = STATE(457), - [aux_sym_token_tree_repeat1] = STATE(457), - [sym_identifier] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [anon_sym_fn] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_impl] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_mod] = ACTIONS(2160), - [anon_sym_pub] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2160), - [anon_sym_trait] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_union] = ACTIONS(2160), - [anon_sym_unsafe] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_where] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [sym_mutable_specifier] = ACTIONS(2160), - [sym_integer_literal] = ACTIONS(2164), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_crate] = ACTIONS(2160), - [sym_metavariable] = ACTIONS(2164), - [sym_raw_string_literal] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2164), - [sym_block_comment] = ACTIONS(3), - }, - [453] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), - [sym_block_comment] = ACTIONS(3), - }, - [454] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(2142), [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_macro_rules_BANG] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2142), + [anon_sym_u8] = ACTIONS(2144), + [anon_sym_i8] = ACTIONS(2144), + [anon_sym_u16] = ACTIONS(2144), + [anon_sym_i16] = ACTIONS(2144), + [anon_sym_u32] = ACTIONS(2144), + [anon_sym_i32] = ACTIONS(2144), + [anon_sym_u64] = ACTIONS(2144), + [anon_sym_i64] = ACTIONS(2144), + [anon_sym_u128] = ACTIONS(2144), + [anon_sym_i128] = ACTIONS(2144), + [anon_sym_isize] = ACTIONS(2144), + [anon_sym_usize] = ACTIONS(2144), + [anon_sym_f32] = ACTIONS(2144), + [anon_sym_f64] = ACTIONS(2144), + [anon_sym_bool] = ACTIONS(2144), + [anon_sym_str] = ACTIONS(2144), + [anon_sym_char] = ACTIONS(2144), [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), [anon_sym_break] = ACTIONS(2144), [anon_sym_const] = ACTIONS(2144), [anon_sym_continue] = ACTIONS(2144), @@ -48785,645 +48586,283 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2144), [anon_sym_unsafe] = ACTIONS(2144), [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), - [sym_block_comment] = ACTIONS(3), - }, - [455] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), - [sym_block_comment] = ACTIONS(3), - }, - [456] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_COLON_COLON] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2142), + [anon_sym_DOT_DOT] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_move] = ACTIONS(2144), + [sym_integer_literal] = ACTIONS(2142), + [aux_sym_string_literal_token1] = ACTIONS(2142), + [sym_char_literal] = ACTIONS(2142), + [anon_sym_true] = ACTIONS(2144), + [anon_sym_false] = ACTIONS(2144), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2144), [sym_super] = ACTIONS(2144), [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [sym_metavariable] = ACTIONS(2142), + [sym_raw_string_literal] = ACTIONS(2142), + [sym_float_literal] = ACTIONS(2142), [sym_block_comment] = ACTIONS(3), }, - [457] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [451] = { + [sym_token_tree] = STATE(476), + [sym_token_repetition] = STATE(476), + [sym__literal] = STATE(476), + [sym_string_literal] = STATE(476), + [sym_boolean_literal] = STATE(476), + [aux_sym_token_tree_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_await] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_enum] = ACTIONS(2146), + [anon_sym_fn] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_impl] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_mod] = ACTIONS(2146), + [anon_sym_pub] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_struct] = ACTIONS(2146), + [anon_sym_trait] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_union] = ACTIONS(2146), + [anon_sym_unsafe] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_where] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [sym_mutable_specifier] = ACTIONS(2146), + [sym_integer_literal] = ACTIONS(2160), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2146), + [sym_super] = ACTIONS(2146), + [sym_crate] = ACTIONS(2146), + [sym_metavariable] = ACTIONS(2160), + [sym_raw_string_literal] = ACTIONS(2160), + [sym_float_literal] = ACTIONS(2160), [sym_block_comment] = ACTIONS(3), }, - [458] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), + [452] = { + [sym_attribute_item] = STATE(512), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1761), + [sym_match_arm] = STATE(487), + [sym_last_match_arm] = STATE(2398), + [sym_match_pattern] = STATE(2399), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1692), + [sym_slice_pattern] = STATE(1692), + [sym_tuple_struct_pattern] = STATE(1692), + [sym_struct_pattern] = STATE(1692), + [sym_remaining_field_pattern] = STATE(1692), + [sym_mut_pattern] = STATE(1692), + [sym_range_pattern] = STATE(1692), + [sym_ref_pattern] = STATE(1692), + [sym_captured_pattern] = STATE(1692), + [sym_reference_pattern] = STATE(1692), + [sym_box_pattern] = STATE(1692), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [aux_sym_enum_variant_list_repeat1] = STATE(512), + [aux_sym_match_block_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), - [sym_block_comment] = ACTIONS(3), - }, - [459] = { - [sym_token_tree] = STATE(455), - [sym_token_repetition] = STATE(455), - [sym__literal] = STATE(455), - [sym_string_literal] = STATE(455), - [sym_boolean_literal] = STATE(455), - [aux_sym_token_tree_repeat1] = STATE(455), - [sym_identifier] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_as] = ACTIONS(2172), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_await] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [anon_sym_fn] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_impl] = ACTIONS(2172), - [anon_sym_let] = ACTIONS(2172), - [anon_sym_loop] = ACTIONS(2172), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_mod] = ACTIONS(2172), - [anon_sym_pub] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_trait] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_unsafe] = ACTIONS(2172), - [anon_sym_use] = ACTIONS(2172), - [anon_sym_where] = ACTIONS(2172), - [anon_sym_while] = ACTIONS(2172), - [sym_mutable_specifier] = ACTIONS(2172), - [sym_integer_literal] = ACTIONS(2176), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2172), - [sym_super] = ACTIONS(2172), - [sym_crate] = ACTIONS(2172), - [sym_metavariable] = ACTIONS(2176), - [sym_raw_string_literal] = ACTIONS(2176), - [sym_float_literal] = ACTIONS(2176), - [sym_block_comment] = ACTIONS(3), - }, - [460] = { - [sym_token_tree] = STATE(465), - [sym_token_repetition] = STATE(465), - [sym__literal] = STATE(465), - [sym_string_literal] = STATE(465), - [sym_boolean_literal] = STATE(465), - [aux_sym_token_tree_repeat1] = STATE(465), - [sym_identifier] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2180), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2178), - [anon_sym_SQUOTE] = ACTIONS(2178), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_await] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_impl] = ACTIONS(2178), - [anon_sym_let] = ACTIONS(2178), - [anon_sym_loop] = ACTIONS(2178), - [anon_sym_match] = ACTIONS(2178), - [anon_sym_mod] = ACTIONS(2178), - [anon_sym_pub] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_trait] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_unsafe] = ACTIONS(2178), - [anon_sym_use] = ACTIONS(2178), - [anon_sym_where] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [sym_mutable_specifier] = ACTIONS(2178), - [sym_integer_literal] = ACTIONS(2182), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_crate] = ACTIONS(2178), - [sym_metavariable] = ACTIONS(2182), - [sym_raw_string_literal] = ACTIONS(2182), - [sym_float_literal] = ACTIONS(2182), - [sym_block_comment] = ACTIONS(3), - }, - [461] = { - [sym_token_tree] = STATE(468), - [sym_token_repetition] = STATE(468), - [sym__literal] = STATE(468), - [sym_string_literal] = STATE(468), - [sym_boolean_literal] = STATE(468), - [aux_sym_token_tree_repeat1] = STATE(468), - [sym_identifier] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [anon_sym_fn] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_impl] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_mod] = ACTIONS(2184), - [anon_sym_pub] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_struct] = ACTIONS(2184), - [anon_sym_trait] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_union] = ACTIONS(2184), - [anon_sym_unsafe] = ACTIONS(2184), - [anon_sym_use] = ACTIONS(2184), - [anon_sym_where] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [sym_mutable_specifier] = ACTIONS(2184), - [sym_integer_literal] = ACTIONS(2186), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_crate] = ACTIONS(2184), - [sym_metavariable] = ACTIONS(2186), - [sym_raw_string_literal] = ACTIONS(2186), - [sym_float_literal] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_ref] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), [sym_block_comment] = ACTIONS(3), }, - [462] = { - [sym_token_tree] = STATE(478), - [sym_token_repetition] = STATE(478), - [sym__literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [aux_sym_token_tree_repeat1] = STATE(478), - [sym_identifier] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2188), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_as] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_await] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [anon_sym_fn] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_impl] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_loop] = ACTIONS(2188), - [anon_sym_match] = ACTIONS(2188), - [anon_sym_mod] = ACTIONS(2188), - [anon_sym_pub] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_static] = ACTIONS(2188), - [anon_sym_struct] = ACTIONS(2188), - [anon_sym_trait] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_union] = ACTIONS(2188), - [anon_sym_unsafe] = ACTIONS(2188), - [anon_sym_use] = ACTIONS(2188), - [anon_sym_where] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [sym_mutable_specifier] = ACTIONS(2188), - [sym_integer_literal] = ACTIONS(2190), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2190), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_crate] = ACTIONS(2188), - [sym_metavariable] = ACTIONS(2190), - [sym_raw_string_literal] = ACTIONS(2190), - [sym_float_literal] = ACTIONS(2190), + [453] = { + [sym_attribute_item] = STATE(512), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1761), + [sym_match_arm] = STATE(486), + [sym_last_match_arm] = STATE(2200), + [sym_match_pattern] = STATE(2399), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1692), + [sym_slice_pattern] = STATE(1692), + [sym_tuple_struct_pattern] = STATE(1692), + [sym_struct_pattern] = STATE(1692), + [sym_remaining_field_pattern] = STATE(1692), + [sym_mut_pattern] = STATE(1692), + [sym_range_pattern] = STATE(1692), + [sym_ref_pattern] = STATE(1692), + [sym_captured_pattern] = STATE(1692), + [sym_reference_pattern] = STATE(1692), + [sym_box_pattern] = STATE(1692), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [aux_sym_enum_variant_list_repeat1] = STATE(512), + [aux_sym_match_block_repeat1] = STATE(486), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_ref] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), [sym_block_comment] = ACTIONS(3), }, - [463] = { - [sym_token_tree] = STATE(481), - [sym_token_repetition] = STATE(481), - [sym__literal] = STATE(481), - [sym_string_literal] = STATE(481), - [sym_boolean_literal] = STATE(481), - [aux_sym_token_tree_repeat1] = STATE(481), + [454] = { + [sym_token_tree] = STATE(457), + [sym_token_repetition] = STATE(457), + [sym__literal] = STATE(457), + [sym_string_literal] = STATE(457), + [sym_boolean_literal] = STATE(457), + [aux_sym_token_tree_repeat1] = STATE(457), [sym_identifier] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), [aux_sym__non_special_token_token1] = ACTIONS(2192), [anon_sym_SQUOTE] = ACTIONS(2192), [anon_sym_as] = ACTIONS(2192), @@ -49455,11 +48894,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2192), [sym_mutable_specifier] = ACTIONS(2192), [sym_integer_literal] = ACTIONS(2196), - [aux_sym_string_literal_token1] = ACTIONS(1559), + [aux_sym_string_literal_token1] = ACTIONS(1437), [sym_char_literal] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), [sym_self] = ACTIONS(2192), [sym_super] = ACTIONS(2192), [sym_crate] = ACTIONS(2192), @@ -49468,36 +48907,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2196), [sym_block_comment] = ACTIONS(3), }, - [464] = { - [sym_token_tree] = STATE(456), - [sym_token_repetition] = STATE(456), - [sym__literal] = STATE(456), - [sym_string_literal] = STATE(456), - [sym_boolean_literal] = STATE(456), - [aux_sym_token_tree_repeat1] = STATE(456), + [455] = { + [sym_token_tree] = STATE(459), + [sym_token_repetition] = STATE(459), + [sym__literal] = STATE(459), + [sym_string_literal] = STATE(459), + [sym_boolean_literal] = STATE(459), + [aux_sym_token_tree_repeat1] = STATE(459), [sym_identifier] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), [aux_sym__non_special_token_token1] = ACTIONS(2198), [anon_sym_SQUOTE] = ACTIONS(2198), [anon_sym_as] = ACTIONS(2198), @@ -49529,11 +48968,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2198), [sym_mutable_specifier] = ACTIONS(2198), [sym_integer_literal] = ACTIONS(2200), - [aux_sym_string_literal_token1] = ACTIONS(1559), + [aux_sym_string_literal_token1] = ACTIONS(1437), [sym_char_literal] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), [sym_self] = ACTIONS(2198), [sym_super] = ACTIONS(2198), [sym_crate] = ACTIONS(2198), @@ -49542,303 +48981,377 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2200), [sym_block_comment] = ACTIONS(3), }, - [465] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2202), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [456] = { + [sym_token_tree] = STATE(460), + [sym_token_repetition] = STATE(460), + [sym__literal] = STATE(460), + [sym_string_literal] = STATE(460), + [sym_boolean_literal] = STATE(460), + [aux_sym_token_tree_repeat1] = STATE(460), + [sym_identifier] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2202), + [anon_sym_SQUOTE] = ACTIONS(2202), + [anon_sym_as] = ACTIONS(2202), + [anon_sym_async] = ACTIONS(2202), + [anon_sym_await] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_fn] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_impl] = ACTIONS(2202), + [anon_sym_let] = ACTIONS(2202), + [anon_sym_loop] = ACTIONS(2202), + [anon_sym_match] = ACTIONS(2202), + [anon_sym_mod] = ACTIONS(2202), + [anon_sym_pub] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_trait] = ACTIONS(2202), + [anon_sym_type] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_unsafe] = ACTIONS(2202), + [anon_sym_use] = ACTIONS(2202), + [anon_sym_where] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [sym_mutable_specifier] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2204), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2204), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2202), + [sym_super] = ACTIONS(2202), + [sym_crate] = ACTIONS(2202), + [sym_metavariable] = ACTIONS(2204), + [sym_raw_string_literal] = ACTIONS(2204), + [sym_float_literal] = ACTIONS(2204), [sym_block_comment] = ACTIONS(3), }, - [466] = { - [sym_token_tree] = STATE(471), - [sym_token_repetition] = STATE(471), - [sym__literal] = STATE(471), - [sym_string_literal] = STATE(471), - [sym_boolean_literal] = STATE(471), - [aux_sym_token_tree_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [anon_sym_fn] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_impl] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_loop] = ACTIONS(2204), - [anon_sym_match] = ACTIONS(2204), - [anon_sym_mod] = ACTIONS(2204), - [anon_sym_pub] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2204), - [anon_sym_trait] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_union] = ACTIONS(2204), - [anon_sym_unsafe] = ACTIONS(2204), - [anon_sym_use] = ACTIONS(2204), - [anon_sym_where] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [sym_mutable_specifier] = ACTIONS(2204), - [sym_integer_literal] = ACTIONS(2208), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2208), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_crate] = ACTIONS(2204), - [sym_metavariable] = ACTIONS(2208), - [sym_raw_string_literal] = ACTIONS(2208), - [sym_float_literal] = ACTIONS(2208), + [457] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, - [467] = { - [sym_token_tree] = STATE(472), - [sym_token_repetition] = STATE(472), - [sym__literal] = STATE(472), - [sym_string_literal] = STATE(472), - [sym_boolean_literal] = STATE(472), - [aux_sym_token_tree_repeat1] = STATE(472), - [sym_identifier] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(2210), - [anon_sym_as] = ACTIONS(2210), - [anon_sym_async] = ACTIONS(2210), - [anon_sym_await] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_const] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_default] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_impl] = ACTIONS(2210), - [anon_sym_let] = ACTIONS(2210), - [anon_sym_loop] = ACTIONS(2210), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_mod] = ACTIONS(2210), - [anon_sym_pub] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_static] = ACTIONS(2210), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_trait] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_use] = ACTIONS(2210), - [anon_sym_where] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2210), - [sym_mutable_specifier] = ACTIONS(2210), - [sym_integer_literal] = ACTIONS(2212), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2212), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2210), - [sym_super] = ACTIONS(2210), - [sym_crate] = ACTIONS(2210), - [sym_metavariable] = ACTIONS(2212), - [sym_raw_string_literal] = ACTIONS(2212), - [sym_float_literal] = ACTIONS(2212), + [458] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2212), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, - [468] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [459] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, - [469] = { + [460] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2208), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), + [sym_block_comment] = ACTIONS(3), + }, + [461] = { [sym_token_tree] = STATE(458), [sym_token_repetition] = STATE(458), [sym__literal] = STATE(458), @@ -49846,28 +49359,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_literal] = STATE(458), [aux_sym_token_tree_repeat1] = STATE(458), [sym_identifier] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), [aux_sym__non_special_token_token1] = ACTIONS(2214), [anon_sym_SQUOTE] = ACTIONS(2214), [anon_sym_as] = ACTIONS(2214), @@ -49898,4260 +49411,5342 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2214), [anon_sym_while] = ACTIONS(2214), [sym_mutable_specifier] = ACTIONS(2214), - [sym_integer_literal] = ACTIONS(2216), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2216), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), + [sym_integer_literal] = ACTIONS(2218), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), [sym_self] = ACTIONS(2214), [sym_super] = ACTIONS(2214), [sym_crate] = ACTIONS(2214), - [sym_metavariable] = ACTIONS(2216), - [sym_raw_string_literal] = ACTIONS(2216), - [sym_float_literal] = ACTIONS(2216), + [sym_metavariable] = ACTIONS(2218), + [sym_raw_string_literal] = ACTIONS(2218), + [sym_float_literal] = ACTIONS(2218), [sym_block_comment] = ACTIONS(3), }, - [470] = { - [sym_token_tree] = STATE(451), - [sym_token_repetition] = STATE(451), - [sym__literal] = STATE(451), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [aux_sym_token_tree_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(2218), - [anon_sym_as] = ACTIONS(2218), - [anon_sym_async] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [anon_sym_default] = ACTIONS(2218), - [anon_sym_enum] = ACTIONS(2218), - [anon_sym_fn] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_impl] = ACTIONS(2218), - [anon_sym_let] = ACTIONS(2218), - [anon_sym_loop] = ACTIONS(2218), - [anon_sym_match] = ACTIONS(2218), - [anon_sym_mod] = ACTIONS(2218), - [anon_sym_pub] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_static] = ACTIONS(2218), - [anon_sym_struct] = ACTIONS(2218), - [anon_sym_trait] = ACTIONS(2218), - [anon_sym_type] = ACTIONS(2218), - [anon_sym_union] = ACTIONS(2218), - [anon_sym_unsafe] = ACTIONS(2218), - [anon_sym_use] = ACTIONS(2218), - [anon_sym_where] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [sym_mutable_specifier] = ACTIONS(2218), - [sym_integer_literal] = ACTIONS(2220), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2218), - [sym_super] = ACTIONS(2218), - [sym_crate] = ACTIONS(2218), - [sym_metavariable] = ACTIONS(2220), - [sym_raw_string_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), + [462] = { + [sym_token_tree] = STATE(465), + [sym_token_repetition] = STATE(465), + [sym__literal] = STATE(465), + [sym_string_literal] = STATE(465), + [sym_boolean_literal] = STATE(465), + [aux_sym_token_tree_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_as] = ACTIONS(2220), + [anon_sym_async] = ACTIONS(2220), + [anon_sym_await] = ACTIONS(2220), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [anon_sym_default] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [anon_sym_fn] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2220), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_impl] = ACTIONS(2220), + [anon_sym_let] = ACTIONS(2220), + [anon_sym_loop] = ACTIONS(2220), + [anon_sym_match] = ACTIONS(2220), + [anon_sym_mod] = ACTIONS(2220), + [anon_sym_pub] = ACTIONS(2220), + [anon_sym_return] = ACTIONS(2220), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_trait] = ACTIONS(2220), + [anon_sym_type] = ACTIONS(2220), + [anon_sym_union] = ACTIONS(2220), + [anon_sym_unsafe] = ACTIONS(2220), + [anon_sym_use] = ACTIONS(2220), + [anon_sym_where] = ACTIONS(2220), + [anon_sym_while] = ACTIONS(2220), + [sym_mutable_specifier] = ACTIONS(2220), + [sym_integer_literal] = ACTIONS(2222), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2220), + [sym_super] = ACTIONS(2220), + [sym_crate] = ACTIONS(2220), + [sym_metavariable] = ACTIONS(2222), + [sym_raw_string_literal] = ACTIONS(2222), + [sym_float_literal] = ACTIONS(2222), [sym_block_comment] = ACTIONS(3), }, - [471] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [463] = { + [sym_token_tree] = STATE(466), + [sym_token_repetition] = STATE(466), + [sym__literal] = STATE(466), + [sym_string_literal] = STATE(466), + [sym_boolean_literal] = STATE(466), + [aux_sym_token_tree_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_async] = ACTIONS(2224), + [anon_sym_await] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2224), + [anon_sym_enum] = ACTIONS(2224), + [anon_sym_fn] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_impl] = ACTIONS(2224), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_loop] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_mod] = ACTIONS(2224), + [anon_sym_pub] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_static] = ACTIONS(2224), + [anon_sym_struct] = ACTIONS(2224), + [anon_sym_trait] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2224), + [anon_sym_union] = ACTIONS(2224), + [anon_sym_unsafe] = ACTIONS(2224), + [anon_sym_use] = ACTIONS(2224), + [anon_sym_where] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2224), + [sym_mutable_specifier] = ACTIONS(2224), + [sym_integer_literal] = ACTIONS(2226), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2226), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2224), + [sym_super] = ACTIONS(2224), + [sym_crate] = ACTIONS(2224), + [sym_metavariable] = ACTIONS(2226), + [sym_raw_string_literal] = ACTIONS(2226), + [sym_float_literal] = ACTIONS(2226), [sym_block_comment] = ACTIONS(3), }, - [472] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [464] = { + [sym_token_tree] = STATE(477), + [sym_token_repetition] = STATE(477), + [sym__literal] = STATE(477), + [sym_string_literal] = STATE(477), + [sym_boolean_literal] = STATE(477), + [aux_sym_token_tree_repeat1] = STATE(477), + [sym_identifier] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(2228), + [anon_sym_async] = ACTIONS(2228), + [anon_sym_await] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2228), + [anon_sym_enum] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_impl] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_loop] = ACTIONS(2228), + [anon_sym_match] = ACTIONS(2228), + [anon_sym_mod] = ACTIONS(2228), + [anon_sym_pub] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_trait] = ACTIONS(2228), + [anon_sym_type] = ACTIONS(2228), + [anon_sym_union] = ACTIONS(2228), + [anon_sym_unsafe] = ACTIONS(2228), + [anon_sym_use] = ACTIONS(2228), + [anon_sym_where] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [sym_mutable_specifier] = ACTIONS(2228), + [sym_integer_literal] = ACTIONS(2230), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2228), + [sym_super] = ACTIONS(2228), + [sym_crate] = ACTIONS(2228), + [sym_metavariable] = ACTIONS(2230), + [sym_raw_string_literal] = ACTIONS(2230), + [sym_float_literal] = ACTIONS(2230), [sym_block_comment] = ACTIONS(3), }, - [473] = { - [sym_token_tree] = STATE(453), - [sym_token_repetition] = STATE(453), - [sym__literal] = STATE(453), - [sym_string_literal] = STATE(453), - [sym_boolean_literal] = STATE(453), - [aux_sym_token_tree_repeat1] = STATE(453), - [sym_identifier] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2222), - [anon_sym_as] = ACTIONS(2222), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_default] = ACTIONS(2222), - [anon_sym_enum] = ACTIONS(2222), - [anon_sym_fn] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_impl] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_loop] = ACTIONS(2222), - [anon_sym_match] = ACTIONS(2222), - [anon_sym_mod] = ACTIONS(2222), - [anon_sym_pub] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_static] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2222), - [anon_sym_trait] = ACTIONS(2222), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_union] = ACTIONS(2222), - [anon_sym_unsafe] = ACTIONS(2222), - [anon_sym_use] = ACTIONS(2222), - [anon_sym_where] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [sym_mutable_specifier] = ACTIONS(2222), - [sym_integer_literal] = ACTIONS(2224), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2224), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2222), - [sym_super] = ACTIONS(2222), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - [sym_raw_string_literal] = ACTIONS(2224), - [sym_float_literal] = ACTIONS(2224), + [465] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, - [474] = { - [sym_token_tree] = STATE(454), - [sym_token_repetition] = STATE(454), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(454), - [sym_boolean_literal] = STATE(454), - [aux_sym_token_tree_repeat1] = STATE(454), - [sym_identifier] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2174), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2226), - [anon_sym_SQUOTE] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2226), - [anon_sym_async] = ACTIONS(2226), - [anon_sym_await] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_default] = ACTIONS(2226), - [anon_sym_enum] = ACTIONS(2226), - [anon_sym_fn] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_impl] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_loop] = ACTIONS(2226), - [anon_sym_match] = ACTIONS(2226), - [anon_sym_mod] = ACTIONS(2226), - [anon_sym_pub] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_static] = ACTIONS(2226), - [anon_sym_struct] = ACTIONS(2226), - [anon_sym_trait] = ACTIONS(2226), - [anon_sym_type] = ACTIONS(2226), - [anon_sym_union] = ACTIONS(2226), - [anon_sym_unsafe] = ACTIONS(2226), - [anon_sym_use] = ACTIONS(2226), - [anon_sym_where] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [sym_mutable_specifier] = ACTIONS(2226), - [sym_integer_literal] = ACTIONS(2228), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2228), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2226), - [sym_super] = ACTIONS(2226), - [sym_crate] = ACTIONS(2226), - [sym_metavariable] = ACTIONS(2228), - [sym_raw_string_literal] = ACTIONS(2228), - [sym_float_literal] = ACTIONS(2228), + [466] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, - [475] = { + [467] = { + [sym_token_tree] = STATE(470), + [sym_token_repetition] = STATE(470), + [sym__literal] = STATE(470), + [sym_string_literal] = STATE(470), + [sym_boolean_literal] = STATE(470), + [aux_sym_token_tree_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2232), + [anon_sym_SQUOTE] = ACTIONS(2232), + [anon_sym_as] = ACTIONS(2232), + [anon_sym_async] = ACTIONS(2232), + [anon_sym_await] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), + [anon_sym_fn] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_impl] = ACTIONS(2232), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_loop] = ACTIONS(2232), + [anon_sym_match] = ACTIONS(2232), + [anon_sym_mod] = ACTIONS(2232), + [anon_sym_pub] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_struct] = ACTIONS(2232), + [anon_sym_trait] = ACTIONS(2232), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_union] = ACTIONS(2232), + [anon_sym_unsafe] = ACTIONS(2232), + [anon_sym_use] = ACTIONS(2232), + [anon_sym_where] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [sym_mutable_specifier] = ACTIONS(2232), + [sym_integer_literal] = ACTIONS(2236), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2232), + [sym_super] = ACTIONS(2232), + [sym_crate] = ACTIONS(2232), + [sym_metavariable] = ACTIONS(2236), + [sym_raw_string_literal] = ACTIONS(2236), + [sym_float_literal] = ACTIONS(2236), + [sym_block_comment] = ACTIONS(3), + }, + [468] = { + [sym_token_tree] = STATE(471), + [sym_token_repetition] = STATE(471), + [sym__literal] = STATE(471), + [sym_string_literal] = STATE(471), + [sym_boolean_literal] = STATE(471), + [aux_sym_token_tree_repeat1] = STATE(471), + [sym_identifier] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_as] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_await] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_fn] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_impl] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_loop] = ACTIONS(2238), + [anon_sym_match] = ACTIONS(2238), + [anon_sym_mod] = ACTIONS(2238), + [anon_sym_pub] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(2238), + [anon_sym_trait] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_union] = ACTIONS(2238), + [anon_sym_unsafe] = ACTIONS(2238), + [anon_sym_use] = ACTIONS(2238), + [anon_sym_where] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [sym_mutable_specifier] = ACTIONS(2238), + [sym_integer_literal] = ACTIONS(2240), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_crate] = ACTIONS(2238), + [sym_metavariable] = ACTIONS(2240), + [sym_raw_string_literal] = ACTIONS(2240), + [sym_float_literal] = ACTIONS(2240), + [sym_block_comment] = ACTIONS(3), + }, + [469] = { [sym_token_tree] = STATE(479), [sym_token_repetition] = STATE(479), [sym__literal] = STATE(479), [sym_string_literal] = STATE(479), [sym_boolean_literal] = STATE(479), [aux_sym_token_tree_repeat1] = STATE(479), - [sym_identifier] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_await] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_impl] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_mod] = ACTIONS(2230), - [anon_sym_pub] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_trait] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_where] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [sym_mutable_specifier] = ACTIONS(2230), - [sym_integer_literal] = ACTIONS(2234), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_crate] = ACTIONS(2230), - [sym_metavariable] = ACTIONS(2234), - [sym_raw_string_literal] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), + [sym_identifier] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2150), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_as] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [anon_sym_fn] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_impl] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_loop] = ACTIONS(2242), + [anon_sym_match] = ACTIONS(2242), + [anon_sym_mod] = ACTIONS(2242), + [anon_sym_pub] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_struct] = ACTIONS(2242), + [anon_sym_trait] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_union] = ACTIONS(2242), + [anon_sym_unsafe] = ACTIONS(2242), + [anon_sym_use] = ACTIONS(2242), + [anon_sym_where] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [sym_mutable_specifier] = ACTIONS(2242), + [sym_integer_literal] = ACTIONS(2244), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2244), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_crate] = ACTIONS(2242), + [sym_metavariable] = ACTIONS(2244), + [sym_raw_string_literal] = ACTIONS(2244), + [sym_float_literal] = ACTIONS(2244), + [sym_block_comment] = ACTIONS(3), + }, + [470] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), + [sym_block_comment] = ACTIONS(3), + }, + [471] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), + [sym_block_comment] = ACTIONS(3), + }, + [472] = { + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), + [sym_block_comment] = ACTIONS(3), + }, + [473] = { + [sym_token_tree] = STATE(483), + [sym_token_repetition] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(483), + [sym_boolean_literal] = STATE(483), + [aux_sym_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2248), + [anon_sym_SQUOTE] = ACTIONS(2248), + [anon_sym_as] = ACTIONS(2248), + [anon_sym_async] = ACTIONS(2248), + [anon_sym_await] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_default] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_fn] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_impl] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_loop] = ACTIONS(2248), + [anon_sym_match] = ACTIONS(2248), + [anon_sym_mod] = ACTIONS(2248), + [anon_sym_pub] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2248), + [anon_sym_trait] = ACTIONS(2248), + [anon_sym_type] = ACTIONS(2248), + [anon_sym_union] = ACTIONS(2248), + [anon_sym_unsafe] = ACTIONS(2248), + [anon_sym_use] = ACTIONS(2248), + [anon_sym_where] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [sym_mutable_specifier] = ACTIONS(2248), + [sym_integer_literal] = ACTIONS(2252), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2252), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2248), + [sym_super] = ACTIONS(2248), + [sym_crate] = ACTIONS(2248), + [sym_metavariable] = ACTIONS(2252), + [sym_raw_string_literal] = ACTIONS(2252), + [sym_float_literal] = ACTIONS(2252), + [sym_block_comment] = ACTIONS(3), + }, + [474] = { + [sym_attribute_item] = STATE(512), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1761), + [sym_match_arm] = STATE(488), + [sym_last_match_arm] = STATE(2378), + [sym_match_pattern] = STATE(2399), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1692), + [sym_slice_pattern] = STATE(1692), + [sym_tuple_struct_pattern] = STATE(1692), + [sym_struct_pattern] = STATE(1692), + [sym_remaining_field_pattern] = STATE(1692), + [sym_mut_pattern] = STATE(1692), + [sym_range_pattern] = STATE(1692), + [sym_ref_pattern] = STATE(1692), + [sym_captured_pattern] = STATE(1692), + [sym_reference_pattern] = STATE(1692), + [sym_box_pattern] = STATE(1692), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [aux_sym_enum_variant_list_repeat1] = STATE(512), + [aux_sym_match_block_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_ref] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), + [sym_block_comment] = ACTIONS(3), + }, + [475] = { + [sym_token_tree] = STATE(472), + [sym_token_repetition] = STATE(472), + [sym__literal] = STATE(472), + [sym_string_literal] = STATE(472), + [sym_boolean_literal] = STATE(472), + [aux_sym_token_tree_repeat1] = STATE(472), + [sym_identifier] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2256), + [anon_sym_SQUOTE] = ACTIONS(2256), + [anon_sym_as] = ACTIONS(2256), + [anon_sym_async] = ACTIONS(2256), + [anon_sym_await] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_fn] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_impl] = ACTIONS(2256), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_loop] = ACTIONS(2256), + [anon_sym_match] = ACTIONS(2256), + [anon_sym_mod] = ACTIONS(2256), + [anon_sym_pub] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_trait] = ACTIONS(2256), + [anon_sym_type] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [anon_sym_unsafe] = ACTIONS(2256), + [anon_sym_use] = ACTIONS(2256), + [anon_sym_where] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [sym_mutable_specifier] = ACTIONS(2256), + [sym_integer_literal] = ACTIONS(2258), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2258), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2256), + [sym_super] = ACTIONS(2256), + [sym_crate] = ACTIONS(2256), + [sym_metavariable] = ACTIONS(2258), + [sym_raw_string_literal] = ACTIONS(2258), + [sym_float_literal] = ACTIONS(2258), [sym_block_comment] = ACTIONS(3), }, [476] = { - [sym_token_tree] = STATE(480), - [sym_token_repetition] = STATE(480), - [sym__literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [aux_sym_token_tree_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(2236), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2236), - [anon_sym_SQUOTE] = ACTIONS(2236), - [anon_sym_as] = ACTIONS(2236), - [anon_sym_async] = ACTIONS(2236), - [anon_sym_await] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_const] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2236), - [anon_sym_enum] = ACTIONS(2236), - [anon_sym_fn] = ACTIONS(2236), - [anon_sym_for] = ACTIONS(2236), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_impl] = ACTIONS(2236), - [anon_sym_let] = ACTIONS(2236), - [anon_sym_loop] = ACTIONS(2236), - [anon_sym_match] = ACTIONS(2236), - [anon_sym_mod] = ACTIONS(2236), - [anon_sym_pub] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_struct] = ACTIONS(2236), - [anon_sym_trait] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_union] = ACTIONS(2236), - [anon_sym_unsafe] = ACTIONS(2236), - [anon_sym_use] = ACTIONS(2236), - [anon_sym_where] = ACTIONS(2236), - [anon_sym_while] = ACTIONS(2236), - [sym_mutable_specifier] = ACTIONS(2236), - [sym_integer_literal] = ACTIONS(2238), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2236), - [sym_super] = ACTIONS(2236), - [sym_crate] = ACTIONS(2236), - [sym_metavariable] = ACTIONS(2238), - [sym_raw_string_literal] = ACTIONS(2238), - [sym_float_literal] = ACTIONS(2238), + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, [477] = { - [sym_token_tree] = STATE(482), - [sym_token_repetition] = STATE(482), - [sym__literal] = STATE(482), - [sym_string_literal] = STATE(482), - [sym_boolean_literal] = STATE(482), - [aux_sym_token_tree_repeat1] = STATE(482), - [sym_identifier] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2240), - [anon_sym_as] = ACTIONS(2240), - [anon_sym_async] = ACTIONS(2240), - [anon_sym_await] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_const] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2240), - [anon_sym_enum] = ACTIONS(2240), - [anon_sym_fn] = ACTIONS(2240), - [anon_sym_for] = ACTIONS(2240), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_impl] = ACTIONS(2240), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_loop] = ACTIONS(2240), - [anon_sym_match] = ACTIONS(2240), - [anon_sym_mod] = ACTIONS(2240), - [anon_sym_pub] = ACTIONS(2240), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_struct] = ACTIONS(2240), - [anon_sym_trait] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_union] = ACTIONS(2240), - [anon_sym_unsafe] = ACTIONS(2240), - [anon_sym_use] = ACTIONS(2240), - [anon_sym_where] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2240), - [sym_mutable_specifier] = ACTIONS(2240), - [sym_integer_literal] = ACTIONS(2242), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2240), - [sym_super] = ACTIONS(2240), - [sym_crate] = ACTIONS(2240), - [sym_metavariable] = ACTIONS(2242), - [sym_raw_string_literal] = ACTIONS(2242), - [sym_float_literal] = ACTIONS(2242), + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, [478] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, [479] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2244), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2260), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, [480] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [sym_token_tree] = STATE(484), + [sym_token_repetition] = STATE(484), + [sym__literal] = STATE(484), + [sym_string_literal] = STATE(484), + [sym_boolean_literal] = STATE(484), + [aux_sym_token_tree_repeat1] = STATE(484), + [sym_identifier] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_as] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_fn] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_impl] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_loop] = ACTIONS(2264), + [anon_sym_match] = ACTIONS(2264), + [anon_sym_mod] = ACTIONS(2264), + [anon_sym_pub] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_trait] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(2264), + [anon_sym_use] = ACTIONS(2264), + [anon_sym_where] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [sym_mutable_specifier] = ACTIONS(2264), + [sym_integer_literal] = ACTIONS(2266), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2266), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_crate] = ACTIONS(2264), + [sym_metavariable] = ACTIONS(2266), + [sym_raw_string_literal] = ACTIONS(2266), + [sym_float_literal] = ACTIONS(2266), [sym_block_comment] = ACTIONS(3), }, [481] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, [482] = { - [sym_token_tree] = STATE(342), - [sym_token_repetition] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(342), - [sym_boolean_literal] = STATE(342), - [aux_sym_token_tree_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2244), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_u8] = ACTIONS(2156), - [anon_sym_i8] = ACTIONS(2156), - [anon_sym_u16] = ACTIONS(2156), - [anon_sym_i16] = ACTIONS(2156), - [anon_sym_u32] = ACTIONS(2156), - [anon_sym_i32] = ACTIONS(2156), - [anon_sym_u64] = ACTIONS(2156), - [anon_sym_i64] = ACTIONS(2156), - [anon_sym_u128] = ACTIONS(2156), - [anon_sym_i128] = ACTIONS(2156), - [anon_sym_isize] = ACTIONS(2156), - [anon_sym_usize] = ACTIONS(2156), - [anon_sym_f32] = ACTIONS(2156), - [anon_sym_f64] = ACTIONS(2156), - [anon_sym_bool] = ACTIONS(2156), - [anon_sym_str] = ACTIONS(2156), - [anon_sym_char] = ACTIONS(2156), - [aux_sym__non_special_token_token1] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_impl] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_mod] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_trait] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_where] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [sym_mutable_specifier] = ACTIONS(2144), - [sym_integer_literal] = ACTIONS(2158), - [aux_sym_string_literal_token1] = ACTIONS(1559), - [sym_char_literal] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2144), - [sym_super] = ACTIONS(2144), - [sym_crate] = ACTIONS(2144), - [sym_metavariable] = ACTIONS(2158), - [sym_raw_string_literal] = ACTIONS(2158), - [sym_float_literal] = ACTIONS(2158), + [sym_token_tree] = STATE(481), + [sym_token_repetition] = STATE(481), + [sym__literal] = STATE(481), + [sym_string_literal] = STATE(481), + [sym_boolean_literal] = STATE(481), + [aux_sym_token_tree_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_async] = ACTIONS(2270), + [anon_sym_await] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2270), + [anon_sym_enum] = ACTIONS(2270), + [anon_sym_fn] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_impl] = ACTIONS(2270), + [anon_sym_let] = ACTIONS(2270), + [anon_sym_loop] = ACTIONS(2270), + [anon_sym_match] = ACTIONS(2270), + [anon_sym_mod] = ACTIONS(2270), + [anon_sym_pub] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_struct] = ACTIONS(2270), + [anon_sym_trait] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2270), + [anon_sym_union] = ACTIONS(2270), + [anon_sym_unsafe] = ACTIONS(2270), + [anon_sym_use] = ACTIONS(2270), + [anon_sym_where] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [sym_mutable_specifier] = ACTIONS(2270), + [sym_integer_literal] = ACTIONS(2272), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2272), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2270), + [sym_super] = ACTIONS(2270), + [sym_crate] = ACTIONS(2270), + [sym_metavariable] = ACTIONS(2272), + [sym_raw_string_literal] = ACTIONS(2272), + [sym_float_literal] = ACTIONS(2272), [sym_block_comment] = ACTIONS(3), }, [483] = { - [sym_attribute_item] = STATE(523), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_macro_invocation] = STATE(2184), - [sym_scoped_identifier] = STATE(1439), - [sym_scoped_type_identifier] = STATE(1750), - [sym_match_arm] = STATE(494), - [sym_last_match_arm] = STATE(2407), - [sym_match_pattern] = STATE(2168), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1664), - [sym_slice_pattern] = STATE(1664), - [sym_tuple_struct_pattern] = STATE(1664), - [sym_struct_pattern] = STATE(1664), - [sym_remaining_field_pattern] = STATE(1664), - [sym_mut_pattern] = STATE(1664), - [sym_range_pattern] = STATE(1664), - [sym_ref_pattern] = STATE(1664), - [sym_captured_pattern] = STATE(1664), - [sym_reference_pattern] = STATE(1664), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [aux_sym_enum_variant_list_repeat1] = STATE(523), - [aux_sym_match_block_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(405), - [anon_sym_ref] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2262), - [sym_mutable_specifier] = ACTIONS(2264), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2270), - [sym_raw_string_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, [484] = { - [sym_attribute_item] = STATE(498), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(546), - [sym__type] = STATE(1655), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1655), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1655), - [sym_tuple_type] = STATE(1655), - [sym_unit_type] = STATE(1655), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1655), - [sym_reference_type] = STATE(1655), - [sym_pointer_type] = STATE(1655), - [sym_empty_type] = STATE(1655), - [sym_abstract_type] = STATE(1655), - [sym_dynamic_type] = STATE(1655), - [sym_macro_invocation] = STATE(1655), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(498), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_token_tree] = STATE(325), + [sym_token_repetition] = STATE(325), + [sym__literal] = STATE(325), + [sym_string_literal] = STATE(325), + [sym_boolean_literal] = STATE(325), + [aux_sym_token_tree_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_await] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_where] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [sym_mutable_specifier] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2210), + [sym_raw_string_literal] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), [sym_block_comment] = ACTIONS(3), }, [485] = { - [sym_attribute_item] = STATE(523), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_macro_invocation] = STATE(2184), - [sym_scoped_identifier] = STATE(1439), - [sym_scoped_type_identifier] = STATE(1750), - [sym_match_arm] = STATE(487), - [sym_last_match_arm] = STATE(2205), - [sym_match_pattern] = STATE(2168), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1664), - [sym_slice_pattern] = STATE(1664), - [sym_tuple_struct_pattern] = STATE(1664), - [sym_struct_pattern] = STATE(1664), - [sym_remaining_field_pattern] = STATE(1664), - [sym_mut_pattern] = STATE(1664), - [sym_range_pattern] = STATE(1664), - [sym_ref_pattern] = STATE(1664), - [sym_captured_pattern] = STATE(1664), - [sym_reference_pattern] = STATE(1664), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [aux_sym_enum_variant_list_repeat1] = STATE(523), - [aux_sym_match_block_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(405), - [anon_sym_ref] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2262), - [sym_mutable_specifier] = ACTIONS(2264), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2270), - [sym_raw_string_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [sym_token_tree] = STATE(478), + [sym_token_repetition] = STATE(478), + [sym__literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [aux_sym_token_tree_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [aux_sym__non_special_token_token1] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_as] = ACTIONS(2274), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_await] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_default] = ACTIONS(2274), + [anon_sym_enum] = ACTIONS(2274), + [anon_sym_fn] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_impl] = ACTIONS(2274), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_loop] = ACTIONS(2274), + [anon_sym_match] = ACTIONS(2274), + [anon_sym_mod] = ACTIONS(2274), + [anon_sym_pub] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_struct] = ACTIONS(2274), + [anon_sym_trait] = ACTIONS(2274), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_union] = ACTIONS(2274), + [anon_sym_unsafe] = ACTIONS(2274), + [anon_sym_use] = ACTIONS(2274), + [anon_sym_where] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [sym_mutable_specifier] = ACTIONS(2274), + [sym_integer_literal] = ACTIONS(2278), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(2278), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2274), + [sym_super] = ACTIONS(2274), + [sym_crate] = ACTIONS(2274), + [sym_metavariable] = ACTIONS(2278), + [sym_raw_string_literal] = ACTIONS(2278), + [sym_float_literal] = ACTIONS(2278), [sym_block_comment] = ACTIONS(3), }, [486] = { - [sym_attribute_item] = STATE(523), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_macro_invocation] = STATE(2184), - [sym_scoped_identifier] = STATE(1439), - [sym_scoped_type_identifier] = STATE(1750), - [sym_match_arm] = STATE(496), - [sym_last_match_arm] = STATE(2288), - [sym_match_pattern] = STATE(2168), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1664), - [sym_slice_pattern] = STATE(1664), - [sym_tuple_struct_pattern] = STATE(1664), - [sym_struct_pattern] = STATE(1664), - [sym_remaining_field_pattern] = STATE(1664), - [sym_mut_pattern] = STATE(1664), - [sym_range_pattern] = STATE(1664), - [sym_ref_pattern] = STATE(1664), - [sym_captured_pattern] = STATE(1664), - [sym_reference_pattern] = STATE(1664), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [aux_sym_enum_variant_list_repeat1] = STATE(523), - [aux_sym_match_block_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), + [sym_attribute_item] = STATE(512), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1761), + [sym_match_arm] = STATE(490), + [sym_last_match_arm] = STATE(2291), + [sym_match_pattern] = STATE(2399), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1692), + [sym_slice_pattern] = STATE(1692), + [sym_tuple_struct_pattern] = STATE(1692), + [sym_struct_pattern] = STATE(1692), + [sym_remaining_field_pattern] = STATE(1692), + [sym_mut_pattern] = STATE(1692), + [sym_range_pattern] = STATE(1692), + [sym_ref_pattern] = STATE(1692), + [sym_captured_pattern] = STATE(1692), + [sym_reference_pattern] = STATE(1692), + [sym_box_pattern] = STATE(1692), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [aux_sym_enum_variant_list_repeat1] = STATE(512), + [aux_sym_match_block_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), [anon_sym_POUND] = ACTIONS(405), - [anon_sym_ref] = ACTIONS(2256), + [anon_sym_ref] = ACTIONS(2172), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2262), - [sym_mutable_specifier] = ACTIONS(2264), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2270), - [sym_raw_string_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), [sym_block_comment] = ACTIONS(3), }, [487] = { - [sym_attribute_item] = STATE(523), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_macro_invocation] = STATE(2184), - [sym_scoped_identifier] = STATE(1439), - [sym_scoped_type_identifier] = STATE(1750), - [sym_match_arm] = STATE(509), - [sym_last_match_arm] = STATE(2177), - [sym_match_pattern] = STATE(2168), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1664), - [sym_slice_pattern] = STATE(1664), - [sym_tuple_struct_pattern] = STATE(1664), - [sym_struct_pattern] = STATE(1664), - [sym_remaining_field_pattern] = STATE(1664), - [sym_mut_pattern] = STATE(1664), - [sym_range_pattern] = STATE(1664), - [sym_ref_pattern] = STATE(1664), - [sym_captured_pattern] = STATE(1664), - [sym_reference_pattern] = STATE(1664), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [aux_sym_enum_variant_list_repeat1] = STATE(523), - [aux_sym_match_block_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), + [sym_attribute_item] = STATE(512), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1761), + [sym_match_arm] = STATE(490), + [sym_last_match_arm] = STATE(2264), + [sym_match_pattern] = STATE(2399), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1692), + [sym_slice_pattern] = STATE(1692), + [sym_tuple_struct_pattern] = STATE(1692), + [sym_struct_pattern] = STATE(1692), + [sym_remaining_field_pattern] = STATE(1692), + [sym_mut_pattern] = STATE(1692), + [sym_range_pattern] = STATE(1692), + [sym_ref_pattern] = STATE(1692), + [sym_captured_pattern] = STATE(1692), + [sym_reference_pattern] = STATE(1692), + [sym_box_pattern] = STATE(1692), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [aux_sym_enum_variant_list_repeat1] = STATE(512), + [aux_sym_match_block_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), [anon_sym_POUND] = ACTIONS(405), - [anon_sym_ref] = ACTIONS(2256), + [anon_sym_ref] = ACTIONS(2172), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2262), - [sym_mutable_specifier] = ACTIONS(2264), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2270), - [sym_raw_string_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), [sym_block_comment] = ACTIONS(3), }, [488] = { - [sym_attribute_item] = STATE(517), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(628), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1846), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1846), - [sym_tuple_type] = STATE(1846), - [sym_unit_type] = STATE(1846), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1846), - [sym_reference_type] = STATE(1846), - [sym_pointer_type] = STATE(1846), - [sym_empty_type] = STATE(1846), - [sym_abstract_type] = STATE(1846), - [sym_dynamic_type] = STATE(1846), - [sym_macro_invocation] = STATE(1846), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(517), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_RPAREN] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_attribute_item] = STATE(512), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1761), + [sym_match_arm] = STATE(490), + [sym_last_match_arm] = STATE(2351), + [sym_match_pattern] = STATE(2399), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1692), + [sym_slice_pattern] = STATE(1692), + [sym_tuple_struct_pattern] = STATE(1692), + [sym_struct_pattern] = STATE(1692), + [sym_remaining_field_pattern] = STATE(1692), + [sym_mut_pattern] = STATE(1692), + [sym_range_pattern] = STATE(1692), + [sym_ref_pattern] = STATE(1692), + [sym_captured_pattern] = STATE(1692), + [sym_reference_pattern] = STATE(1692), + [sym_box_pattern] = STATE(1692), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [aux_sym_enum_variant_list_repeat1] = STATE(512), + [aux_sym_match_block_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_ref] = ACTIONS(2172), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), [sym_block_comment] = ACTIONS(3), }, [489] = { - [sym_attribute_item] = STATE(517), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(628), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1846), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1846), - [sym_tuple_type] = STATE(1846), - [sym_unit_type] = STATE(1846), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1846), - [sym_reference_type] = STATE(1846), - [sym_pointer_type] = STATE(1846), - [sym_empty_type] = STATE(1846), - [sym_abstract_type] = STATE(1846), - [sym_dynamic_type] = STATE(1846), - [sym_macro_invocation] = STATE(1846), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(517), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_attribute_item] = STATE(513), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(647), + [sym__type] = STATE(1697), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1697), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1697), + [sym_tuple_type] = STATE(1697), + [sym_unit_type] = STATE(1697), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1697), + [sym_reference_type] = STATE(1697), + [sym_pointer_type] = STATE(1697), + [sym_empty_type] = STATE(1697), + [sym_abstract_type] = STATE(1697), + [sym_dynamic_type] = STATE(1697), + [sym_macro_invocation] = STATE(1697), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(513), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [490] = { - [sym_attribute_item] = STATE(517), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(628), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1846), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1846), - [sym_tuple_type] = STATE(1846), - [sym_unit_type] = STATE(1846), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1846), - [sym_reference_type] = STATE(1846), - [sym_pointer_type] = STATE(1846), - [sym_empty_type] = STATE(1846), - [sym_abstract_type] = STATE(1846), - [sym_dynamic_type] = STATE(1846), - [sym_macro_invocation] = STATE(1846), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(517), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [sym_attribute_item] = STATE(504), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1761), + [sym_match_arm] = STATE(490), + [sym_match_pattern] = STATE(2396), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1692), + [sym_slice_pattern] = STATE(1692), + [sym_tuple_struct_pattern] = STATE(1692), + [sym_struct_pattern] = STATE(1692), + [sym_remaining_field_pattern] = STATE(1692), + [sym_mut_pattern] = STATE(1692), + [sym_range_pattern] = STATE(1692), + [sym_ref_pattern] = STATE(1692), + [sym_captured_pattern] = STATE(1692), + [sym_reference_pattern] = STATE(1692), + [sym_box_pattern] = STATE(1692), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [aux_sym_enum_variant_list_repeat1] = STATE(504), + [aux_sym_match_block_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2300), + [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), + [anon_sym_POUND] = ACTIONS(2306), + [anon_sym_ref] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2312), + [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym__] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2321), + [sym_mutable_specifier] = ACTIONS(2324), + [anon_sym_DOT_DOT] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2330), + [anon_sym_box] = ACTIONS(2333), + [sym_integer_literal] = ACTIONS(2336), + [aux_sym_string_literal_token1] = ACTIONS(2339), + [sym_char_literal] = ACTIONS(2336), + [anon_sym_true] = ACTIONS(2342), + [anon_sym_false] = ACTIONS(2342), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(2345), + [sym_super] = ACTIONS(2345), + [sym_crate] = ACTIONS(2345), + [sym_metavariable] = ACTIONS(2348), + [sym_raw_string_literal] = ACTIONS(2336), + [sym_float_literal] = ACTIONS(2336), [sym_block_comment] = ACTIONS(3), }, [491] = { - [sym_attribute_item] = STATE(517), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(628), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1846), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1846), - [sym_tuple_type] = STATE(1846), - [sym_unit_type] = STATE(1846), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1846), - [sym_reference_type] = STATE(1846), - [sym_pointer_type] = STATE(1846), - [sym_empty_type] = STATE(1846), - [sym_abstract_type] = STATE(1846), - [sym_dynamic_type] = STATE(1846), - [sym_macro_invocation] = STATE(1846), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(517), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_RPAREN] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_attribute_item] = STATE(503), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(586), + [sym__type] = STATE(1897), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1897), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1897), + [sym_tuple_type] = STATE(1897), + [sym_unit_type] = STATE(1897), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1897), + [sym_reference_type] = STATE(1897), + [sym_pointer_type] = STATE(1897), + [sym_empty_type] = STATE(1897), + [sym_abstract_type] = STATE(1897), + [sym_dynamic_type] = STATE(1897), + [sym_macro_invocation] = STATE(1897), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(503), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [492] = { - [sym_identifier] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_RPAREN] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_RBRACK] = ACTIONS(2300), - [anon_sym_COLON] = ACTIONS(2302), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_u8] = ACTIONS(2298), - [anon_sym_i8] = ACTIONS(2298), - [anon_sym_u16] = ACTIONS(2298), - [anon_sym_i16] = ACTIONS(2298), - [anon_sym_u32] = ACTIONS(2298), - [anon_sym_i32] = ACTIONS(2298), - [anon_sym_u64] = ACTIONS(2298), - [anon_sym_i64] = ACTIONS(2298), - [anon_sym_u128] = ACTIONS(2298), - [anon_sym_i128] = ACTIONS(2298), - [anon_sym_isize] = ACTIONS(2298), - [anon_sym_usize] = ACTIONS(2298), - [anon_sym_f32] = ACTIONS(2298), - [anon_sym_f64] = ACTIONS(2298), - [anon_sym_bool] = ACTIONS(2298), - [anon_sym_str] = ACTIONS(2298), - [anon_sym_char] = ACTIONS(2298), - [aux_sym__non_special_token_token1] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_as] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_await] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_default] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [anon_sym_fn] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_impl] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_loop] = ACTIONS(2298), - [anon_sym_match] = ACTIONS(2298), - [anon_sym_mod] = ACTIONS(2298), - [anon_sym_pub] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_struct] = ACTIONS(2298), - [anon_sym_trait] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_union] = ACTIONS(2298), - [anon_sym_unsafe] = ACTIONS(2298), - [anon_sym_use] = ACTIONS(2298), - [anon_sym_where] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [sym_mutable_specifier] = ACTIONS(2298), - [sym_integer_literal] = ACTIONS(2300), - [aux_sym_string_literal_token1] = ACTIONS(2300), - [sym_char_literal] = ACTIONS(2300), - [anon_sym_true] = ACTIONS(2298), - [anon_sym_false] = ACTIONS(2298), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_crate] = ACTIONS(2298), - [sym_metavariable] = ACTIONS(2300), - [sym_raw_string_literal] = ACTIONS(2300), - [sym_float_literal] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_RBRACK] = ACTIONS(2355), + [anon_sym_COLON] = ACTIONS(2357), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(2353), + [anon_sym_i8] = ACTIONS(2353), + [anon_sym_u16] = ACTIONS(2353), + [anon_sym_i16] = ACTIONS(2353), + [anon_sym_u32] = ACTIONS(2353), + [anon_sym_i32] = ACTIONS(2353), + [anon_sym_u64] = ACTIONS(2353), + [anon_sym_i64] = ACTIONS(2353), + [anon_sym_u128] = ACTIONS(2353), + [anon_sym_i128] = ACTIONS(2353), + [anon_sym_isize] = ACTIONS(2353), + [anon_sym_usize] = ACTIONS(2353), + [anon_sym_f32] = ACTIONS(2353), + [anon_sym_f64] = ACTIONS(2353), + [anon_sym_bool] = ACTIONS(2353), + [anon_sym_str] = ACTIONS(2353), + [anon_sym_char] = ACTIONS(2353), + [aux_sym__non_special_token_token1] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2353), + [anon_sym_as] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_fn] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_impl] = ACTIONS(2353), + [anon_sym_let] = ACTIONS(2353), + [anon_sym_loop] = ACTIONS(2353), + [anon_sym_match] = ACTIONS(2353), + [anon_sym_mod] = ACTIONS(2353), + [anon_sym_pub] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_unsafe] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_where] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [sym_mutable_specifier] = ACTIONS(2353), + [sym_integer_literal] = ACTIONS(2355), + [aux_sym_string_literal_token1] = ACTIONS(2355), + [sym_char_literal] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2353), + [sym_super] = ACTIONS(2353), + [sym_crate] = ACTIONS(2353), + [sym_metavariable] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2355), + [sym_float_literal] = ACTIONS(2355), [sym_block_comment] = ACTIONS(3), }, [493] = { - [sym_attribute_item] = STATE(517), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(628), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1846), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1846), - [sym_tuple_type] = STATE(1846), - [sym_unit_type] = STATE(1846), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1846), - [sym_reference_type] = STATE(1846), - [sym_pointer_type] = STATE(1846), - [sym_empty_type] = STATE(1846), - [sym_abstract_type] = STATE(1846), - [sym_dynamic_type] = STATE(1846), - [sym_macro_invocation] = STATE(1846), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(517), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_RPAREN] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_attribute_item] = STATE(503), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(586), + [sym__type] = STATE(1897), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1897), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1897), + [sym_tuple_type] = STATE(1897), + [sym_unit_type] = STATE(1897), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1897), + [sym_reference_type] = STATE(1897), + [sym_pointer_type] = STATE(1897), + [sym_empty_type] = STATE(1897), + [sym_abstract_type] = STATE(1897), + [sym_dynamic_type] = STATE(1897), + [sym_macro_invocation] = STATE(1897), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(503), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [494] = { - [sym_attribute_item] = STATE(523), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_macro_invocation] = STATE(2184), - [sym_scoped_identifier] = STATE(1439), - [sym_scoped_type_identifier] = STATE(1750), - [sym_match_arm] = STATE(509), - [sym_last_match_arm] = STATE(2365), - [sym_match_pattern] = STATE(2168), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1664), - [sym_slice_pattern] = STATE(1664), - [sym_tuple_struct_pattern] = STATE(1664), - [sym_struct_pattern] = STATE(1664), - [sym_remaining_field_pattern] = STATE(1664), - [sym_mut_pattern] = STATE(1664), - [sym_range_pattern] = STATE(1664), - [sym_ref_pattern] = STATE(1664), - [sym_captured_pattern] = STATE(1664), - [sym_reference_pattern] = STATE(1664), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [aux_sym_enum_variant_list_repeat1] = STATE(523), - [aux_sym_match_block_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(405), - [anon_sym_ref] = ACTIONS(2256), + [sym_attribute_item] = STATE(503), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(586), + [sym__type] = STATE(1897), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1897), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1897), + [sym_tuple_type] = STATE(1897), + [sym_unit_type] = STATE(1897), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1897), + [sym_reference_type] = STATE(1897), + [sym_pointer_type] = STATE(1897), + [sym_empty_type] = STATE(1897), + [sym_abstract_type] = STATE(1897), + [sym_dynamic_type] = STATE(1897), + [sym_macro_invocation] = STATE(1897), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(503), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2262), - [sym_mutable_specifier] = ACTIONS(2264), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2270), - [sym_raw_string_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [495] = { - [sym_attribute_item] = STATE(517), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(628), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1846), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1846), - [sym_tuple_type] = STATE(1846), - [sym_unit_type] = STATE(1846), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1846), - [sym_reference_type] = STATE(1846), - [sym_pointer_type] = STATE(1846), - [sym_empty_type] = STATE(1846), - [sym_abstract_type] = STATE(1846), - [sym_dynamic_type] = STATE(1846), - [sym_macro_invocation] = STATE(1846), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(517), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_RPAREN] = ACTIONS(2306), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_attribute_item] = STATE(503), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(586), + [sym__type] = STATE(1897), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1897), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1897), + [sym_tuple_type] = STATE(1897), + [sym_unit_type] = STATE(1897), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1897), + [sym_reference_type] = STATE(1897), + [sym_pointer_type] = STATE(1897), + [sym_empty_type] = STATE(1897), + [sym_abstract_type] = STATE(1897), + [sym_dynamic_type] = STATE(1897), + [sym_macro_invocation] = STATE(1897), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(503), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [496] = { - [sym_attribute_item] = STATE(523), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_macro_invocation] = STATE(2184), - [sym_scoped_identifier] = STATE(1439), - [sym_scoped_type_identifier] = STATE(1750), - [sym_match_arm] = STATE(509), - [sym_last_match_arm] = STATE(2273), - [sym_match_pattern] = STATE(2168), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1664), - [sym_slice_pattern] = STATE(1664), - [sym_tuple_struct_pattern] = STATE(1664), - [sym_struct_pattern] = STATE(1664), - [sym_remaining_field_pattern] = STATE(1664), - [sym_mut_pattern] = STATE(1664), - [sym_range_pattern] = STATE(1664), - [sym_ref_pattern] = STATE(1664), - [sym_captured_pattern] = STATE(1664), - [sym_reference_pattern] = STATE(1664), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [aux_sym_enum_variant_list_repeat1] = STATE(523), - [aux_sym_match_block_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(405), - [anon_sym_ref] = ACTIONS(2256), + [sym_attribute_item] = STATE(503), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(586), + [sym__type] = STATE(1897), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1897), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1897), + [sym_tuple_type] = STATE(1897), + [sym_unit_type] = STATE(1897), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1897), + [sym_reference_type] = STATE(1897), + [sym_pointer_type] = STATE(1897), + [sym_empty_type] = STATE(1897), + [sym_abstract_type] = STATE(1897), + [sym_dynamic_type] = STATE(1897), + [sym_macro_invocation] = STATE(1897), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(503), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2262), - [sym_mutable_specifier] = ACTIONS(2264), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2270), - [sym_raw_string_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [497] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_RPAREN] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_RBRACK] = ACTIONS(2310), - [anon_sym_DOLLAR] = ACTIONS(2308), - [anon_sym_u8] = ACTIONS(2308), - [anon_sym_i8] = ACTIONS(2308), - [anon_sym_u16] = ACTIONS(2308), - [anon_sym_i16] = ACTIONS(2308), - [anon_sym_u32] = ACTIONS(2308), - [anon_sym_i32] = ACTIONS(2308), - [anon_sym_u64] = ACTIONS(2308), - [anon_sym_i64] = ACTIONS(2308), - [anon_sym_u128] = ACTIONS(2308), - [anon_sym_i128] = ACTIONS(2308), - [anon_sym_isize] = ACTIONS(2308), - [anon_sym_usize] = ACTIONS(2308), - [anon_sym_f32] = ACTIONS(2308), - [anon_sym_f64] = ACTIONS(2308), - [anon_sym_bool] = ACTIONS(2308), - [anon_sym_str] = ACTIONS(2308), - [anon_sym_char] = ACTIONS(2308), - [aux_sym__non_special_token_token1] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2308), - [anon_sym_as] = ACTIONS(2308), - [anon_sym_async] = ACTIONS(2308), - [anon_sym_await] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_const] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2308), - [anon_sym_enum] = ACTIONS(2308), - [anon_sym_fn] = ACTIONS(2308), - [anon_sym_for] = ACTIONS(2308), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_impl] = ACTIONS(2308), - [anon_sym_let] = ACTIONS(2308), - [anon_sym_loop] = ACTIONS(2308), - [anon_sym_match] = ACTIONS(2308), - [anon_sym_mod] = ACTIONS(2308), - [anon_sym_pub] = ACTIONS(2308), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_struct] = ACTIONS(2308), - [anon_sym_trait] = ACTIONS(2308), - [anon_sym_type] = ACTIONS(2308), - [anon_sym_union] = ACTIONS(2308), - [anon_sym_unsafe] = ACTIONS(2308), - [anon_sym_use] = ACTIONS(2308), - [anon_sym_where] = ACTIONS(2308), - [anon_sym_while] = ACTIONS(2308), - [sym_mutable_specifier] = ACTIONS(2308), - [sym_integer_literal] = ACTIONS(2310), - [aux_sym_string_literal_token1] = ACTIONS(2310), - [sym_char_literal] = ACTIONS(2310), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2308), - [sym_super] = ACTIONS(2308), - [sym_crate] = ACTIONS(2308), - [sym_metavariable] = ACTIONS(2310), - [sym_raw_string_literal] = ACTIONS(2310), - [sym_float_literal] = ACTIONS(2310), + [sym_attribute_item] = STATE(503), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(586), + [sym__type] = STATE(1897), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1897), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1897), + [sym_tuple_type] = STATE(1897), + [sym_unit_type] = STATE(1897), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1897), + [sym_reference_type] = STATE(1897), + [sym_pointer_type] = STATE(1897), + [sym_empty_type] = STATE(1897), + [sym_abstract_type] = STATE(1897), + [sym_dynamic_type] = STATE(1897), + [sym_macro_invocation] = STATE(1897), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(503), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [498] = { - [sym_attribute_item] = STATE(1062), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(547), - [sym__type] = STATE(1715), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1715), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1715), - [sym_tuple_type] = STATE(1715), - [sym_unit_type] = STATE(1715), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1715), - [sym_reference_type] = STATE(1715), - [sym_pointer_type] = STATE(1715), - [sym_empty_type] = STATE(1715), - [sym_abstract_type] = STATE(1715), - [sym_dynamic_type] = STATE(1715), - [sym_macro_invocation] = STATE(1715), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(1062), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_identifier] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_RPAREN] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_RBRACK] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_u8] = ACTIONS(519), + [anon_sym_i8] = ACTIONS(519), + [anon_sym_u16] = ACTIONS(519), + [anon_sym_i16] = ACTIONS(519), + [anon_sym_u32] = ACTIONS(519), + [anon_sym_i32] = ACTIONS(519), + [anon_sym_u64] = ACTIONS(519), + [anon_sym_i64] = ACTIONS(519), + [anon_sym_u128] = ACTIONS(519), + [anon_sym_i128] = ACTIONS(519), + [anon_sym_isize] = ACTIONS(519), + [anon_sym_usize] = ACTIONS(519), + [anon_sym_f32] = ACTIONS(519), + [anon_sym_f64] = ACTIONS(519), + [anon_sym_bool] = ACTIONS(519), + [anon_sym_str] = ACTIONS(519), + [anon_sym_char] = ACTIONS(519), + [aux_sym__non_special_token_token1] = ACTIONS(519), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_as] = ACTIONS(519), + [anon_sym_async] = ACTIONS(519), + [anon_sym_await] = ACTIONS(519), + [anon_sym_break] = ACTIONS(519), + [anon_sym_const] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(519), + [anon_sym_default] = ACTIONS(519), + [anon_sym_enum] = ACTIONS(519), + [anon_sym_fn] = ACTIONS(519), + [anon_sym_for] = ACTIONS(519), + [anon_sym_if] = ACTIONS(519), + [anon_sym_impl] = ACTIONS(519), + [anon_sym_let] = ACTIONS(519), + [anon_sym_loop] = ACTIONS(519), + [anon_sym_match] = ACTIONS(519), + [anon_sym_mod] = ACTIONS(519), + [anon_sym_pub] = ACTIONS(519), + [anon_sym_return] = ACTIONS(519), + [anon_sym_static] = ACTIONS(519), + [anon_sym_struct] = ACTIONS(519), + [anon_sym_trait] = ACTIONS(519), + [anon_sym_type] = ACTIONS(519), + [anon_sym_union] = ACTIONS(519), + [anon_sym_unsafe] = ACTIONS(519), + [anon_sym_use] = ACTIONS(519), + [anon_sym_where] = ACTIONS(519), + [anon_sym_while] = ACTIONS(519), + [sym_mutable_specifier] = ACTIONS(519), + [sym_integer_literal] = ACTIONS(517), + [aux_sym_string_literal_token1] = ACTIONS(517), + [sym_char_literal] = ACTIONS(517), + [anon_sym_true] = ACTIONS(519), + [anon_sym_false] = ACTIONS(519), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(519), + [sym_super] = ACTIONS(519), + [sym_crate] = ACTIONS(519), + [sym_metavariable] = ACTIONS(517), + [sym_raw_string_literal] = ACTIONS(517), + [sym_float_literal] = ACTIONS(517), [sym_block_comment] = ACTIONS(3), }, [499] = { - [sym_identifier] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_RPAREN] = ACTIONS(2314), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_RBRACK] = ACTIONS(2314), - [anon_sym_DOLLAR] = ACTIONS(2312), - [anon_sym_u8] = ACTIONS(2312), - [anon_sym_i8] = ACTIONS(2312), - [anon_sym_u16] = ACTIONS(2312), - [anon_sym_i16] = ACTIONS(2312), - [anon_sym_u32] = ACTIONS(2312), - [anon_sym_i32] = ACTIONS(2312), - [anon_sym_u64] = ACTIONS(2312), - [anon_sym_i64] = ACTIONS(2312), - [anon_sym_u128] = ACTIONS(2312), - [anon_sym_i128] = ACTIONS(2312), - [anon_sym_isize] = ACTIONS(2312), - [anon_sym_usize] = ACTIONS(2312), - [anon_sym_f32] = ACTIONS(2312), - [anon_sym_f64] = ACTIONS(2312), - [anon_sym_bool] = ACTIONS(2312), - [anon_sym_str] = ACTIONS(2312), - [anon_sym_char] = ACTIONS(2312), - [aux_sym__non_special_token_token1] = ACTIONS(2312), - [anon_sym_SQUOTE] = ACTIONS(2312), - [anon_sym_as] = ACTIONS(2312), - [anon_sym_async] = ACTIONS(2312), - [anon_sym_await] = ACTIONS(2312), - [anon_sym_break] = ACTIONS(2312), - [anon_sym_const] = ACTIONS(2312), - [anon_sym_continue] = ACTIONS(2312), - [anon_sym_default] = ACTIONS(2312), - [anon_sym_enum] = ACTIONS(2312), - [anon_sym_fn] = ACTIONS(2312), - [anon_sym_for] = ACTIONS(2312), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_impl] = ACTIONS(2312), - [anon_sym_let] = ACTIONS(2312), - [anon_sym_loop] = ACTIONS(2312), - [anon_sym_match] = ACTIONS(2312), - [anon_sym_mod] = ACTIONS(2312), - [anon_sym_pub] = ACTIONS(2312), - [anon_sym_return] = ACTIONS(2312), - [anon_sym_static] = ACTIONS(2312), - [anon_sym_struct] = ACTIONS(2312), - [anon_sym_trait] = ACTIONS(2312), - [anon_sym_type] = ACTIONS(2312), - [anon_sym_union] = ACTIONS(2312), - [anon_sym_unsafe] = ACTIONS(2312), - [anon_sym_use] = ACTIONS(2312), - [anon_sym_where] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2312), - [sym_mutable_specifier] = ACTIONS(2312), - [sym_integer_literal] = ACTIONS(2314), - [aux_sym_string_literal_token1] = ACTIONS(2314), - [sym_char_literal] = ACTIONS(2314), - [anon_sym_true] = ACTIONS(2312), - [anon_sym_false] = ACTIONS(2312), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2312), - [sym_super] = ACTIONS(2312), - [sym_crate] = ACTIONS(2312), - [sym_metavariable] = ACTIONS(2314), - [sym_raw_string_literal] = ACTIONS(2314), - [sym_float_literal] = ACTIONS(2314), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_RBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2369), + [anon_sym_i8] = ACTIONS(2369), + [anon_sym_u16] = ACTIONS(2369), + [anon_sym_i16] = ACTIONS(2369), + [anon_sym_u32] = ACTIONS(2369), + [anon_sym_i32] = ACTIONS(2369), + [anon_sym_u64] = ACTIONS(2369), + [anon_sym_i64] = ACTIONS(2369), + [anon_sym_u128] = ACTIONS(2369), + [anon_sym_i128] = ACTIONS(2369), + [anon_sym_isize] = ACTIONS(2369), + [anon_sym_usize] = ACTIONS(2369), + [anon_sym_f32] = ACTIONS(2369), + [anon_sym_f64] = ACTIONS(2369), + [anon_sym_bool] = ACTIONS(2369), + [anon_sym_str] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [aux_sym__non_special_token_token1] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_as] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_impl] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_mod] = ACTIONS(2369), + [anon_sym_pub] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_unsafe] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_where] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [sym_mutable_specifier] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(2371), + [sym_raw_string_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), [sym_block_comment] = ACTIONS(3), }, [500] = { - [sym_identifier] = ACTIONS(2316), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_RPAREN] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_RBRACK] = ACTIONS(2318), - [anon_sym_DOLLAR] = ACTIONS(2316), - [anon_sym_u8] = ACTIONS(2316), - [anon_sym_i8] = ACTIONS(2316), - [anon_sym_u16] = ACTIONS(2316), - [anon_sym_i16] = ACTIONS(2316), - [anon_sym_u32] = ACTIONS(2316), - [anon_sym_i32] = ACTIONS(2316), - [anon_sym_u64] = ACTIONS(2316), - [anon_sym_i64] = ACTIONS(2316), - [anon_sym_u128] = ACTIONS(2316), - [anon_sym_i128] = ACTIONS(2316), - [anon_sym_isize] = ACTIONS(2316), - [anon_sym_usize] = ACTIONS(2316), - [anon_sym_f32] = ACTIONS(2316), - [anon_sym_f64] = ACTIONS(2316), - [anon_sym_bool] = ACTIONS(2316), - [anon_sym_str] = ACTIONS(2316), - [anon_sym_char] = ACTIONS(2316), - [aux_sym__non_special_token_token1] = ACTIONS(2316), - [anon_sym_SQUOTE] = ACTIONS(2316), - [anon_sym_as] = ACTIONS(2316), - [anon_sym_async] = ACTIONS(2316), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_break] = ACTIONS(2316), - [anon_sym_const] = ACTIONS(2316), - [anon_sym_continue] = ACTIONS(2316), - [anon_sym_default] = ACTIONS(2316), - [anon_sym_enum] = ACTIONS(2316), - [anon_sym_fn] = ACTIONS(2316), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_impl] = ACTIONS(2316), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_loop] = ACTIONS(2316), - [anon_sym_match] = ACTIONS(2316), - [anon_sym_mod] = ACTIONS(2316), - [anon_sym_pub] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2316), - [anon_sym_trait] = ACTIONS(2316), - [anon_sym_type] = ACTIONS(2316), - [anon_sym_union] = ACTIONS(2316), - [anon_sym_unsafe] = ACTIONS(2316), - [anon_sym_use] = ACTIONS(2316), - [anon_sym_where] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [sym_mutable_specifier] = ACTIONS(2316), - [sym_integer_literal] = ACTIONS(2318), - [aux_sym_string_literal_token1] = ACTIONS(2318), - [sym_char_literal] = ACTIONS(2318), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2316), - [sym_super] = ACTIONS(2316), - [sym_crate] = ACTIONS(2316), - [sym_metavariable] = ACTIONS(2318), - [sym_raw_string_literal] = ACTIONS(2318), - [sym_float_literal] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_u8] = ACTIONS(2373), + [anon_sym_i8] = ACTIONS(2373), + [anon_sym_u16] = ACTIONS(2373), + [anon_sym_i16] = ACTIONS(2373), + [anon_sym_u32] = ACTIONS(2373), + [anon_sym_i32] = ACTIONS(2373), + [anon_sym_u64] = ACTIONS(2373), + [anon_sym_i64] = ACTIONS(2373), + [anon_sym_u128] = ACTIONS(2373), + [anon_sym_i128] = ACTIONS(2373), + [anon_sym_isize] = ACTIONS(2373), + [anon_sym_usize] = ACTIONS(2373), + [anon_sym_f32] = ACTIONS(2373), + [anon_sym_f64] = ACTIONS(2373), + [anon_sym_bool] = ACTIONS(2373), + [anon_sym_str] = ACTIONS(2373), + [anon_sym_char] = ACTIONS(2373), + [aux_sym__non_special_token_token1] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_impl] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_mod] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_where] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [sym_mutable_specifier] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2375), + [aux_sym_string_literal_token1] = ACTIONS(2375), + [sym_char_literal] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2373), + [sym_super] = ACTIONS(2373), + [sym_crate] = ACTIONS(2373), + [sym_metavariable] = ACTIONS(2375), + [sym_raw_string_literal] = ACTIONS(2375), + [sym_float_literal] = ACTIONS(2375), [sym_block_comment] = ACTIONS(3), }, [501] = { - [sym_identifier] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_RPAREN] = ACTIONS(2322), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_RBRACK] = ACTIONS(2322), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_u8] = ACTIONS(2320), - [anon_sym_i8] = ACTIONS(2320), - [anon_sym_u16] = ACTIONS(2320), - [anon_sym_i16] = ACTIONS(2320), - [anon_sym_u32] = ACTIONS(2320), - [anon_sym_i32] = ACTIONS(2320), - [anon_sym_u64] = ACTIONS(2320), - [anon_sym_i64] = ACTIONS(2320), - [anon_sym_u128] = ACTIONS(2320), - [anon_sym_i128] = ACTIONS(2320), - [anon_sym_isize] = ACTIONS(2320), - [anon_sym_usize] = ACTIONS(2320), - [anon_sym_f32] = ACTIONS(2320), - [anon_sym_f64] = ACTIONS(2320), - [anon_sym_bool] = ACTIONS(2320), - [anon_sym_str] = ACTIONS(2320), - [anon_sym_char] = ACTIONS(2320), - [aux_sym__non_special_token_token1] = ACTIONS(2320), - [anon_sym_SQUOTE] = ACTIONS(2320), - [anon_sym_as] = ACTIONS(2320), - [anon_sym_async] = ACTIONS(2320), - [anon_sym_await] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), - [anon_sym_fn] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_impl] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_mod] = ACTIONS(2320), - [anon_sym_pub] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_struct] = ACTIONS(2320), - [anon_sym_trait] = ACTIONS(2320), - [anon_sym_type] = ACTIONS(2320), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_unsafe] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_where] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [sym_mutable_specifier] = ACTIONS(2320), - [sym_integer_literal] = ACTIONS(2322), - [aux_sym_string_literal_token1] = ACTIONS(2322), - [sym_char_literal] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2320), - [anon_sym_false] = ACTIONS(2320), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2320), - [sym_super] = ACTIONS(2320), - [sym_crate] = ACTIONS(2320), - [sym_metavariable] = ACTIONS(2322), - [sym_raw_string_literal] = ACTIONS(2322), - [sym_float_literal] = ACTIONS(2322), + [sym_identifier] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_RBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2377), + [anon_sym_u8] = ACTIONS(2377), + [anon_sym_i8] = ACTIONS(2377), + [anon_sym_u16] = ACTIONS(2377), + [anon_sym_i16] = ACTIONS(2377), + [anon_sym_u32] = ACTIONS(2377), + [anon_sym_i32] = ACTIONS(2377), + [anon_sym_u64] = ACTIONS(2377), + [anon_sym_i64] = ACTIONS(2377), + [anon_sym_u128] = ACTIONS(2377), + [anon_sym_i128] = ACTIONS(2377), + [anon_sym_isize] = ACTIONS(2377), + [anon_sym_usize] = ACTIONS(2377), + [anon_sym_f32] = ACTIONS(2377), + [anon_sym_f64] = ACTIONS(2377), + [anon_sym_bool] = ACTIONS(2377), + [anon_sym_str] = ACTIONS(2377), + [anon_sym_char] = ACTIONS(2377), + [aux_sym__non_special_token_token1] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_impl] = ACTIONS(2377), + [anon_sym_let] = ACTIONS(2377), + [anon_sym_loop] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_mod] = ACTIONS(2377), + [anon_sym_pub] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_where] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [sym_mutable_specifier] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2379), + [aux_sym_string_literal_token1] = ACTIONS(2379), + [sym_char_literal] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_metavariable] = ACTIONS(2379), + [sym_raw_string_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), [sym_block_comment] = ACTIONS(3), }, [502] = { - [sym_identifier] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_RPAREN] = ACTIONS(2326), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_RBRACK] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2324), - [anon_sym_u8] = ACTIONS(2324), - [anon_sym_i8] = ACTIONS(2324), - [anon_sym_u16] = ACTIONS(2324), - [anon_sym_i16] = ACTIONS(2324), - [anon_sym_u32] = ACTIONS(2324), - [anon_sym_i32] = ACTIONS(2324), - [anon_sym_u64] = ACTIONS(2324), - [anon_sym_i64] = ACTIONS(2324), - [anon_sym_u128] = ACTIONS(2324), - [anon_sym_i128] = ACTIONS(2324), - [anon_sym_isize] = ACTIONS(2324), - [anon_sym_usize] = ACTIONS(2324), - [anon_sym_f32] = ACTIONS(2324), - [anon_sym_f64] = ACTIONS(2324), - [anon_sym_bool] = ACTIONS(2324), - [anon_sym_str] = ACTIONS(2324), - [anon_sym_char] = ACTIONS(2324), - [aux_sym__non_special_token_token1] = ACTIONS(2324), - [anon_sym_SQUOTE] = ACTIONS(2324), - [anon_sym_as] = ACTIONS(2324), - [anon_sym_async] = ACTIONS(2324), - [anon_sym_await] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_default] = ACTIONS(2324), - [anon_sym_enum] = ACTIONS(2324), - [anon_sym_fn] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_impl] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_mod] = ACTIONS(2324), - [anon_sym_pub] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_struct] = ACTIONS(2324), - [anon_sym_trait] = ACTIONS(2324), - [anon_sym_type] = ACTIONS(2324), - [anon_sym_union] = ACTIONS(2324), - [anon_sym_unsafe] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_where] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [sym_mutable_specifier] = ACTIONS(2324), - [sym_integer_literal] = ACTIONS(2326), - [aux_sym_string_literal_token1] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2324), - [anon_sym_false] = ACTIONS(2324), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2324), - [sym_super] = ACTIONS(2324), - [sym_crate] = ACTIONS(2324), - [sym_metavariable] = ACTIONS(2326), - [sym_raw_string_literal] = ACTIONS(2326), - [sym_float_literal] = ACTIONS(2326), + [sym_identifier] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_RBRACK] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2381), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_as] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_impl] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_mod] = ACTIONS(2381), + [anon_sym_pub] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_unsafe] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_where] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [sym_mutable_specifier] = ACTIONS(2381), + [sym_integer_literal] = ACTIONS(2383), + [aux_sym_string_literal_token1] = ACTIONS(2383), + [sym_char_literal] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_crate] = ACTIONS(2381), + [sym_metavariable] = ACTIONS(2383), + [sym_raw_string_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), [sym_block_comment] = ACTIONS(3), }, [503] = { - [sym_attribute_item] = STATE(517), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(628), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1846), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1846), - [sym_tuple_type] = STATE(1846), - [sym_unit_type] = STATE(1846), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1846), - [sym_reference_type] = STATE(1846), - [sym_pointer_type] = STATE(1846), - [sym_empty_type] = STATE(1846), - [sym_abstract_type] = STATE(1846), - [sym_dynamic_type] = STATE(1846), - [sym_macro_invocation] = STATE(1846), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(517), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_attribute_item] = STATE(1065), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1911), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1911), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1911), + [sym_tuple_type] = STATE(1911), + [sym_unit_type] = STATE(1911), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1911), + [sym_reference_type] = STATE(1911), + [sym_pointer_type] = STATE(1911), + [sym_empty_type] = STATE(1911), + [sym_abstract_type] = STATE(1911), + [sym_dynamic_type] = STATE(1911), + [sym_macro_invocation] = STATE(1911), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(1065), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [504] = { - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_RPAREN] = ACTIONS(2330), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_RBRACK] = ACTIONS(2330), - [anon_sym_DOLLAR] = ACTIONS(2328), - [anon_sym_u8] = ACTIONS(2328), - [anon_sym_i8] = ACTIONS(2328), - [anon_sym_u16] = ACTIONS(2328), - [anon_sym_i16] = ACTIONS(2328), - [anon_sym_u32] = ACTIONS(2328), - [anon_sym_i32] = ACTIONS(2328), - [anon_sym_u64] = ACTIONS(2328), - [anon_sym_i64] = ACTIONS(2328), - [anon_sym_u128] = ACTIONS(2328), - [anon_sym_i128] = ACTIONS(2328), - [anon_sym_isize] = ACTIONS(2328), - [anon_sym_usize] = ACTIONS(2328), - [anon_sym_f32] = ACTIONS(2328), - [anon_sym_f64] = ACTIONS(2328), - [anon_sym_bool] = ACTIONS(2328), - [anon_sym_str] = ACTIONS(2328), - [anon_sym_char] = ACTIONS(2328), - [aux_sym__non_special_token_token1] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [anon_sym_fn] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_impl] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_mod] = ACTIONS(2328), - [anon_sym_pub] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_struct] = ACTIONS(2328), - [anon_sym_trait] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_union] = ACTIONS(2328), - [anon_sym_unsafe] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_where] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [sym_mutable_specifier] = ACTIONS(2328), - [sym_integer_literal] = ACTIONS(2330), - [aux_sym_string_literal_token1] = ACTIONS(2330), - [sym_char_literal] = ACTIONS(2330), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_crate] = ACTIONS(2328), - [sym_metavariable] = ACTIONS(2330), - [sym_raw_string_literal] = ACTIONS(2330), - [sym_float_literal] = ACTIONS(2330), + [sym_attribute_item] = STATE(528), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_macro_invocation] = STATE(2255), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1761), + [sym_match_pattern] = STATE(2255), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1692), + [sym_slice_pattern] = STATE(1692), + [sym_tuple_struct_pattern] = STATE(1692), + [sym_struct_pattern] = STATE(1692), + [sym_remaining_field_pattern] = STATE(1692), + [sym_mut_pattern] = STATE(1692), + [sym_range_pattern] = STATE(1692), + [sym_ref_pattern] = STATE(1692), + [sym_captured_pattern] = STATE(1692), + [sym_reference_pattern] = STATE(1692), + [sym_box_pattern] = STATE(1692), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [aux_sym_enum_variant_list_repeat1] = STATE(528), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_ref] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), [sym_block_comment] = ACTIONS(3), }, [505] = { - [sym_identifier] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_RPAREN] = ACTIONS(2334), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_RBRACK] = ACTIONS(2334), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_u8] = ACTIONS(2332), - [anon_sym_i8] = ACTIONS(2332), - [anon_sym_u16] = ACTIONS(2332), - [anon_sym_i16] = ACTIONS(2332), - [anon_sym_u32] = ACTIONS(2332), - [anon_sym_i32] = ACTIONS(2332), - [anon_sym_u64] = ACTIONS(2332), - [anon_sym_i64] = ACTIONS(2332), - [anon_sym_u128] = ACTIONS(2332), - [anon_sym_i128] = ACTIONS(2332), - [anon_sym_isize] = ACTIONS(2332), - [anon_sym_usize] = ACTIONS(2332), - [anon_sym_f32] = ACTIONS(2332), - [anon_sym_f64] = ACTIONS(2332), - [anon_sym_bool] = ACTIONS(2332), - [anon_sym_str] = ACTIONS(2332), - [anon_sym_char] = ACTIONS(2332), - [aux_sym__non_special_token_token1] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [anon_sym_fn] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_impl] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_mod] = ACTIONS(2332), - [anon_sym_pub] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_struct] = ACTIONS(2332), - [anon_sym_trait] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_union] = ACTIONS(2332), - [anon_sym_unsafe] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_where] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [sym_mutable_specifier] = ACTIONS(2332), - [sym_integer_literal] = ACTIONS(2334), - [aux_sym_string_literal_token1] = ACTIONS(2334), - [sym_char_literal] = ACTIONS(2334), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_crate] = ACTIONS(2332), - [sym_metavariable] = ACTIONS(2334), - [sym_raw_string_literal] = ACTIONS(2334), - [sym_float_literal] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_RPAREN] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2387), + [anon_sym_RBRACK] = ACTIONS(2387), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_u8] = ACTIONS(2385), + [anon_sym_i8] = ACTIONS(2385), + [anon_sym_u16] = ACTIONS(2385), + [anon_sym_i16] = ACTIONS(2385), + [anon_sym_u32] = ACTIONS(2385), + [anon_sym_i32] = ACTIONS(2385), + [anon_sym_u64] = ACTIONS(2385), + [anon_sym_i64] = ACTIONS(2385), + [anon_sym_u128] = ACTIONS(2385), + [anon_sym_i128] = ACTIONS(2385), + [anon_sym_isize] = ACTIONS(2385), + [anon_sym_usize] = ACTIONS(2385), + [anon_sym_f32] = ACTIONS(2385), + [anon_sym_f64] = ACTIONS(2385), + [anon_sym_bool] = ACTIONS(2385), + [anon_sym_str] = ACTIONS(2385), + [anon_sym_char] = ACTIONS(2385), + [aux_sym__non_special_token_token1] = ACTIONS(2385), + [anon_sym_SQUOTE] = ACTIONS(2385), + [anon_sym_as] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_fn] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_mod] = ACTIONS(2385), + [anon_sym_pub] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_unsafe] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_where] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [sym_mutable_specifier] = ACTIONS(2385), + [sym_integer_literal] = ACTIONS(2387), + [aux_sym_string_literal_token1] = ACTIONS(2387), + [sym_char_literal] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2385), + [sym_super] = ACTIONS(2385), + [sym_crate] = ACTIONS(2385), + [sym_metavariable] = ACTIONS(2387), + [sym_raw_string_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), [sym_block_comment] = ACTIONS(3), }, [506] = { - [sym_identifier] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_RPAREN] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_RBRACK] = ACTIONS(2338), - [anon_sym_DOLLAR] = ACTIONS(2336), - [anon_sym_u8] = ACTIONS(2336), - [anon_sym_i8] = ACTIONS(2336), - [anon_sym_u16] = ACTIONS(2336), - [anon_sym_i16] = ACTIONS(2336), - [anon_sym_u32] = ACTIONS(2336), - [anon_sym_i32] = ACTIONS(2336), - [anon_sym_u64] = ACTIONS(2336), - [anon_sym_i64] = ACTIONS(2336), - [anon_sym_u128] = ACTIONS(2336), - [anon_sym_i128] = ACTIONS(2336), - [anon_sym_isize] = ACTIONS(2336), - [anon_sym_usize] = ACTIONS(2336), - [anon_sym_f32] = ACTIONS(2336), - [anon_sym_f64] = ACTIONS(2336), - [anon_sym_bool] = ACTIONS(2336), - [anon_sym_str] = ACTIONS(2336), - [anon_sym_char] = ACTIONS(2336), - [aux_sym__non_special_token_token1] = ACTIONS(2336), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_as] = ACTIONS(2336), - [anon_sym_async] = ACTIONS(2336), - [anon_sym_await] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_enum] = ACTIONS(2336), - [anon_sym_fn] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_impl] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_loop] = ACTIONS(2336), - [anon_sym_match] = ACTIONS(2336), - [anon_sym_mod] = ACTIONS(2336), - [anon_sym_pub] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_struct] = ACTIONS(2336), - [anon_sym_trait] = ACTIONS(2336), - [anon_sym_type] = ACTIONS(2336), - [anon_sym_union] = ACTIONS(2336), - [anon_sym_unsafe] = ACTIONS(2336), - [anon_sym_use] = ACTIONS(2336), - [anon_sym_where] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [sym_mutable_specifier] = ACTIONS(2336), - [sym_integer_literal] = ACTIONS(2338), - [aux_sym_string_literal_token1] = ACTIONS(2338), - [sym_char_literal] = ACTIONS(2338), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2336), - [sym_super] = ACTIONS(2336), - [sym_crate] = ACTIONS(2336), - [sym_metavariable] = ACTIONS(2338), - [sym_raw_string_literal] = ACTIONS(2338), - [sym_float_literal] = ACTIONS(2338), + [sym_attribute_item] = STATE(503), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(586), + [sym__type] = STATE(1897), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1897), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1897), + [sym_tuple_type] = STATE(1897), + [sym_unit_type] = STATE(1897), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1897), + [sym_reference_type] = STATE(1897), + [sym_pointer_type] = STATE(1897), + [sym_empty_type] = STATE(1897), + [sym_abstract_type] = STATE(1897), + [sym_dynamic_type] = STATE(1897), + [sym_macro_invocation] = STATE(1897), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(503), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [507] = { - [sym_identifier] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_RPAREN] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_RBRACK] = ACTIONS(2342), - [anon_sym_DOLLAR] = ACTIONS(2340), - [anon_sym_u8] = ACTIONS(2340), - [anon_sym_i8] = ACTIONS(2340), - [anon_sym_u16] = ACTIONS(2340), - [anon_sym_i16] = ACTIONS(2340), - [anon_sym_u32] = ACTIONS(2340), - [anon_sym_i32] = ACTIONS(2340), - [anon_sym_u64] = ACTIONS(2340), - [anon_sym_i64] = ACTIONS(2340), - [anon_sym_u128] = ACTIONS(2340), - [anon_sym_i128] = ACTIONS(2340), - [anon_sym_isize] = ACTIONS(2340), - [anon_sym_usize] = ACTIONS(2340), - [anon_sym_f32] = ACTIONS(2340), - [anon_sym_f64] = ACTIONS(2340), - [anon_sym_bool] = ACTIONS(2340), - [anon_sym_str] = ACTIONS(2340), - [anon_sym_char] = ACTIONS(2340), - [aux_sym__non_special_token_token1] = ACTIONS(2340), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_as] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2340), - [anon_sym_await] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_default] = ACTIONS(2340), - [anon_sym_enum] = ACTIONS(2340), - [anon_sym_fn] = ACTIONS(2340), - [anon_sym_for] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_impl] = ACTIONS(2340), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_loop] = ACTIONS(2340), - [anon_sym_match] = ACTIONS(2340), - [anon_sym_mod] = ACTIONS(2340), - [anon_sym_pub] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_struct] = ACTIONS(2340), - [anon_sym_trait] = ACTIONS(2340), - [anon_sym_type] = ACTIONS(2340), - [anon_sym_union] = ACTIONS(2340), - [anon_sym_unsafe] = ACTIONS(2340), - [anon_sym_use] = ACTIONS(2340), - [anon_sym_where] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [sym_mutable_specifier] = ACTIONS(2340), - [sym_integer_literal] = ACTIONS(2342), - [aux_sym_string_literal_token1] = ACTIONS(2342), - [sym_char_literal] = ACTIONS(2342), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2340), - [sym_super] = ACTIONS(2340), - [sym_crate] = ACTIONS(2340), - [sym_metavariable] = ACTIONS(2342), - [sym_raw_string_literal] = ACTIONS(2342), - [sym_float_literal] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_RPAREN] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_RBRACK] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_u8] = ACTIONS(2389), + [anon_sym_i8] = ACTIONS(2389), + [anon_sym_u16] = ACTIONS(2389), + [anon_sym_i16] = ACTIONS(2389), + [anon_sym_u32] = ACTIONS(2389), + [anon_sym_i32] = ACTIONS(2389), + [anon_sym_u64] = ACTIONS(2389), + [anon_sym_i64] = ACTIONS(2389), + [anon_sym_u128] = ACTIONS(2389), + [anon_sym_i128] = ACTIONS(2389), + [anon_sym_isize] = ACTIONS(2389), + [anon_sym_usize] = ACTIONS(2389), + [anon_sym_f32] = ACTIONS(2389), + [anon_sym_f64] = ACTIONS(2389), + [anon_sym_bool] = ACTIONS(2389), + [anon_sym_str] = ACTIONS(2389), + [anon_sym_char] = ACTIONS(2389), + [aux_sym__non_special_token_token1] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_fn] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_impl] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_mod] = ACTIONS(2389), + [anon_sym_pub] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_unsafe] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_where] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [sym_mutable_specifier] = ACTIONS(2389), + [sym_integer_literal] = ACTIONS(2391), + [aux_sym_string_literal_token1] = ACTIONS(2391), + [sym_char_literal] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2389), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2391), + [sym_raw_string_literal] = ACTIONS(2391), + [sym_float_literal] = ACTIONS(2391), [sym_block_comment] = ACTIONS(3), }, [508] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_LBRACK] = ACTIONS(2346), - [anon_sym_RBRACK] = ACTIONS(2346), - [anon_sym_DOLLAR] = ACTIONS(2344), - [anon_sym_u8] = ACTIONS(2344), - [anon_sym_i8] = ACTIONS(2344), - [anon_sym_u16] = ACTIONS(2344), - [anon_sym_i16] = ACTIONS(2344), - [anon_sym_u32] = ACTIONS(2344), - [anon_sym_i32] = ACTIONS(2344), - [anon_sym_u64] = ACTIONS(2344), - [anon_sym_i64] = ACTIONS(2344), - [anon_sym_u128] = ACTIONS(2344), - [anon_sym_i128] = ACTIONS(2344), - [anon_sym_isize] = ACTIONS(2344), - [anon_sym_usize] = ACTIONS(2344), - [anon_sym_f32] = ACTIONS(2344), - [anon_sym_f64] = ACTIONS(2344), - [anon_sym_bool] = ACTIONS(2344), - [anon_sym_str] = ACTIONS(2344), - [anon_sym_char] = ACTIONS(2344), - [aux_sym__non_special_token_token1] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2344), - [anon_sym_as] = ACTIONS(2344), - [anon_sym_async] = ACTIONS(2344), - [anon_sym_await] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(2344), - [anon_sym_fn] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_impl] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_loop] = ACTIONS(2344), - [anon_sym_match] = ACTIONS(2344), - [anon_sym_mod] = ACTIONS(2344), - [anon_sym_pub] = ACTIONS(2344), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_struct] = ACTIONS(2344), - [anon_sym_trait] = ACTIONS(2344), - [anon_sym_type] = ACTIONS(2344), - [anon_sym_union] = ACTIONS(2344), - [anon_sym_unsafe] = ACTIONS(2344), - [anon_sym_use] = ACTIONS(2344), - [anon_sym_where] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [sym_mutable_specifier] = ACTIONS(2344), - [sym_integer_literal] = ACTIONS(2346), - [aux_sym_string_literal_token1] = ACTIONS(2346), - [sym_char_literal] = ACTIONS(2346), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2344), - [sym_super] = ACTIONS(2344), - [sym_crate] = ACTIONS(2344), - [sym_metavariable] = ACTIONS(2346), - [sym_raw_string_literal] = ACTIONS(2346), - [sym_float_literal] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_u8] = ACTIONS(2393), + [anon_sym_i8] = ACTIONS(2393), + [anon_sym_u16] = ACTIONS(2393), + [anon_sym_i16] = ACTIONS(2393), + [anon_sym_u32] = ACTIONS(2393), + [anon_sym_i32] = ACTIONS(2393), + [anon_sym_u64] = ACTIONS(2393), + [anon_sym_i64] = ACTIONS(2393), + [anon_sym_u128] = ACTIONS(2393), + [anon_sym_i128] = ACTIONS(2393), + [anon_sym_isize] = ACTIONS(2393), + [anon_sym_usize] = ACTIONS(2393), + [anon_sym_f32] = ACTIONS(2393), + [anon_sym_f64] = ACTIONS(2393), + [anon_sym_bool] = ACTIONS(2393), + [anon_sym_str] = ACTIONS(2393), + [anon_sym_char] = ACTIONS(2393), + [aux_sym__non_special_token_token1] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_impl] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_mod] = ACTIONS(2393), + [anon_sym_pub] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [sym_mutable_specifier] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_metavariable] = ACTIONS(2395), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), [sym_block_comment] = ACTIONS(3), }, [509] = { - [sym_attribute_item] = STATE(521), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_macro_invocation] = STATE(2184), - [sym_scoped_identifier] = STATE(1439), - [sym_scoped_type_identifier] = STATE(1750), - [sym_match_arm] = STATE(509), - [sym_match_pattern] = STATE(2184), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1664), - [sym_slice_pattern] = STATE(1664), - [sym_tuple_struct_pattern] = STATE(1664), - [sym_struct_pattern] = STATE(1664), - [sym_remaining_field_pattern] = STATE(1664), - [sym_mut_pattern] = STATE(1664), - [sym_range_pattern] = STATE(1664), - [sym_ref_pattern] = STATE(1664), - [sym_captured_pattern] = STATE(1664), - [sym_reference_pattern] = STATE(1664), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [aux_sym_enum_variant_list_repeat1] = STATE(521), - [aux_sym_match_block_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(2348), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2354), - [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), - [anon_sym_POUND] = ACTIONS(2360), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(2366), - [anon_sym_COLON_COLON] = ACTIONS(2369), - [anon_sym__] = ACTIONS(2372), - [anon_sym_AMP] = ACTIONS(2375), - [sym_mutable_specifier] = ACTIONS(2378), - [anon_sym_DOT_DOT] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2384), - [sym_integer_literal] = ACTIONS(2387), - [aux_sym_string_literal_token1] = ACTIONS(2390), - [sym_char_literal] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2396), - [sym_super] = ACTIONS(2396), - [sym_crate] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_u8] = ACTIONS(2397), + [anon_sym_i8] = ACTIONS(2397), + [anon_sym_u16] = ACTIONS(2397), + [anon_sym_i16] = ACTIONS(2397), + [anon_sym_u32] = ACTIONS(2397), + [anon_sym_i32] = ACTIONS(2397), + [anon_sym_u64] = ACTIONS(2397), + [anon_sym_i64] = ACTIONS(2397), + [anon_sym_u128] = ACTIONS(2397), + [anon_sym_i128] = ACTIONS(2397), + [anon_sym_isize] = ACTIONS(2397), + [anon_sym_usize] = ACTIONS(2397), + [anon_sym_f32] = ACTIONS(2397), + [anon_sym_f64] = ACTIONS(2397), + [anon_sym_bool] = ACTIONS(2397), + [anon_sym_str] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [aux_sym__non_special_token_token1] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_impl] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_mod] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_where] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [sym_mutable_specifier] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), [sym_metavariable] = ACTIONS(2399), - [sym_raw_string_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), + [sym_raw_string_literal] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), [sym_block_comment] = ACTIONS(3), }, [510] = { - [sym_identifier] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_RPAREN] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(489), - [anon_sym_RBRACK] = ACTIONS(489), - [anon_sym_DOLLAR] = ACTIONS(491), - [anon_sym_u8] = ACTIONS(491), - [anon_sym_i8] = ACTIONS(491), - [anon_sym_u16] = ACTIONS(491), - [anon_sym_i16] = ACTIONS(491), - [anon_sym_u32] = ACTIONS(491), - [anon_sym_i32] = ACTIONS(491), - [anon_sym_u64] = ACTIONS(491), - [anon_sym_i64] = ACTIONS(491), - [anon_sym_u128] = ACTIONS(491), - [anon_sym_i128] = ACTIONS(491), - [anon_sym_isize] = ACTIONS(491), - [anon_sym_usize] = ACTIONS(491), - [anon_sym_f32] = ACTIONS(491), - [anon_sym_f64] = ACTIONS(491), - [anon_sym_bool] = ACTIONS(491), - [anon_sym_str] = ACTIONS(491), - [anon_sym_char] = ACTIONS(491), - [aux_sym__non_special_token_token1] = ACTIONS(491), - [anon_sym_SQUOTE] = ACTIONS(491), - [anon_sym_as] = ACTIONS(491), - [anon_sym_async] = ACTIONS(491), - [anon_sym_await] = ACTIONS(491), - [anon_sym_break] = ACTIONS(491), - [anon_sym_const] = ACTIONS(491), - [anon_sym_continue] = ACTIONS(491), - [anon_sym_default] = ACTIONS(491), - [anon_sym_enum] = ACTIONS(491), - [anon_sym_fn] = ACTIONS(491), - [anon_sym_for] = ACTIONS(491), - [anon_sym_if] = ACTIONS(491), - [anon_sym_impl] = ACTIONS(491), - [anon_sym_let] = ACTIONS(491), - [anon_sym_loop] = ACTIONS(491), - [anon_sym_match] = ACTIONS(491), - [anon_sym_mod] = ACTIONS(491), - [anon_sym_pub] = ACTIONS(491), - [anon_sym_return] = ACTIONS(491), - [anon_sym_static] = ACTIONS(491), - [anon_sym_struct] = ACTIONS(491), - [anon_sym_trait] = ACTIONS(491), - [anon_sym_type] = ACTIONS(491), - [anon_sym_union] = ACTIONS(491), - [anon_sym_unsafe] = ACTIONS(491), - [anon_sym_use] = ACTIONS(491), - [anon_sym_where] = ACTIONS(491), - [anon_sym_while] = ACTIONS(491), - [sym_mutable_specifier] = ACTIONS(491), - [sym_integer_literal] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), - [sym_char_literal] = ACTIONS(489), - [anon_sym_true] = ACTIONS(491), - [anon_sym_false] = ACTIONS(491), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(491), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(489), - [sym_raw_string_literal] = ACTIONS(489), - [sym_float_literal] = ACTIONS(489), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_u8] = ACTIONS(2401), + [anon_sym_i8] = ACTIONS(2401), + [anon_sym_u16] = ACTIONS(2401), + [anon_sym_i16] = ACTIONS(2401), + [anon_sym_u32] = ACTIONS(2401), + [anon_sym_i32] = ACTIONS(2401), + [anon_sym_u64] = ACTIONS(2401), + [anon_sym_i64] = ACTIONS(2401), + [anon_sym_u128] = ACTIONS(2401), + [anon_sym_i128] = ACTIONS(2401), + [anon_sym_isize] = ACTIONS(2401), + [anon_sym_usize] = ACTIONS(2401), + [anon_sym_f32] = ACTIONS(2401), + [anon_sym_f64] = ACTIONS(2401), + [anon_sym_bool] = ACTIONS(2401), + [anon_sym_str] = ACTIONS(2401), + [anon_sym_char] = ACTIONS(2401), + [aux_sym__non_special_token_token1] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_impl] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_mod] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_where] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [sym_mutable_specifier] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2403), + [aux_sym_string_literal_token1] = ACTIONS(2403), + [sym_char_literal] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2403), + [sym_float_literal] = ACTIONS(2403), [sym_block_comment] = ACTIONS(3), }, [511] = { - [sym_identifier] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_RPAREN] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_RBRACK] = ACTIONS(2404), - [anon_sym_DOLLAR] = ACTIONS(2402), - [anon_sym_u8] = ACTIONS(2402), - [anon_sym_i8] = ACTIONS(2402), - [anon_sym_u16] = ACTIONS(2402), - [anon_sym_i16] = ACTIONS(2402), - [anon_sym_u32] = ACTIONS(2402), - [anon_sym_i32] = ACTIONS(2402), - [anon_sym_u64] = ACTIONS(2402), - [anon_sym_i64] = ACTIONS(2402), - [anon_sym_u128] = ACTIONS(2402), - [anon_sym_i128] = ACTIONS(2402), - [anon_sym_isize] = ACTIONS(2402), - [anon_sym_usize] = ACTIONS(2402), - [anon_sym_f32] = ACTIONS(2402), - [anon_sym_f64] = ACTIONS(2402), - [anon_sym_bool] = ACTIONS(2402), - [anon_sym_str] = ACTIONS(2402), - [anon_sym_char] = ACTIONS(2402), - [aux_sym__non_special_token_token1] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [anon_sym_fn] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_impl] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_mod] = ACTIONS(2402), - [anon_sym_pub] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(2402), - [anon_sym_trait] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_union] = ACTIONS(2402), - [anon_sym_unsafe] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_where] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [sym_mutable_specifier] = ACTIONS(2402), - [sym_integer_literal] = ACTIONS(2404), - [aux_sym_string_literal_token1] = ACTIONS(2404), - [sym_char_literal] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2404), - [sym_raw_string_literal] = ACTIONS(2404), - [sym_float_literal] = ACTIONS(2404), + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_RPAREN] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_u8] = ACTIONS(2405), + [anon_sym_i8] = ACTIONS(2405), + [anon_sym_u16] = ACTIONS(2405), + [anon_sym_i16] = ACTIONS(2405), + [anon_sym_u32] = ACTIONS(2405), + [anon_sym_i32] = ACTIONS(2405), + [anon_sym_u64] = ACTIONS(2405), + [anon_sym_i64] = ACTIONS(2405), + [anon_sym_u128] = ACTIONS(2405), + [anon_sym_i128] = ACTIONS(2405), + [anon_sym_isize] = ACTIONS(2405), + [anon_sym_usize] = ACTIONS(2405), + [anon_sym_f32] = ACTIONS(2405), + [anon_sym_f64] = ACTIONS(2405), + [anon_sym_bool] = ACTIONS(2405), + [anon_sym_str] = ACTIONS(2405), + [anon_sym_char] = ACTIONS(2405), + [aux_sym__non_special_token_token1] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_fn] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_impl] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_mod] = ACTIONS(2405), + [anon_sym_pub] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_unsafe] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_where] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [sym_mutable_specifier] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_metavariable] = ACTIONS(2407), + [sym_raw_string_literal] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), [sym_block_comment] = ACTIONS(3), }, [512] = { - [sym_identifier] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_RPAREN] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_RBRACK] = ACTIONS(2408), - [anon_sym_DOLLAR] = ACTIONS(2406), - [anon_sym_u8] = ACTIONS(2406), - [anon_sym_i8] = ACTIONS(2406), - [anon_sym_u16] = ACTIONS(2406), - [anon_sym_i16] = ACTIONS(2406), - [anon_sym_u32] = ACTIONS(2406), - [anon_sym_i32] = ACTIONS(2406), - [anon_sym_u64] = ACTIONS(2406), - [anon_sym_i64] = ACTIONS(2406), - [anon_sym_u128] = ACTIONS(2406), - [anon_sym_i128] = ACTIONS(2406), - [anon_sym_isize] = ACTIONS(2406), - [anon_sym_usize] = ACTIONS(2406), - [anon_sym_f32] = ACTIONS(2406), - [anon_sym_f64] = ACTIONS(2406), - [anon_sym_bool] = ACTIONS(2406), - [anon_sym_str] = ACTIONS(2406), - [anon_sym_char] = ACTIONS(2406), - [aux_sym__non_special_token_token1] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_await] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_default] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_impl] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_mod] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_static] = ACTIONS(2406), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_trait] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_where] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [sym_mutable_specifier] = ACTIONS(2406), - [sym_integer_literal] = ACTIONS(2408), - [aux_sym_string_literal_token1] = ACTIONS(2408), - [sym_char_literal] = ACTIONS(2408), - [anon_sym_true] = ACTIONS(2406), - [anon_sym_false] = ACTIONS(2406), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2406), - [sym_super] = ACTIONS(2406), - [sym_crate] = ACTIONS(2406), - [sym_metavariable] = ACTIONS(2408), - [sym_raw_string_literal] = ACTIONS(2408), - [sym_float_literal] = ACTIONS(2408), - [sym_block_comment] = ACTIONS(3), - }, + [sym_attribute_item] = STATE(528), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_macro_invocation] = STATE(2255), + [sym_scoped_identifier] = STATE(1457), + [sym_scoped_type_identifier] = STATE(1761), + [sym_match_pattern] = STATE(2260), + [sym__pattern] = STATE(1692), + [sym_tuple_pattern] = STATE(1692), + [sym_slice_pattern] = STATE(1692), + [sym_tuple_struct_pattern] = STATE(1692), + [sym_struct_pattern] = STATE(1692), + [sym_remaining_field_pattern] = STATE(1692), + [sym_mut_pattern] = STATE(1692), + [sym_range_pattern] = STATE(1692), + [sym_ref_pattern] = STATE(1692), + [sym_captured_pattern] = STATE(1692), + [sym_reference_pattern] = STATE(1692), + [sym_box_pattern] = STATE(1692), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [aux_sym_enum_variant_list_repeat1] = STATE(528), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(405), + [anon_sym_ref] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), + [sym_block_comment] = ACTIONS(3), + }, [513] = { - [sym_identifier] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2412), - [anon_sym_LBRACE] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2412), - [anon_sym_RBRACK] = ACTIONS(2412), - [anon_sym_DOLLAR] = ACTIONS(2410), - [anon_sym_u8] = ACTIONS(2410), - [anon_sym_i8] = ACTIONS(2410), - [anon_sym_u16] = ACTIONS(2410), - [anon_sym_i16] = ACTIONS(2410), - [anon_sym_u32] = ACTIONS(2410), - [anon_sym_i32] = ACTIONS(2410), - [anon_sym_u64] = ACTIONS(2410), - [anon_sym_i64] = ACTIONS(2410), - [anon_sym_u128] = ACTIONS(2410), - [anon_sym_i128] = ACTIONS(2410), - [anon_sym_isize] = ACTIONS(2410), - [anon_sym_usize] = ACTIONS(2410), - [anon_sym_f32] = ACTIONS(2410), - [anon_sym_f64] = ACTIONS(2410), - [anon_sym_bool] = ACTIONS(2410), - [anon_sym_str] = ACTIONS(2410), - [anon_sym_char] = ACTIONS(2410), - [aux_sym__non_special_token_token1] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [anon_sym_fn] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_impl] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_mod] = ACTIONS(2410), - [anon_sym_pub] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_struct] = ACTIONS(2410), - [anon_sym_trait] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_union] = ACTIONS(2410), - [anon_sym_unsafe] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_where] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [sym_mutable_specifier] = ACTIONS(2410), - [sym_integer_literal] = ACTIONS(2412), - [aux_sym_string_literal_token1] = ACTIONS(2412), - [sym_char_literal] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(2410), - [anon_sym_false] = ACTIONS(2410), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_crate] = ACTIONS(2410), - [sym_metavariable] = ACTIONS(2412), - [sym_raw_string_literal] = ACTIONS(2412), - [sym_float_literal] = ACTIONS(2412), + [sym_attribute_item] = STATE(1065), + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym_visibility_modifier] = STATE(574), + [sym__type] = STATE(1728), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1728), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1728), + [sym_tuple_type] = STATE(1728), + [sym_unit_type] = STATE(1728), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1728), + [sym_reference_type] = STATE(1728), + [sym_pointer_type] = STATE(1728), + [sym_empty_type] = STATE(1728), + [sym_abstract_type] = STATE(1728), + [sym_dynamic_type] = STATE(1728), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_enum_variant_list_repeat1] = STATE(1065), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [514] = { - [sym_identifier] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_RPAREN] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_RBRACK] = ACTIONS(2416), - [anon_sym_DOLLAR] = ACTIONS(2414), - [anon_sym_u8] = ACTIONS(2414), - [anon_sym_i8] = ACTIONS(2414), - [anon_sym_u16] = ACTIONS(2414), - [anon_sym_i16] = ACTIONS(2414), - [anon_sym_u32] = ACTIONS(2414), - [anon_sym_i32] = ACTIONS(2414), - [anon_sym_u64] = ACTIONS(2414), - [anon_sym_i64] = ACTIONS(2414), - [anon_sym_u128] = ACTIONS(2414), - [anon_sym_i128] = ACTIONS(2414), - [anon_sym_isize] = ACTIONS(2414), - [anon_sym_usize] = ACTIONS(2414), - [anon_sym_f32] = ACTIONS(2414), - [anon_sym_f64] = ACTIONS(2414), - [anon_sym_bool] = ACTIONS(2414), - [anon_sym_str] = ACTIONS(2414), - [anon_sym_char] = ACTIONS(2414), - [aux_sym__non_special_token_token1] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_as] = ACTIONS(2414), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_await] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), - [anon_sym_enum] = ACTIONS(2414), - [anon_sym_fn] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_impl] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_mod] = ACTIONS(2414), - [anon_sym_pub] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_struct] = ACTIONS(2414), - [anon_sym_trait] = ACTIONS(2414), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_union] = ACTIONS(2414), - [anon_sym_unsafe] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_where] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [sym_mutable_specifier] = ACTIONS(2414), - [sym_integer_literal] = ACTIONS(2416), - [aux_sym_string_literal_token1] = ACTIONS(2416), - [sym_char_literal] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2414), - [anon_sym_false] = ACTIONS(2414), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2414), - [sym_super] = ACTIONS(2414), - [sym_crate] = ACTIONS(2414), - [sym_metavariable] = ACTIONS(2416), - [sym_raw_string_literal] = ACTIONS(2416), - [sym_float_literal] = ACTIONS(2416), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_RBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [aux_sym__non_special_token_token1] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_fn] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_impl] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_mod] = ACTIONS(2409), + [anon_sym_pub] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_unsafe] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_where] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [sym_mutable_specifier] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_metavariable] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), [sym_block_comment] = ACTIONS(3), }, [515] = { - [sym_identifier] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_RBRACK] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(471), - [anon_sym_u8] = ACTIONS(471), - [anon_sym_i8] = ACTIONS(471), - [anon_sym_u16] = ACTIONS(471), - [anon_sym_i16] = ACTIONS(471), - [anon_sym_u32] = ACTIONS(471), - [anon_sym_i32] = ACTIONS(471), - [anon_sym_u64] = ACTIONS(471), - [anon_sym_i64] = ACTIONS(471), - [anon_sym_u128] = ACTIONS(471), - [anon_sym_i128] = ACTIONS(471), - [anon_sym_isize] = ACTIONS(471), - [anon_sym_usize] = ACTIONS(471), - [anon_sym_f32] = ACTIONS(471), - [anon_sym_f64] = ACTIONS(471), - [anon_sym_bool] = ACTIONS(471), - [anon_sym_str] = ACTIONS(471), - [anon_sym_char] = ACTIONS(471), - [aux_sym__non_special_token_token1] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(471), - [anon_sym_as] = ACTIONS(471), - [anon_sym_async] = ACTIONS(471), - [anon_sym_await] = ACTIONS(471), - [anon_sym_break] = ACTIONS(471), - [anon_sym_const] = ACTIONS(471), - [anon_sym_continue] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_enum] = ACTIONS(471), - [anon_sym_fn] = ACTIONS(471), - [anon_sym_for] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_impl] = ACTIONS(471), - [anon_sym_let] = ACTIONS(471), - [anon_sym_loop] = ACTIONS(471), - [anon_sym_match] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_pub] = ACTIONS(471), - [anon_sym_return] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_struct] = ACTIONS(471), - [anon_sym_trait] = ACTIONS(471), - [anon_sym_type] = ACTIONS(471), - [anon_sym_union] = ACTIONS(471), - [anon_sym_unsafe] = ACTIONS(471), - [anon_sym_use] = ACTIONS(471), - [anon_sym_where] = ACTIONS(471), - [anon_sym_while] = ACTIONS(471), - [sym_mutable_specifier] = ACTIONS(471), - [sym_integer_literal] = ACTIONS(469), - [aux_sym_string_literal_token1] = ACTIONS(469), - [sym_char_literal] = ACTIONS(469), - [anon_sym_true] = ACTIONS(471), - [anon_sym_false] = ACTIONS(471), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(471), - [sym_super] = ACTIONS(471), - [sym_crate] = ACTIONS(471), - [sym_metavariable] = ACTIONS(469), - [sym_raw_string_literal] = ACTIONS(469), - [sym_float_literal] = ACTIONS(469), + [sym_identifier] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_RBRACK] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [aux_sym__non_special_token_token1] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_where] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [sym_mutable_specifier] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2415), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), [sym_block_comment] = ACTIONS(3), }, [516] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_RBRACK] = ACTIONS(2420), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_u8] = ACTIONS(2418), - [anon_sym_i8] = ACTIONS(2418), - [anon_sym_u16] = ACTIONS(2418), - [anon_sym_i16] = ACTIONS(2418), - [anon_sym_u32] = ACTIONS(2418), - [anon_sym_i32] = ACTIONS(2418), - [anon_sym_u64] = ACTIONS(2418), - [anon_sym_i64] = ACTIONS(2418), - [anon_sym_u128] = ACTIONS(2418), - [anon_sym_i128] = ACTIONS(2418), - [anon_sym_isize] = ACTIONS(2418), - [anon_sym_usize] = ACTIONS(2418), - [anon_sym_f32] = ACTIONS(2418), - [anon_sym_f64] = ACTIONS(2418), - [anon_sym_bool] = ACTIONS(2418), - [anon_sym_str] = ACTIONS(2418), - [anon_sym_char] = ACTIONS(2418), - [aux_sym__non_special_token_token1] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(2418), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_async] = ACTIONS(2418), - [anon_sym_await] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2418), - [anon_sym_fn] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_impl] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_mod] = ACTIONS(2418), - [anon_sym_pub] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_struct] = ACTIONS(2418), - [anon_sym_trait] = ACTIONS(2418), - [anon_sym_type] = ACTIONS(2418), - [anon_sym_union] = ACTIONS(2418), - [anon_sym_unsafe] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_where] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [sym_mutable_specifier] = ACTIONS(2418), - [sym_integer_literal] = ACTIONS(2420), - [aux_sym_string_literal_token1] = ACTIONS(2420), - [sym_char_literal] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [sym_line_comment] = ACTIONS(1186), - [sym_self] = ACTIONS(2418), - [sym_super] = ACTIONS(2418), - [sym_crate] = ACTIONS(2418), - [sym_metavariable] = ACTIONS(2420), - [sym_raw_string_literal] = ACTIONS(2420), - [sym_float_literal] = ACTIONS(2420), + [sym_identifier] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_RBRACK] = ACTIONS(431), + [anon_sym_DOLLAR] = ACTIONS(433), + [anon_sym_u8] = ACTIONS(433), + [anon_sym_i8] = ACTIONS(433), + [anon_sym_u16] = ACTIONS(433), + [anon_sym_i16] = ACTIONS(433), + [anon_sym_u32] = ACTIONS(433), + [anon_sym_i32] = ACTIONS(433), + [anon_sym_u64] = ACTIONS(433), + [anon_sym_i64] = ACTIONS(433), + [anon_sym_u128] = ACTIONS(433), + [anon_sym_i128] = ACTIONS(433), + [anon_sym_isize] = ACTIONS(433), + [anon_sym_usize] = ACTIONS(433), + [anon_sym_f32] = ACTIONS(433), + [anon_sym_f64] = ACTIONS(433), + [anon_sym_bool] = ACTIONS(433), + [anon_sym_str] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [aux_sym__non_special_token_token1] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_async] = ACTIONS(433), + [anon_sym_await] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(433), + [anon_sym_enum] = ACTIONS(433), + [anon_sym_fn] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_impl] = ACTIONS(433), + [anon_sym_let] = ACTIONS(433), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(433), + [anon_sym_mod] = ACTIONS(433), + [anon_sym_pub] = ACTIONS(433), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_struct] = ACTIONS(433), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_type] = ACTIONS(433), + [anon_sym_union] = ACTIONS(433), + [anon_sym_unsafe] = ACTIONS(433), + [anon_sym_use] = ACTIONS(433), + [anon_sym_where] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [sym_mutable_specifier] = ACTIONS(433), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(431), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(433), + [sym_super] = ACTIONS(433), + [sym_crate] = ACTIONS(433), + [sym_metavariable] = ACTIONS(431), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), [sym_block_comment] = ACTIONS(3), }, [517] = { - [sym_attribute_item] = STATE(1062), - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym_visibility_modifier] = STATE(563), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1975), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1975), - [sym_tuple_type] = STATE(1975), - [sym_unit_type] = STATE(1975), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1975), - [sym_reference_type] = STATE(1975), - [sym_pointer_type] = STATE(1975), - [sym_empty_type] = STATE(1975), - [sym_abstract_type] = STATE(1975), - [sym_dynamic_type] = STATE(1975), - [sym_macro_invocation] = STATE(1975), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_enum_variant_list_repeat1] = STATE(1062), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(1097), + [sym_identifier] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_RBRACK] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_u8] = ACTIONS(2417), + [anon_sym_i8] = ACTIONS(2417), + [anon_sym_u16] = ACTIONS(2417), + [anon_sym_i16] = ACTIONS(2417), + [anon_sym_u32] = ACTIONS(2417), + [anon_sym_i32] = ACTIONS(2417), + [anon_sym_u64] = ACTIONS(2417), + [anon_sym_i64] = ACTIONS(2417), + [anon_sym_u128] = ACTIONS(2417), + [anon_sym_i128] = ACTIONS(2417), + [anon_sym_isize] = ACTIONS(2417), + [anon_sym_usize] = ACTIONS(2417), + [anon_sym_f32] = ACTIONS(2417), + [anon_sym_f64] = ACTIONS(2417), + [anon_sym_bool] = ACTIONS(2417), + [anon_sym_str] = ACTIONS(2417), + [anon_sym_char] = ACTIONS(2417), + [aux_sym__non_special_token_token1] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_fn] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_impl] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_mod] = ACTIONS(2417), + [anon_sym_pub] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_unsafe] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_where] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [sym_mutable_specifier] = ACTIONS(2417), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_crate] = ACTIONS(2417), + [sym_metavariable] = ACTIONS(2419), + [sym_raw_string_literal] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), [sym_block_comment] = ACTIONS(3), }, [518] = { - [sym_function_modifiers] = STATE(2279), - [sym_const_parameter] = STATE(1907), - [sym_constrained_type_parameter] = STATE(1662), - [sym_optional_type_parameter] = STATE(1907), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1942), - [sym_bracketed_type] = STATE(2227), - [sym_qualified_type] = STATE(2216), - [sym_lifetime] = STATE(1526), - [sym_array_type] = STATE(1942), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1942), - [sym_tuple_type] = STATE(1942), - [sym_unit_type] = STATE(1942), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1942), - [sym_reference_type] = STATE(1942), - [sym_pointer_type] = STATE(1942), - [sym_empty_type] = STATE(1942), - [sym_abstract_type] = STATE(1942), - [sym_dynamic_type] = STATE(1942), - [sym_macro_invocation] = STATE(1942), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(2424), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_RBRACK] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_u8] = ACTIONS(2421), + [anon_sym_i8] = ACTIONS(2421), + [anon_sym_u16] = ACTIONS(2421), + [anon_sym_i16] = ACTIONS(2421), + [anon_sym_u32] = ACTIONS(2421), + [anon_sym_i32] = ACTIONS(2421), + [anon_sym_u64] = ACTIONS(2421), + [anon_sym_i64] = ACTIONS(2421), + [anon_sym_u128] = ACTIONS(2421), + [anon_sym_i128] = ACTIONS(2421), + [anon_sym_isize] = ACTIONS(2421), + [anon_sym_usize] = ACTIONS(2421), + [anon_sym_f32] = ACTIONS(2421), + [anon_sym_f64] = ACTIONS(2421), + [anon_sym_bool] = ACTIONS(2421), + [anon_sym_str] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [aux_sym__non_special_token_token1] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_impl] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_mod] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_where] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [sym_mutable_specifier] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_metavariable] = ACTIONS(2423), + [sym_raw_string_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), [sym_block_comment] = ACTIONS(3), }, [519] = { - [sym_function_modifiers] = STATE(2279), - [sym_higher_ranked_trait_bound] = STATE(1493), - [sym_removed_trait_bound] = STATE(1493), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1476), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1497), - [sym_array_type] = STATE(1476), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1476), - [sym_tuple_type] = STATE(1476), - [sym_unit_type] = STATE(1476), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1476), - [sym_reference_type] = STATE(1476), - [sym_pointer_type] = STATE(1476), - [sym_empty_type] = STATE(1476), - [sym_abstract_type] = STATE(1476), - [sym_dynamic_type] = STATE(1476), - [sym_macro_invocation] = STATE(1476), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), + [sym_identifier] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_RBRACK] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [aux_sym__non_special_token_token1] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_where] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [sym_mutable_specifier] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [sym_line_comment] = ACTIONS(1198), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2427), + [sym_raw_string_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), [sym_block_comment] = ACTIONS(3), }, [520] = { - [sym_function_modifiers] = STATE(2279), - [sym_higher_ranked_trait_bound] = STATE(1493), - [sym_removed_trait_bound] = STATE(1493), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1476), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1484), - [sym_array_type] = STATE(1476), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1476), - [sym_tuple_type] = STATE(1476), - [sym_unit_type] = STATE(1476), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1476), - [sym_reference_type] = STATE(1476), - [sym_pointer_type] = STATE(1476), - [sym_empty_type] = STATE(1476), - [sym_abstract_type] = STATE(1476), - [sym_dynamic_type] = STATE(1476), - [sym_macro_invocation] = STATE(1476), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_parameter] = STATE(1776), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_scoped_identifier] = STATE(1401), + [sym_scoped_type_identifier] = STATE(1761), + [sym__pattern] = STATE(1652), + [sym_tuple_pattern] = STATE(1652), + [sym_slice_pattern] = STATE(1652), + [sym_tuple_struct_pattern] = STATE(1652), + [sym_struct_pattern] = STATE(1652), + [sym_remaining_field_pattern] = STATE(1652), + [sym_mut_pattern] = STATE(1652), + [sym_range_pattern] = STATE(1652), + [sym_ref_pattern] = STATE(1652), + [sym_captured_pattern] = STATE(1652), + [sym_reference_pattern] = STATE(1652), + [sym_box_pattern] = STATE(1652), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [sym_identifier] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_ref] = ACTIONS(2172), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2433), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), [sym_block_comment] = ACTIONS(3), }, [521] = { - [sym_attribute_item] = STATE(541), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_macro_invocation] = STATE(2271), - [sym_scoped_identifier] = STATE(1439), - [sym_scoped_type_identifier] = STATE(1750), - [sym_match_pattern] = STATE(2271), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1664), - [sym_slice_pattern] = STATE(1664), - [sym_tuple_struct_pattern] = STATE(1664), - [sym_struct_pattern] = STATE(1664), - [sym_remaining_field_pattern] = STATE(1664), - [sym_mut_pattern] = STATE(1664), - [sym_range_pattern] = STATE(1664), - [sym_ref_pattern] = STATE(1664), - [sym_captured_pattern] = STATE(1664), - [sym_reference_pattern] = STATE(1664), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [aux_sym_enum_variant_list_repeat1] = STATE(541), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(405), - [anon_sym_ref] = ACTIONS(2256), + [sym_function_modifiers] = STATE(2324), + [sym_const_parameter] = STATE(1806), + [sym_constrained_type_parameter] = STATE(1660), + [sym_optional_type_parameter] = STATE(1806), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1773), + [sym_bracketed_type] = STATE(2230), + [sym_qualified_type] = STATE(2305), + [sym_lifetime] = STATE(1526), + [sym_array_type] = STATE(1773), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1773), + [sym_tuple_type] = STATE(1773), + [sym_unit_type] = STATE(1773), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1773), + [sym_reference_type] = STATE(1773), + [sym_pointer_type] = STATE(1773), + [sym_empty_type] = STATE(1773), + [sym_abstract_type] = STATE(1773), + [sym_dynamic_type] = STATE(1773), + [sym_macro_invocation] = STATE(1773), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2262), - [sym_mutable_specifier] = ACTIONS(2264), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2270), - [sym_raw_string_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(2443), [sym_block_comment] = ACTIONS(3), }, [522] = { - [sym_function_modifiers] = STATE(2279), - [sym_higher_ranked_trait_bound] = STATE(1493), - [sym_removed_trait_bound] = STATE(1493), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1487), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1484), - [sym_array_type] = STATE(1487), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1487), - [sym_tuple_type] = STATE(1487), - [sym_unit_type] = STATE(1487), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1487), - [sym_reference_type] = STATE(1487), - [sym_pointer_type] = STATE(1487), - [sym_empty_type] = STATE(1487), - [sym_abstract_type] = STATE(1487), - [sym_dynamic_type] = STATE(1487), - [sym_macro_invocation] = STATE(1487), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_parameter] = STATE(2162), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_scoped_identifier] = STATE(1401), + [sym_scoped_type_identifier] = STATE(1761), + [sym__pattern] = STATE(1903), + [sym_tuple_pattern] = STATE(1903), + [sym_slice_pattern] = STATE(1903), + [sym_tuple_struct_pattern] = STATE(1903), + [sym_struct_pattern] = STATE(1903), + [sym_remaining_field_pattern] = STATE(1903), + [sym_mut_pattern] = STATE(1903), + [sym_range_pattern] = STATE(1903), + [sym_ref_pattern] = STATE(1903), + [sym_captured_pattern] = STATE(1903), + [sym_reference_pattern] = STATE(1903), + [sym_box_pattern] = STATE(1903), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [sym_identifier] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_ref] = ACTIONS(2172), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2445), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2433), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), [sym_block_comment] = ACTIONS(3), }, [523] = { - [sym_attribute_item] = STATE(541), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_macro_invocation] = STATE(2271), - [sym_scoped_identifier] = STATE(1439), - [sym_scoped_type_identifier] = STATE(1750), - [sym_match_pattern] = STATE(2272), - [sym__pattern] = STATE(1664), - [sym_tuple_pattern] = STATE(1664), - [sym_slice_pattern] = STATE(1664), - [sym_tuple_struct_pattern] = STATE(1664), - [sym_struct_pattern] = STATE(1664), - [sym_remaining_field_pattern] = STATE(1664), - [sym_mut_pattern] = STATE(1664), - [sym_range_pattern] = STATE(1664), - [sym_ref_pattern] = STATE(1664), - [sym_captured_pattern] = STATE(1664), - [sym_reference_pattern] = STATE(1664), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [aux_sym_enum_variant_list_repeat1] = STATE(541), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(405), - [anon_sym_ref] = ACTIONS(2256), + [sym_function_modifiers] = STATE(2324), + [sym_higher_ranked_trait_bound] = STATE(1463), + [sym_removed_trait_bound] = STATE(1463), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1464), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1465), + [sym_array_type] = STATE(1464), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1464), + [sym_tuple_type] = STATE(1464), + [sym_unit_type] = STATE(1464), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1464), + [sym_reference_type] = STATE(1464), + [sym_pointer_type] = STATE(1464), + [sym_empty_type] = STATE(1464), + [sym_abstract_type] = STATE(1464), + [sym_dynamic_type] = STATE(1464), + [sym_macro_invocation] = STATE(1464), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2262), - [sym_mutable_specifier] = ACTIONS(2264), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2270), - [sym_raw_string_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [524] = { - [sym_function_modifiers] = STATE(2279), - [sym_higher_ranked_trait_bound] = STATE(1465), - [sym_removed_trait_bound] = STATE(1465), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1459), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(1455), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_empty_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_function_modifiers] = STATE(2324), + [sym_higher_ranked_trait_bound] = STATE(1515), + [sym_removed_trait_bound] = STATE(1515), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1511), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1481), + [sym_array_type] = STATE(1511), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1511), + [sym_tuple_type] = STATE(1511), + [sym_unit_type] = STATE(1511), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1511), + [sym_reference_type] = STATE(1511), + [sym_pointer_type] = STATE(1511), + [sym_empty_type] = STATE(1511), + [sym_abstract_type] = STATE(1511), + [sym_dynamic_type] = STATE(1511), + [sym_macro_invocation] = STATE(1511), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [525] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1293), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1293), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1293), - [sym_tuple_type] = STATE(1293), - [sym_unit_type] = STATE(1293), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1293), - [sym_reference_type] = STATE(1293), - [sym_pointer_type] = STATE(1293), - [sym_empty_type] = STATE(1293), - [sym_abstract_type] = STATE(1293), - [sym_dynamic_type] = STATE(1293), - [sym_macro_invocation] = STATE(1293), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_function_modifiers] = STATE(2324), + [sym_higher_ranked_trait_bound] = STATE(1515), + [sym_removed_trait_bound] = STATE(1515), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1484), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1481), + [sym_array_type] = STATE(1484), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1484), + [sym_tuple_type] = STATE(1484), + [sym_unit_type] = STATE(1484), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1484), + [sym_reference_type] = STATE(1484), + [sym_pointer_type] = STATE(1484), + [sym_empty_type] = STATE(1484), + [sym_abstract_type] = STATE(1484), + [sym_dynamic_type] = STATE(1484), + [sym_macro_invocation] = STATE(1484), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(2434), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [526] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1293), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(1293), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1293), - [sym_tuple_type] = STATE(1293), - [sym_unit_type] = STATE(1293), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(1293), - [sym_reference_type] = STATE(1293), - [sym_pointer_type] = STATE(1293), - [sym_empty_type] = STATE(1293), - [sym_abstract_type] = STATE(1293), - [sym_dynamic_type] = STATE(1293), - [sym_macro_invocation] = STATE(1293), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), + [sym_function_modifiers] = STATE(2324), + [sym_higher_ranked_trait_bound] = STATE(1515), + [sym_removed_trait_bound] = STATE(1515), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1484), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(1486), + [sym_array_type] = STATE(1484), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1484), + [sym_tuple_type] = STATE(1484), + [sym_unit_type] = STATE(1484), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1484), + [sym_reference_type] = STATE(1484), + [sym_pointer_type] = STATE(1484), + [sym_empty_type] = STATE(1484), + [sym_abstract_type] = STATE(1484), + [sym_dynamic_type] = STATE(1484), + [sym_macro_invocation] = STATE(1484), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2438), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, [527] = { - [sym_parameter] = STATE(1912), - [sym_bracketed_type] = STATE(2299), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(2296), - [sym_scoped_identifier] = STATE(1394), - [sym_scoped_type_identifier] = STATE(1750), - [sym__pattern] = STATE(1660), - [sym_tuple_pattern] = STATE(1660), - [sym_slice_pattern] = STATE(1660), - [sym_tuple_struct_pattern] = STATE(1660), - [sym_struct_pattern] = STATE(1660), - [sym_remaining_field_pattern] = STATE(1660), - [sym_mut_pattern] = STATE(1660), - [sym_range_pattern] = STATE(1660), - [sym_ref_pattern] = STATE(1660), - [sym_captured_pattern] = STATE(1660), - [sym_reference_pattern] = STATE(1660), - [sym__literal_pattern] = STATE(1489), - [sym_negative_literal] = STATE(1489), - [sym_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_identifier] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), - [anon_sym_default] = ACTIONS(757), - [anon_sym_union] = ACTIONS(757), - [anon_sym_ref] = ACTIONS(2256), + [sym_function_modifiers] = STATE(2234), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1001), + [sym_bracketed_type] = STATE(2328), + [sym_lifetime] = STATE(2172), + [sym_array_type] = STATE(1001), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1001), + [sym_tuple_type] = STATE(1001), + [sym_unit_type] = STATE(1001), + [sym_generic_type] = STATE(738), + [sym_generic_type_with_turbofish] = STATE(2329), + [sym_bounded_type] = STATE(1001), + [sym_reference_type] = STATE(1001), + [sym_pointer_type] = STATE(1001), + [sym_empty_type] = STATE(1001), + [sym_abstract_type] = STATE(1001), + [sym_dynamic_type] = STATE(1001), + [sym_macro_invocation] = STATE(1001), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(712), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2451), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_u8] = ACTIONS(2461), + [anon_sym_i8] = ACTIONS(2461), + [anon_sym_u16] = ACTIONS(2461), + [anon_sym_i16] = ACTIONS(2461), + [anon_sym_u32] = ACTIONS(2461), + [anon_sym_i32] = ACTIONS(2461), + [anon_sym_u64] = ACTIONS(2461), + [anon_sym_i64] = ACTIONS(2461), + [anon_sym_u128] = ACTIONS(2461), + [anon_sym_i128] = ACTIONS(2461), + [anon_sym_isize] = ACTIONS(2461), + [anon_sym_usize] = ACTIONS(2461), + [anon_sym_f32] = ACTIONS(2461), + [anon_sym_f64] = ACTIONS(2461), + [anon_sym_bool] = ACTIONS(2461), + [anon_sym_str] = ACTIONS(2461), + [anon_sym_char] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2262), - [sym_mutable_specifier] = ACTIONS(2444), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_PIPE] = ACTIONS(2446), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_dyn] = ACTIONS(2473), + [sym_mutable_specifier] = ACTIONS(2475), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2448), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2270), - [sym_raw_string_literal] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [sym_self] = ACTIONS(2477), + [sym_super] = ACTIONS(2477), + [sym_crate] = ACTIONS(2477), + [sym_metavariable] = ACTIONS(2479), [sym_block_comment] = ACTIONS(3), }, [528] = { - [sym_function_modifiers] = STATE(2279), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(2111), - [sym_bracketed_type] = STATE(2227), - [sym_lifetime] = STATE(2277), - [sym_array_type] = STATE(2111), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(2111), - [sym_tuple_type] = STATE(2111), - [sym_unit_type] = STATE(2111), - [sym_generic_type] = STATE(1285), - [sym_generic_type_with_turbofish] = STATE(2228), - [sym_bounded_type] = STATE(2111), - [sym_reference_type] = STATE(2111), - [sym_pointer_type] = STATE(2111), - [sym_empty_type] = STATE(2111), - [sym_abstract_type] = STATE(2111), - [sym_dynamic_type] = STATE(2111), - [sym_macro_invocation] = STATE(2111), - [sym_scoped_identifier] = STATE(2156), - [sym_scoped_type_identifier] = STATE(1251), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(1081), - [anon_sym_i8] = ACTIONS(1081), - [anon_sym_u16] = ACTIONS(1081), - [anon_sym_i16] = ACTIONS(1081), - [anon_sym_u32] = ACTIONS(1081), - [anon_sym_i32] = ACTIONS(1081), - [anon_sym_u64] = ACTIONS(1081), - [anon_sym_i64] = ACTIONS(1081), - [anon_sym_u128] = ACTIONS(1081), - [anon_sym_i128] = ACTIONS(1081), - [anon_sym_isize] = ACTIONS(1081), - [anon_sym_usize] = ACTIONS(1081), - [anon_sym_f32] = ACTIONS(1081), - [anon_sym_f64] = ACTIONS(1081), - [anon_sym_bool] = ACTIONS(1081), - [anon_sym_str] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(751), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(755), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(761), - [anon_sym_extern] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_dyn] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(2450), + [sym_attribute_item] = STATE(528), + [aux_sym_enum_variant_list_repeat1] = STATE(528), + [sym_identifier] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_RBRACK] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2483), + [anon_sym_u8] = ACTIONS(2481), + [anon_sym_i8] = ACTIONS(2481), + [anon_sym_u16] = ACTIONS(2481), + [anon_sym_i16] = ACTIONS(2481), + [anon_sym_u32] = ACTIONS(2481), + [anon_sym_i32] = ACTIONS(2481), + [anon_sym_u64] = ACTIONS(2481), + [anon_sym_i64] = ACTIONS(2481), + [anon_sym_u128] = ACTIONS(2481), + [anon_sym_i128] = ACTIONS(2481), + [anon_sym_isize] = ACTIONS(2481), + [anon_sym_usize] = ACTIONS(2481), + [anon_sym_f32] = ACTIONS(2481), + [anon_sym_f64] = ACTIONS(2481), + [anon_sym_bool] = ACTIONS(2481), + [anon_sym_str] = ACTIONS(2481), + [anon_sym_char] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_union] = ACTIONS(2481), + [anon_sym_unsafe] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_COMMA] = ACTIONS(2483), + [anon_sym_ref] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2483), + [anon_sym__] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2483), + [sym_mutable_specifier] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PIPE] = ACTIONS(2483), + [anon_sym_move] = ACTIONS(2481), + [anon_sym_box] = ACTIONS(2481), + [sym_integer_literal] = ACTIONS(2483), + [aux_sym_string_literal_token1] = ACTIONS(2483), + [sym_char_literal] = ACTIONS(2483), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1097), + [sym_self] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_crate] = ACTIONS(2481), + [sym_metavariable] = ACTIONS(2483), + [sym_raw_string_literal] = ACTIONS(2483), + [sym_float_literal] = ACTIONS(2483), [sym_block_comment] = ACTIONS(3), }, [529] = { - [sym_function_modifiers] = STATE(2231), - [sym_extern_modifier] = STATE(1447), - [sym__type] = STATE(1047), - [sym_bracketed_type] = STATE(2325), - [sym_lifetime] = STATE(2338), - [sym_array_type] = STATE(1047), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1047), - [sym_tuple_type] = STATE(1047), - [sym_unit_type] = STATE(1047), - [sym_generic_type] = STATE(884), - [sym_generic_type_with_turbofish] = STATE(2326), - [sym_bounded_type] = STATE(1047), - [sym_reference_type] = STATE(1047), - [sym_pointer_type] = STATE(1047), - [sym_empty_type] = STATE(1047), - [sym_abstract_type] = STATE(1047), - [sym_dynamic_type] = STATE(1047), - [sym_macro_invocation] = STATE(1047), - [sym_scoped_identifier] = STATE(2139), - [sym_scoped_type_identifier] = STATE(718), - [aux_sym_function_modifiers_repeat1] = STATE(1447), - [sym_identifier] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_LBRACK] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_u8] = ACTIONS(2462), - [anon_sym_i8] = ACTIONS(2462), - [anon_sym_u16] = ACTIONS(2462), - [anon_sym_i16] = ACTIONS(2462), - [anon_sym_u32] = ACTIONS(2462), - [anon_sym_i32] = ACTIONS(2462), - [anon_sym_u64] = ACTIONS(2462), - [anon_sym_i64] = ACTIONS(2462), - [anon_sym_u128] = ACTIONS(2462), - [anon_sym_i128] = ACTIONS(2462), - [anon_sym_isize] = ACTIONS(2462), - [anon_sym_usize] = ACTIONS(2462), - [anon_sym_f32] = ACTIONS(2462), - [anon_sym_f64] = ACTIONS(2462), - [anon_sym_bool] = ACTIONS(2462), - [anon_sym_str] = ACTIONS(2462), - [anon_sym_char] = ACTIONS(2462), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(747), - [anon_sym_const] = ACTIONS(747), - [anon_sym_default] = ACTIONS(747), - [anon_sym_fn] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(753), - [anon_sym_impl] = ACTIONS(2466), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(765), + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1761), + [sym__pattern] = STATE(1671), + [sym_tuple_pattern] = STATE(1671), + [sym_slice_pattern] = STATE(1671), + [sym_tuple_struct_pattern] = STATE(1671), + [sym_struct_pattern] = STATE(1671), + [sym_remaining_field_pattern] = STATE(1671), + [sym_mut_pattern] = STATE(1671), + [sym_range_pattern] = STATE(1671), + [sym_ref_pattern] = STATE(1671), + [sym_captured_pattern] = STATE(1671), + [sym_reference_pattern] = STATE(1671), + [sym_box_pattern] = STATE(1671), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [sym_identifier] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2490), + [anon_sym_i8] = ACTIONS(2490), + [anon_sym_u16] = ACTIONS(2490), + [anon_sym_i16] = ACTIONS(2490), + [anon_sym_u32] = ACTIONS(2490), + [anon_sym_i32] = ACTIONS(2490), + [anon_sym_u64] = ACTIONS(2490), + [anon_sym_i64] = ACTIONS(2490), + [anon_sym_u128] = ACTIONS(2490), + [anon_sym_i128] = ACTIONS(2490), + [anon_sym_isize] = ACTIONS(2490), + [anon_sym_usize] = ACTIONS(2490), + [anon_sym_f32] = ACTIONS(2490), + [anon_sym_f64] = ACTIONS(2490), + [anon_sym_bool] = ACTIONS(2490), + [anon_sym_str] = ACTIONS(2490), + [anon_sym_char] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2496), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2498), + [sym_super] = ACTIONS(2500), + [sym_crate] = ACTIONS(2500), + [sym_metavariable] = ACTIONS(2502), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [530] = { + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1761), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1798), + [sym_slice_pattern] = STATE(1798), + [sym_tuple_struct_pattern] = STATE(1798), + [sym_struct_pattern] = STATE(1798), + [sym_remaining_field_pattern] = STATE(1798), + [sym_mut_pattern] = STATE(1798), + [sym_range_pattern] = STATE(1798), + [sym_ref_pattern] = STATE(1798), + [sym_captured_pattern] = STATE(1798), + [sym_reference_pattern] = STATE(1798), + [sym_box_pattern] = STATE(1798), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [sym_identifier] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_RBRACK] = ACTIONS(1013), + [anon_sym_u8] = ACTIONS(2490), + [anon_sym_i8] = ACTIONS(2490), + [anon_sym_u16] = ACTIONS(2490), + [anon_sym_i16] = ACTIONS(2490), + [anon_sym_u32] = ACTIONS(2490), + [anon_sym_i32] = ACTIONS(2490), + [anon_sym_u64] = ACTIONS(2490), + [anon_sym_i64] = ACTIONS(2490), + [anon_sym_u128] = ACTIONS(2490), + [anon_sym_i128] = ACTIONS(2490), + [anon_sym_isize] = ACTIONS(2490), + [anon_sym_usize] = ACTIONS(2490), + [anon_sym_f32] = ACTIONS(2490), + [anon_sym_f64] = ACTIONS(2490), + [anon_sym_bool] = ACTIONS(2490), + [anon_sym_str] = ACTIONS(2490), + [anon_sym_char] = ACTIONS(2490), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(2496), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_crate] = ACTIONS(2500), + [sym_metavariable] = ACTIONS(2502), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [531] = { + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_scoped_identifier] = STATE(1401), + [sym_scoped_type_identifier] = STATE(1761), + [sym__pattern] = STATE(1671), + [sym_tuple_pattern] = STATE(1671), + [sym_slice_pattern] = STATE(1671), + [sym_tuple_struct_pattern] = STATE(1671), + [sym_struct_pattern] = STATE(1671), + [sym_remaining_field_pattern] = STATE(1671), + [sym_mut_pattern] = STATE(1671), + [sym_range_pattern] = STATE(1671), + [sym_ref_pattern] = STATE(1671), + [sym_captured_pattern] = STATE(1671), + [sym_reference_pattern] = STATE(1671), + [sym_box_pattern] = STATE(1671), + [sym__literal_pattern] = STATE(1507), + [sym_negative_literal] = STATE(1507), + [sym_string_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [sym_identifier] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_ref] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2178), + [sym_mutable_specifier] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(1095), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), + [sym_block_comment] = ACTIONS(3), + }, + [532] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(2079), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(2079), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(2079), + [sym_tuple_type] = STATE(2079), + [sym_unit_type] = STATE(2079), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(2079), + [sym_reference_type] = STATE(2079), + [sym_pointer_type] = STATE(2079), + [sym_empty_type] = STATE(2079), + [sym_abstract_type] = STATE(2079), + [sym_dynamic_type] = STATE(2079), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(2508), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1761), + [sym__pattern] = STATE(1936), + [sym_tuple_pattern] = STATE(1936), + [sym_slice_pattern] = STATE(1936), + [sym_tuple_struct_pattern] = STATE(1936), + [sym_struct_pattern] = STATE(1936), + [sym_remaining_field_pattern] = STATE(1936), + [sym_mut_pattern] = STATE(1936), + [sym_range_pattern] = STATE(1936), + [sym_ref_pattern] = STATE(1936), + [sym_captured_pattern] = STATE(1936), + [sym_reference_pattern] = STATE(1936), + [sym_box_pattern] = STATE(1936), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [sym_identifier] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2490), + [anon_sym_i8] = ACTIONS(2490), + [anon_sym_u16] = ACTIONS(2490), + [anon_sym_i16] = ACTIONS(2490), + [anon_sym_u32] = ACTIONS(2490), + [anon_sym_i32] = ACTIONS(2490), + [anon_sym_u64] = ACTIONS(2490), + [anon_sym_i64] = ACTIONS(2490), + [anon_sym_u128] = ACTIONS(2490), + [anon_sym_i128] = ACTIONS(2490), + [anon_sym_isize] = ACTIONS(2490), + [anon_sym_usize] = ACTIONS(2490), + [anon_sym_f32] = ACTIONS(2490), + [anon_sym_f64] = ACTIONS(2490), + [anon_sym_bool] = ACTIONS(2490), + [anon_sym_str] = ACTIONS(2490), + [anon_sym_char] = ACTIONS(2490), + [anon_sym_COMMA] = ACTIONS(2512), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2496), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_crate] = ACTIONS(2500), + [sym_metavariable] = ACTIONS(2502), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [534] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1318), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1318), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1318), + [sym_tuple_type] = STATE(1318), + [sym_unit_type] = STATE(1318), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1318), + [sym_reference_type] = STATE(1318), + [sym_pointer_type] = STATE(1318), + [sym_empty_type] = STATE(1318), + [sym_abstract_type] = STATE(1318), + [sym_dynamic_type] = STATE(1318), + [sym_macro_invocation] = STATE(1318), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(2516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2518), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), + [sym_block_comment] = ACTIONS(3), + }, + [535] = { + [sym_bracketed_type] = STATE(2337), + [sym_generic_type] = STATE(2336), + [sym_generic_type_with_turbofish] = STATE(2335), + [sym_scoped_identifier] = STATE(1324), + [sym_scoped_type_identifier] = STATE(1761), + [sym__pattern] = STATE(1793), + [sym_tuple_pattern] = STATE(1793), + [sym_slice_pattern] = STATE(1793), + [sym_tuple_struct_pattern] = STATE(1793), + [sym_struct_pattern] = STATE(1793), + [sym_remaining_field_pattern] = STATE(1793), + [sym_mut_pattern] = STATE(1793), + [sym_range_pattern] = STATE(1793), + [sym_ref_pattern] = STATE(1793), + [sym_captured_pattern] = STATE(1793), + [sym_reference_pattern] = STATE(1793), + [sym_box_pattern] = STATE(1793), + [sym__literal_pattern] = STATE(1384), + [sym_negative_literal] = STATE(1384), + [sym_string_literal] = STATE(1384), + [sym_boolean_literal] = STATE(1384), + [sym_identifier] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2490), + [anon_sym_i8] = ACTIONS(2490), + [anon_sym_u16] = ACTIONS(2490), + [anon_sym_i16] = ACTIONS(2490), + [anon_sym_u32] = ACTIONS(2490), + [anon_sym_i32] = ACTIONS(2490), + [anon_sym_u64] = ACTIONS(2490), + [anon_sym_i64] = ACTIONS(2490), + [anon_sym_u128] = ACTIONS(2490), + [anon_sym_i128] = ACTIONS(2490), + [anon_sym_isize] = ACTIONS(2490), + [anon_sym_usize] = ACTIONS(2490), + [anon_sym_f32] = ACTIONS(2490), + [anon_sym_f64] = ACTIONS(2490), + [anon_sym_bool] = ACTIONS(2490), + [anon_sym_str] = ACTIONS(2490), + [anon_sym_char] = ACTIONS(2490), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_ref] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym__] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(2496), + [sym_mutable_specifier] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_box] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(599), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(599), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_crate] = ACTIONS(2500), + [sym_metavariable] = ACTIONS(2502), + [sym_raw_string_literal] = ACTIONS(599), + [sym_float_literal] = ACTIONS(599), + [sym_block_comment] = ACTIONS(3), + }, + [536] = { + [sym_function_modifiers] = STATE(2324), + [sym_extern_modifier] = STATE(1459), + [sym__type] = STATE(1318), + [sym_bracketed_type] = STATE(2230), + [sym_lifetime] = STATE(2323), + [sym_array_type] = STATE(1318), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1318), + [sym_tuple_type] = STATE(1318), + [sym_unit_type] = STATE(1318), + [sym_generic_type] = STATE(1283), + [sym_generic_type_with_turbofish] = STATE(2231), + [sym_bounded_type] = STATE(1318), + [sym_reference_type] = STATE(1318), + [sym_pointer_type] = STATE(1318), + [sym_empty_type] = STATE(1318), + [sym_abstract_type] = STATE(1318), + [sym_dynamic_type] = STATE(1318), + [sym_macro_invocation] = STATE(1318), + [sym_scoped_identifier] = STATE(2091), + [sym_scoped_type_identifier] = STATE(1250), + [aux_sym_function_modifiers_repeat1] = STATE(1459), + [sym_identifier] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(1085), + [anon_sym_i8] = ACTIONS(1085), + [anon_sym_u16] = ACTIONS(1085), + [anon_sym_i16] = ACTIONS(1085), + [anon_sym_u32] = ACTIONS(1085), + [anon_sym_i32] = ACTIONS(1085), + [anon_sym_u64] = ACTIONS(1085), + [anon_sym_i64] = ACTIONS(1085), + [anon_sym_u128] = ACTIONS(1085), + [anon_sym_i128] = ACTIONS(1085), + [anon_sym_isize] = ACTIONS(1085), + [anon_sym_usize] = ACTIONS(1085), + [anon_sym_f32] = ACTIONS(1085), + [anon_sym_f64] = ACTIONS(1085), + [anon_sym_bool] = ACTIONS(1085), + [anon_sym_str] = ACTIONS(1085), + [anon_sym_char] = ACTIONS(1085), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_extern] = ACTIONS(577), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2472), - [anon_sym_dyn] = ACTIONS(2474), - [sym_mutable_specifier] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_dyn] = ACTIONS(589), + [sym_mutable_specifier] = ACTIONS(2522), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_crate] = ACTIONS(2478), - [sym_metavariable] = ACTIONS(2480), + [sym_self] = ACTIONS(1099), + [sym_super] = ACTIONS(1099), + [sym_crate] = ACTIONS(1099), + [sym_metavariable] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, }; @@ -54160,258 +54755,68 @@ static uint16_t ts_small_parse_table[] = { [0] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2482), 1, + ACTIONS(2524), 1, anon_sym_SQUOTE, - ACTIONS(2484), 1, + ACTIONS(2526), 1, sym_mutable_specifier, - STATE(525), 1, - sym_lifetime, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, - sym_scoped_type_identifier, - STATE(1285), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1312), 12, - sym__type, - 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(1081), 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, - [125] = 30, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2486), 1, - sym_identifier, - ACTIONS(2488), 1, - anon_sym_LT, - STATE(596), 1, - sym_type_parameters, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1437), 1, - sym_scoped_type_identifier, - STATE(1585), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(532), 1, sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1583), 12, - sym__type, - 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(1081), 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, - [250] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2490), 1, - anon_sym_RPAREN, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1652), 12, + STATE(2069), 12, sym__type, sym_array_type, sym_function_type, @@ -54424,7 +54829,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -54442,1197 +54847,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [375] = 28, + [125] = 27, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(783), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1017), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_ref, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2262), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2270), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2440), 1, - sym_identifier, - ACTIONS(2444), 1, - sym_mutable_specifier, - ACTIONS(2448), 1, - sym_self, - ACTIONS(2492), 1, + ACTIONS(2528), 1, + anon_sym_RPAREN, + ACTIONS(2530), 1, anon_sym__, - STATE(1394), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2141), 1, - sym_parameter, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(757), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(1093), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2268), 2, + ACTIONS(2500), 3, + sym_self, sym_super, sym_crate, - ACTIONS(2266), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1489), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1953), 11, + STATE(1824), 12, sym__pattern, sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2254), 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, - [496] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2494), 1, - anon_sym_RPAREN, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, - sym_scoped_type_identifier, - STATE(1285), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1842), 12, - sym__type, - 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(1081), 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, - [621] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2496), 1, - anon_sym_RPAREN, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, - sym_scoped_type_identifier, - STATE(1285), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1682), 12, - sym__type, - 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(1081), 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, - [746] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2498), 1, - anon_sym_RPAREN, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, - sym_scoped_type_identifier, - STATE(1285), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1842), 12, - sym__type, - 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(1081), 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, - [871] = 30, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2488), 1, - anon_sym_LT, - ACTIONS(2500), 1, - sym_identifier, - STATE(603), 1, - sym_type_parameters, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1432), 1, - sym_scoped_type_identifier, - STATE(1628), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1623), 12, - sym__type, - 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(1081), 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, - [996] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2502), 1, - anon_sym_RPAREN, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, - sym_scoped_type_identifier, - STATE(1285), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1842), 12, - sym__type, - 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(1081), 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, - [1121] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2504), 1, - anon_sym_RPAREN, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, - sym_scoped_type_identifier, - STATE(1285), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1842), 12, - sym__type, - 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(1081), 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, - [1246] = 30, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2488), 1, - anon_sym_LT, - ACTIONS(2506), 1, - sym_identifier, - STATE(613), 1, - sym_type_parameters, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1460), 1, - sym_scoped_type_identifier, - STATE(1615), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1620), 12, - sym__type, - 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(1081), 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, - [1371] = 5, - ACTIONS(2512), 1, - anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(541), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2510), 19, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - 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(2508), 40, - 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_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_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1446] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2482), 1, - anon_sym_SQUOTE, - ACTIONS(2515), 1, - sym_mutable_specifier, - STATE(528), 1, - sym_lifetime, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, - sym_scoped_type_identifier, - STATE(1285), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(2120), 12, - sym__type, - 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(1081), 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, - [1571] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, - anon_sym_STAR, - ACTIONS(2464), 1, - anon_sym_fn, - ACTIONS(2466), 1, - anon_sym_impl, - ACTIONS(2468), 1, - anon_sym_BANG, - ACTIONS(2470), 1, - anon_sym_COLON_COLON, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, - sym_metavariable, - ACTIONS(2482), 1, - anon_sym_SQUOTE, - ACTIONS(2517), 1, - sym_mutable_specifier, - STATE(529), 1, - sym_lifetime, - STATE(718), 1, - sym_scoped_type_identifier, - STATE(884), 1, - sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, - sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, - sym_bracketed_type, - STATE(2326), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(996), 12, - sym__type, - 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(2462), 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, - [1696] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, - sym_scoped_type_identifier, - STATE(1285), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2216), 1, - sym_qualified_type, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1942), 12, - sym__type, - 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(1081), 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, - [1821] = 30, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2488), 1, - anon_sym_LT, - ACTIONS(2519), 1, - sym_identifier, - STATE(624), 1, - sym_type_parameters, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1427), 1, - sym_scoped_type_identifier, - STATE(1629), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1636), 12, - sym__type, - 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(1081), 17, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -55650,69 +54939,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1946] = 29, + [244] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2532), 1, + anon_sym_RPAREN, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1715), 12, + STATE(1712), 12, sym__type, sym_array_type, sym_function_type, @@ -55725,7 +55016,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -55743,82 +55034,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2068] = 29, + [369] = 27, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2530), 1, + anon_sym__, + ACTIONS(2534), 1, + anon_sym_RBRACK, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1674), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1824), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -55836,69 +55126,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2190] = 29, + [488] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2536), 1, + anon_sym_RPAREN, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(2085), 12, + STATE(1816), 12, sym__type, sym_array_type, sym_function_type, @@ -55911,7 +55203,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -55929,69 +55221,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2312] = 29, + [613] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(2466), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(2468), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(1101), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2538), 1, + anon_sym_RPAREN, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(1283), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, + STATE(2323), 1, sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1054), 12, + STATE(1816), 12, sym__type, sym_array_type, sym_function_type, @@ -56004,7 +55298,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56022,69 +55316,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2434] = 29, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, + [738] = 30, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2540), 1, + sym_identifier, + ACTIONS(2542), 1, + anon_sym_LT, + STATE(641), 1, + sym_type_parameters, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1444), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1629), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1760), 12, + STATE(1600), 12, sym__type, sym_array_type, sym_function_type, @@ -56097,7 +55393,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56115,82 +55411,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2556] = 29, + [863] = 27, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2530), 1, + anon_sym__, + ACTIONS(2544), 1, + anon_sym_RPAREN, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1549), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1824), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56208,69 +55503,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2678] = 29, + [982] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(2466), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(2468), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(1101), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2546), 1, + anon_sym_RPAREN, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(1283), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, + STATE(2323), 1, sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1056), 12, + STATE(1816), 12, sym__type, sym_array_type, sym_function_type, @@ -56283,7 +55580,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56301,82 +55598,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2800] = 29, + [1107] = 27, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2456), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2460), 1, - anon_sym_STAR, - ACTIONS(2464), 1, - anon_sym_fn, - ACTIONS(2466), 1, - anon_sym_impl, - ACTIONS(2468), 1, - anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(2502), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2530), 1, + anon_sym__, + ACTIONS(2548), 1, + anon_sym_RPAREN, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, - sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2326), 1, - sym_generic_type_with_turbofish, - STATE(2338), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1006), 12, - sym__type, - 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(2462), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1824), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56394,82 +55690,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2922] = 29, + [1226] = 27, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2530), 1, + anon_sym__, + ACTIONS(2550), 1, + anon_sym_RBRACK, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(2069), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1824), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56487,69 +55782,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3044] = 29, + [1345] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2524), 1, anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2552), 1, + sym_mutable_specifier, + STATE(527), 1, + sym_lifetime, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(738), 1, sym_generic_type, - STATE(2156), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2234), 1, + sym_function_modifiers, + STATE(2328), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2329), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1572), 12, + STATE(979), 12, sym__type, sym_array_type, sym_function_type, @@ -56562,7 +55859,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56580,69 +55877,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3166] = 29, + [1470] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2524), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2554), 1, + sym_mutable_specifier, + STATE(536), 1, + sym_lifetime, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1719), 12, + STATE(1316), 12, sym__type, sym_array_type, sym_function_type, @@ -56655,7 +55954,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56673,69 +55972,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3288] = 29, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, + [1595] = 30, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2542), 1, + anon_sym_LT, + ACTIONS(2556), 1, + sym_identifier, + STATE(604), 1, + sym_type_parameters, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1434), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1590), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1720), 12, + STATE(1592), 12, sym__type, sym_array_type, sym_function_type, @@ -56748,7 +56049,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56766,69 +56067,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3410] = 29, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, + [1720] = 30, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2542), 1, + anon_sym_LT, + ACTIONS(2558), 1, + sym_identifier, + STATE(620), 1, + sym_type_parameters, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1470), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1621), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1823), 12, + STATE(1620), 12, sym__type, sym_array_type, sym_function_type, @@ -56841,7 +56144,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56859,69 +56162,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3532] = 29, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, + [1845] = 30, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(2466), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(2468), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(1101), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2542), 1, + anon_sym_LT, + ACTIONS(2560), 1, + sym_identifier, + STATE(651), 1, + sym_type_parameters, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1473), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(1617), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, + STATE(2323), 1, sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(968), 12, + STATE(1589), 12, sym__type, sym_array_type, sym_function_type, @@ -56934,7 +56239,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56952,82 +56257,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3654] = 29, + [1970] = 27, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2530), 1, + anon_sym__, + ACTIONS(2562), 1, + anon_sym_RPAREN, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1834), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1824), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57045,69 +56349,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3776] = 29, + [2089] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(2466), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(2468), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(1101), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2564), 1, + anon_sym_RPAREN, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(1283), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, + STATE(2323), 1, sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(971), 12, + STATE(1816), 12, sym__type, sym_array_type, sym_function_type, @@ -57120,7 +56426,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57138,69 +56444,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3898] = 29, + [2214] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(2466), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(2468), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(1101), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2566), 1, + anon_sym_RPAREN, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(1283), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, + STATE(2323), 1, sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(972), 12, + STATE(1659), 12, sym__type, sym_array_type, sym_function_type, @@ -57213,7 +56521,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57231,69 +56539,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4020] = 29, + [2339] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2305), 1, + sym_qualified_type, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1919), 12, + STATE(1773), 12, sym__type, sym_array_type, sym_function_type, @@ -57306,7 +56616,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57324,69 +56634,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4142] = 29, + [2464] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(2466), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(2468), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(1101), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(1283), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, + STATE(2323), 1, sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(973), 12, + STATE(1594), 12, sym__type, sym_array_type, sym_function_type, @@ -57399,7 +56709,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57417,69 +56727,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4264] = 29, + [2586] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1554), 12, + STATE(1918), 12, sym__type, sym_array_type, sym_function_type, @@ -57492,7 +56802,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57510,69 +56820,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 29, + [2708] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1514), 12, + STATE(1639), 12, sym__type, sym_array_type, sym_function_type, @@ -57585,7 +56895,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57603,69 +56913,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4508] = 29, + [2830] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1300), 12, + STATE(1551), 12, sym__type, sym_array_type, sym_function_type, @@ -57678,7 +56988,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57696,69 +57006,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4630] = 29, + [2952] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, + anon_sym_LPAREN, + ACTIONS(2168), 1, + anon_sym_LBRACK, + ACTIONS(2174), 1, + anon_sym_COLON_COLON, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, + anon_sym_AMP, + ACTIONS(2502), 1, + sym_metavariable, + ACTIONS(2568), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, + sym_scoped_type_identifier, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, + sym_generic_type, + STATE(2337), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(2184), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 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, + [3068] = 29, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1563), 12, + STATE(1311), 12, sym__type, sym_array_type, sym_function_type, @@ -57771,7 +57171,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57789,69 +57189,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4752] = 29, + [3190] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1774), 12, + STATE(1309), 12, sym__type, sym_array_type, sym_function_type, @@ -57864,7 +57264,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57882,69 +57282,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4874] = 29, + [3312] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1568), 12, + STATE(1310), 12, sym__type, sym_array_type, sym_function_type, @@ -57957,7 +57357,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57975,69 +57375,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4996] = 29, + [3434] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(2094), 12, + STATE(1874), 12, sym__type, sym_array_type, sym_function_type, @@ -58050,7 +57450,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58068,69 +57468,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5118] = 29, + [3556] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1527), 12, + STATE(1816), 12, sym__type, sym_array_type, sym_function_type, @@ -58143,7 +57543,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58161,46 +57561,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5240] = 27, + [3678] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1009), 1, - anon_sym_COMMA, - ACTIONS(1011), 1, - anon_sym__, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2523), 1, - anon_sym_RPAREN, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - STATE(1321), 1, + ACTIONS(2570), 1, + anon_sym__, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -58208,21 +57606,111 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(2393), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 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, + [3794] = 26, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(2164), 1, + anon_sym_LPAREN, + ACTIONS(2168), 1, + anon_sym_LBRACK, + ACTIONS(2172), 1, + anon_sym_ref, + ACTIONS(2174), 1, + anon_sym_COLON_COLON, + ACTIONS(2178), 1, + anon_sym_AMP, + ACTIONS(2180), 1, + sym_mutable_specifier, + ACTIONS(2182), 1, + anon_sym_box, + ACTIONS(2188), 1, + sym_metavariable, + ACTIONS(2429), 1, + sym_identifier, + ACTIONS(2572), 1, + anon_sym__, + STATE(1401), 1, + sym_scoped_identifier, + STATE(1761), 1, + sym_scoped_type_identifier, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, + sym_generic_type, + STATE(2337), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1097), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2186), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(2184), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1507), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1740), 11, + STATE(1881), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -58234,7 +57722,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2170), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58252,46 +57741,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5358] = 27, + [3910] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(1023), 1, - anon_sym_RBRACK, ACTIONS(1027), 1, - anon_sym_COMMA, - ACTIONS(1031), 1, - anon_sym__, - ACTIONS(2248), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - STATE(1321), 1, + ACTIONS(2574), 1, + anon_sym__, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -58299,21 +57786,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1748), 11, + STATE(2090), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -58325,7 +57812,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58343,69 +57831,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5476] = 29, + [4026] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1575), 12, + STATE(1884), 12, sym__type, sym_array_type, sym_function_type, @@ -58418,7 +57906,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58436,69 +57924,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5598] = 29, + [4148] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, + anon_sym_COLON_COLON, + ACTIONS(1091), 1, + anon_sym_AMP, + ACTIONS(1101), 1, + sym_metavariable, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, + sym_scoped_type_identifier, + STATE(1283), 1, + sym_generic_type, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, + sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1823), 12, + sym__type, + 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(1085), 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, + [4270] = 29, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1294), 12, + STATE(1769), 12, sym__type, sym_array_type, sym_function_type, @@ -58511,7 +58092,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58529,69 +58110,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5720] = 29, + [4392] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(1079), 1, anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, + anon_sym_COLON_COLON, + ACTIONS(1091), 1, + anon_sym_AMP, + ACTIONS(1101), 1, + sym_metavariable, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, + sym_scoped_type_identifier, + STATE(1283), 1, + sym_generic_type, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, + sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1573), 12, + sym__type, + 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(1085), 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, + [4514] = 29, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1301), 12, + STATE(1710), 12, sym__type, sym_array_type, sym_function_type, @@ -58604,7 +58278,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58622,69 +58296,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5842] = 29, + [4636] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1611), 12, + STATE(1636), 12, sym__type, sym_array_type, sym_function_type, @@ -58697,7 +58371,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58715,82 +58389,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5964] = 29, + [4758] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(1057), 1, + anon_sym__, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2172), 1, + anon_sym_ref, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2178), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2180), 1, + sym_mutable_specifier, + ACTIONS(2182), 1, + anon_sym_box, + ACTIONS(2188), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2429), 1, sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + STATE(1401), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1097), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2186), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1960), 12, - sym__type, - 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(1081), 17, + ACTIONS(2184), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1507), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1370), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2170), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58808,82 +58479,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6086] = 29, + [4874] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2172), 1, + anon_sym_ref, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2178), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2180), 1, + sym_mutable_specifier, + ACTIONS(2182), 1, + anon_sym_box, + ACTIONS(2188), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2429), 1, sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2576), 1, + anon_sym__, + STATE(1401), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1097), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2186), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1699), 12, - sym__type, - 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(1081), 17, + ACTIONS(2184), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1507), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1354), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2170), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58901,69 +58569,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6208] = 29, + [4990] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1826), 12, + STATE(1908), 12, sym__type, sym_array_type, sym_function_type, @@ -58976,7 +58644,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58994,69 +58662,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6330] = 29, + [5112] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1569), 12, + STATE(2049), 12, sym__type, sym_array_type, sym_function_type, @@ -59069,7 +58737,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59087,69 +58755,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6452] = 29, + [5234] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(738), 1, sym_generic_type, - STATE(2156), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2172), 1, sym_lifetime, - STATE(2279), 1, + STATE(2234), 1, sym_function_modifiers, + STATE(2328), 1, + sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1534), 12, + STATE(965), 12, sym__type, sym_array_type, sym_function_type, @@ -59162,7 +58830,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59180,82 +58848,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6574] = 29, + [5356] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2578), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(2062), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(2258), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59273,82 +58938,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6696] = 29, + [5472] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2530), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1853), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1824), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59366,69 +59028,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6818] = 29, + [5588] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1626), 12, + STATE(1953), 12, sym__type, sym_array_type, sym_function_type, @@ -59441,7 +59103,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59459,69 +59121,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6940] = 29, + [5710] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(738), 1, sym_generic_type, - STATE(2156), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2172), 1, sym_lifetime, - STATE(2279), 1, + STATE(2234), 1, sym_function_modifiers, + STATE(2328), 1, + sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1627), 12, + STATE(999), 12, sym__type, sym_array_type, sym_function_type, @@ -59534,7 +59196,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59552,69 +59214,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7062] = 29, + [5832] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1866), 12, + STATE(1886), 12, sym__type, sym_array_type, sym_function_type, @@ -59627,7 +59289,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59645,69 +59307,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7184] = 29, + [5954] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1836), 12, + STATE(1911), 12, sym__type, sym_array_type, sym_function_type, @@ -59720,7 +59382,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59738,69 +59400,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7306] = 29, + [6076] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1389), 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(1391), 41, + 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_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_move, + anon_sym_box, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6146] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(738), 1, sym_generic_type, - STATE(2156), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2172), 1, sym_lifetime, - STATE(2279), 1, + STATE(2234), 1, sym_function_modifiers, + STATE(2328), 1, + sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(2046), 12, + STATE(994), 12, sym__type, sym_array_type, sym_function_type, @@ -59813,7 +59542,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59831,69 +59560,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7428] = 29, + [6268] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1887), 12, + STATE(1899), 12, sym__type, sym_array_type, sym_function_type, @@ -59906,7 +59635,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59924,69 +59653,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7550] = 29, + [6390] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1888), 12, + STATE(1576), 12, sym__type, sym_array_type, sym_function_type, @@ -59999,7 +59728,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60017,69 +59746,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7672] = 29, + [6512] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1576), 12, + STATE(2014), 12, sym__type, sym_array_type, sym_function_type, @@ -60092,7 +59821,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60110,82 +59839,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7794] = 29, + [6634] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2580), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1955), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1827), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60203,69 +59929,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7916] = 29, + [6750] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1639), 12, + STATE(1708), 12, sym__type, sym_array_type, sym_function_type, @@ -60278,7 +60004,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60296,69 +60022,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8038] = 29, + [6872] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2533), 1, + ACTIONS(2280), 1, sym_identifier, - STATE(1215), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, sym_for_lifetimes, - STATE(1435), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1579), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1577), 12, + STATE(1541), 12, sym__type, sym_array_type, sym_function_type, @@ -60371,7 +60097,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60389,69 +60115,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8160] = 29, + [6994] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1517), 12, + STATE(1566), 12, sym__type, sym_array_type, sym_function_type, @@ -60464,7 +60190,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60482,69 +60208,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8282] = 29, + [7116] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1690), 12, + STATE(1707), 12, sym__type, sym_array_type, sym_function_type, @@ -60557,7 +60283,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60575,69 +60301,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8404] = 29, + [7238] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1315), 12, + STATE(2094), 12, sym__type, sym_array_type, sym_function_type, @@ -60650,7 +60376,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60668,69 +60394,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8526] = 29, + [7360] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1562), 12, + STATE(1321), 12, sym__type, sym_array_type, sym_function_type, @@ -60743,7 +60469,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60761,69 +60487,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8648] = 29, + [7482] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1682), 12, + STATE(1803), 12, sym__type, sym_array_type, sym_function_type, @@ -60836,7 +60562,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60854,69 +60580,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8770] = 29, + [7604] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1814), 12, + STATE(1812), 12, sym__type, sym_array_type, sym_function_type, @@ -60929,7 +60655,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60947,69 +60673,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8892] = 29, + [7726] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2535), 1, - sym_identifier, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1446), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1614), 1, + STATE(738), 1, sym_generic_type, - STATE(2156), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2172), 1, sym_lifetime, - STATE(2279), 1, + STATE(2234), 1, sym_function_modifiers, + STATE(2328), 1, + sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1593), 12, + STATE(1001), 12, sym__type, sym_array_type, sym_function_type, @@ -61022,7 +60748,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61040,69 +60766,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9014] = 29, + [7848] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1986), 12, + STATE(2076), 12, sym__type, sym_array_type, sym_function_type, @@ -61115,7 +60841,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61133,69 +60859,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9136] = 29, + [7970] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, + anon_sym_LPAREN, + ACTIONS(2168), 1, + anon_sym_LBRACK, + ACTIONS(2174), 1, + anon_sym_COLON_COLON, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, + anon_sym_AMP, + ACTIONS(2502), 1, + sym_metavariable, + ACTIONS(2582), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, + sym_scoped_type_identifier, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, + sym_generic_type, + STATE(2337), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1326), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 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, + [8086] = 29, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1467), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1606), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1964), 12, + STATE(1605), 12, sym__type, sym_array_type, sym_function_type, @@ -61208,7 +61024,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61226,69 +61042,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9258] = 29, + [8208] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1962), 12, + STATE(1807), 12, sym__type, sym_array_type, sym_function_type, @@ -61301,7 +61117,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61319,69 +61135,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9380] = 29, + [8330] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1600), 12, + STATE(1488), 12, sym__type, sym_array_type, sym_function_type, @@ -61394,7 +61210,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61412,69 +61228,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9502] = 29, + [8452] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(1047), 1, + anon_sym__, + ACTIONS(2164), 1, + anon_sym_LPAREN, + ACTIONS(2168), 1, + anon_sym_LBRACK, + ACTIONS(2174), 1, + anon_sym_COLON_COLON, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, + anon_sym_AMP, + ACTIONS(2502), 1, + sym_metavariable, + ACTIONS(2586), 1, + sym_mutable_specifier, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, + sym_scoped_type_identifier, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, + sym_generic_type, + STATE(2337), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1360), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 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, + [8568] = 29, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1601), 12, + STATE(1315), 12, sym__type, sym_array_type, sym_function_type, @@ -61487,7 +61393,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61505,69 +61411,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9624] = 29, + [8690] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1935), 12, + STATE(1312), 12, sym__type, sym_array_type, sym_function_type, @@ -61580,7 +61486,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61598,82 +61504,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9746] = 29, + [8812] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2588), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1772), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1361), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61691,69 +61594,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9868] = 29, + [8928] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1817), 12, + STATE(1595), 12, sym__type, sym_array_type, sym_function_type, @@ -61766,7 +61669,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61784,69 +61687,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9990] = 29, + [9050] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1309), 12, + STATE(1591), 12, sym__type, sym_array_type, sym_function_type, @@ -61859,7 +61762,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -61877,162 +61780,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10112] = 29, + [9172] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(1087), 1, - anon_sym_AMP, - ACTIONS(1097), 1, - sym_metavariable, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2451), 1, sym_identifier, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1434), 1, - sym_scoped_type_identifier, - STATE(1637), 1, - sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1638), 12, - sym__type, - 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(1081), 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, - [10234] = 29, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(2453), 1, + anon_sym_LPAREN, + ACTIONS(2455), 1, + anon_sym_LBRACK, + ACTIONS(2459), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(2463), 1, anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, + ACTIONS(2465), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(2467), 1, anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(738), 1, sym_generic_type, - STATE(2156), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2172), 1, sym_lifetime, - STATE(2279), 1, + STATE(2234), 1, sym_function_modifiers, + STATE(2328), 1, + sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1308), 12, + STATE(1000), 12, sym__type, sym_array_type, sym_function_type, @@ -62045,7 +61855,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62063,69 +61873,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10356] = 29, + [9294] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1891), 12, + STATE(1583), 12, sym__type, sym_array_type, sym_function_type, @@ -62138,7 +61948,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62156,69 +61966,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10478] = 29, + [9416] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2590), 1, + sym_self, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, + ACTIONS(1099), 2, sym_super, sym_crate, - ACTIONS(747), 4, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1604), 12, + STATE(1315), 12, sym__type, sym_array_type, sym_function_type, @@ -62231,7 +62042,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62249,69 +62060,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10600] = 29, + [9540] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(2142), 12, + STATE(1643), 12, sym__type, sym_array_type, sym_function_type, @@ -62324,7 +62135,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62342,69 +62153,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10722] = 29, + [9662] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1599), 12, + STATE(2079), 12, sym__type, sym_array_type, sym_function_type, @@ -62417,7 +62228,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62435,69 +62246,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10844] = 29, + [9784] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1640), 12, + STATE(1525), 12, sym__type, sym_array_type, sym_function_type, @@ -62510,7 +62321,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62528,69 +62339,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10966] = 29, + [9906] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(738), 1, sym_generic_type, - STATE(2156), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, sym_scoped_identifier, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2172), 1, sym_lifetime, - STATE(2279), 1, + STATE(2234), 1, sym_function_modifiers, + STATE(2328), 1, + sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1625), 12, + STATE(1005), 12, sym__type, sym_array_type, sym_function_type, @@ -62603,7 +62414,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62621,69 +62432,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11088] = 29, + [10028] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2592), 1, + sym_identifier, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1461), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1613), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1978), 12, + STATE(1616), 12, sym__type, sym_array_type, sym_function_type, @@ -62696,7 +62507,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62714,80 +62525,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11210] = 27, + [10150] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_ref, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2262), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2264), 1, - sym_mutable_specifier, - ACTIONS(2270), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2440), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2541), 1, - anon_sym__, - ACTIONS(2543), 1, - sym_self, - STATE(1394), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1093), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2268), 2, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, + sym_self, sym_super, sym_crate, - ACTIONS(2539), 2, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_union, - ACTIONS(2266), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1489), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1692), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2254), 17, + anon_sym_unsafe, + STATE(1889), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62805,69 +62618,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11328] = 29, + [10272] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1632), 12, + STATE(1307), 12, sym__type, sym_array_type, sym_function_type, @@ -62880,7 +62693,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62898,69 +62711,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11450] = 29, + [10394] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2545), 1, + ACTIONS(2280), 1, sym_identifier, - STATE(1215), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, sym_for_lifetimes, - STATE(1452), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1631), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1633), 12, + STATE(1635), 12, sym__type, sym_array_type, sym_function_type, @@ -62973,7 +62786,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62991,69 +62804,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11572] = 29, + [10516] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1307), 12, + STATE(1804), 12, sym__type, sym_array_type, sym_function_type, @@ -63066,7 +62879,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63084,69 +62897,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11694] = 29, + [10638] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1784), 12, + STATE(1944), 12, sym__type, sym_array_type, sym_function_type, @@ -63159,7 +62972,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63177,69 +62990,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11816] = 29, + [10760] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(2113), 12, + STATE(1539), 12, sym__type, sym_array_type, sym_function_type, @@ -63252,7 +63065,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63270,69 +63083,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11938] = 29, + [10882] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1975), 12, + STATE(1567), 12, sym__type, sym_array_type, sym_function_type, @@ -63345,7 +63158,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63363,82 +63176,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12060] = 29, + [11004] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2456), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2460), 1, - anon_sym_STAR, - ACTIONS(2464), 1, - anon_sym_fn, - ACTIONS(2466), 1, - anon_sym_impl, - ACTIONS(2468), 1, - anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(2502), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2594), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, - sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2326), 1, - sym_generic_type_with_turbofish, - STATE(2338), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1022), 12, - sym__type, - 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(2462), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1364), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63456,69 +63266,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12182] = 29, + [11120] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1767), 12, + STATE(2043), 12, sym__type, sym_array_type, sym_function_type, @@ -63531,7 +63341,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63549,69 +63359,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12304] = 29, + [11242] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1316), 12, + STATE(1659), 12, sym__type, sym_array_type, sym_function_type, @@ -63624,7 +63434,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63642,82 +63452,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12426] = 29, + [11364] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2596), 1, + anon_sym__, + ACTIONS(2598), 1, + sym_mutable_specifier, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(2111), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1859), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63735,69 +63542,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12548] = 29, + [11480] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1756), 12, + STATE(1634), 12, sym__type, sym_array_type, sym_function_type, @@ -63810,7 +63617,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63828,69 +63635,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12670] = 29, + [11602] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1581), 12, + STATE(2065), 12, sym__type, sym_array_type, sym_function_type, @@ -63903,7 +63710,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63921,82 +63728,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12792] = 29, + [11724] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2600), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(2149), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(2392), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64014,69 +63818,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12914] = 29, + [11840] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1842), 12, + STATE(1534), 12, sym__type, sym_array_type, sym_function_type, @@ -64089,7 +63893,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64107,162 +63911,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13036] = 29, + [11962] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1877), 12, - sym__type, - 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(1081), 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, - [13158] = 29, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, - anon_sym_STAR, - ACTIONS(2464), 1, - anon_sym_fn, - ACTIONS(2466), 1, - anon_sym_impl, - ACTIONS(2468), 1, - anon_sym_BANG, - ACTIONS(2470), 1, - anon_sym_COLON_COLON, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, - sym_metavariable, - STATE(718), 1, - sym_scoped_type_identifier, - STATE(884), 1, - sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, - sym_scoped_identifier, STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, - sym_bracketed_type, - STATE(2326), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, + STATE(2323), 1, sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1035), 12, + STATE(1562), 12, sym__type, sym_array_type, sym_function_type, @@ -64275,7 +63986,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64293,69 +64004,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13280] = 29, + [12084] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(2112), 12, + STATE(1732), 12, sym__type, sym_array_type, sym_function_type, @@ -64368,7 +64079,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64386,69 +64097,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13402] = 29, + [12206] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1770), 12, + STATE(1646), 12, sym__type, sym_array_type, sym_function_type, @@ -64461,7 +64172,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64479,69 +64190,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13524] = 29, + [12328] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1515), 12, + STATE(1906), 12, sym__type, sym_array_type, sym_function_type, @@ -64554,7 +64265,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64572,82 +64283,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13646] = 29, + [12450] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, - anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(755), 1, - anon_sym_impl, - ACTIONS(761), 1, - anon_sym_BANG, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(777), 1, - anon_sym_dyn, - ACTIONS(1075), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(1079), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1251), 1, + ACTIONS(2602), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, sym_generic_type, - STATE(2156), 1, - sym_scoped_identifier, - STATE(2227), 1, + STATE(2337), 1, sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2277), 1, - sym_lifetime, - STATE(2279), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1867), 12, - sym__type, - 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(1081), 17, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(2135), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64665,69 +64373,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13768] = 29, + [12566] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + ACTIONS(2604), 1, + sym_identifier, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1440), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1633), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1621), 12, + STATE(1624), 12, sym__type, sym_array_type, sym_function_type, @@ -64740,7 +64448,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64758,69 +64466,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13890] = 29, + [12688] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(2103), 12, + STATE(1799), 12, sym__type, sym_array_type, sym_function_type, @@ -64833,7 +64541,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64851,69 +64559,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14012] = 29, + [12810] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1319), 12, + STATE(1989), 12, sym__type, sym_array_type, sym_function_type, @@ -64926,7 +64634,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64944,80 +64652,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14134] = 27, + [12932] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2541), 1, - anon_sym__, - ACTIONS(2547), 1, - sym_self, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 2, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, + sym_self, sym_super, sym_crate, - ACTIONS(2539), 2, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_union, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1692), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + anon_sym_unsafe, + STATE(1983), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65035,80 +64745,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14252] = 27, + [13054] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2549), 1, - anon_sym_RPAREN, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2553), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1771), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1853), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65126,69 +64838,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14370] = 29, + [13176] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(1317), 1, - sym_lifetime, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2279), 1, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1319), 12, + STATE(1980), 12, sym__type, sym_array_type, sym_function_type, @@ -65201,7 +64913,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65219,70 +64931,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14492] = 30, + [13298] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(2555), 1, - sym_self, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1095), 2, - sym_super, - sym_crate, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(747), 4, + ACTIONS(1099), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1309), 12, + STATE(1728), 12, sym__type, sym_array_type, sym_function_type, @@ -65295,7 +65006,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65313,69 +65024,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14616] = 29, + [13420] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1314), 12, + STATE(1626), 12, sym__type, sym_array_type, sym_function_type, @@ -65388,7 +65099,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65406,69 +65117,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14738] = 29, + [13542] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(2466), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(2468), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(1101), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(1283), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, + STATE(2323), 1, sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1003), 12, + STATE(2057), 12, sym__type, sym_array_type, sym_function_type, @@ -65481,7 +65192,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65499,69 +65210,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14860] = 29, + [13664] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(2031), 12, + STATE(1894), 12, sym__type, sym_array_type, sym_function_type, @@ -65574,7 +65285,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65592,69 +65303,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14982] = 29, + [13786] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(2466), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(2468), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(1101), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2606), 1, + sym_identifier, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1449), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(1623), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, + STATE(2323), 1, sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1047), 12, + STATE(1632), 12, sym__type, sym_array_type, sym_function_type, @@ -65667,7 +65378,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65685,69 +65396,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15104] = 29, + [13908] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1293), 12, + STATE(2107), 12, sym__type, sym_array_type, sym_function_type, @@ -65760,7 +65471,97 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 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, + [14030] = 26, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, + anon_sym_LPAREN, + ACTIONS(2168), 1, + anon_sym_LBRACK, + ACTIONS(2174), 1, + anon_sym_COLON_COLON, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, + anon_sym_AMP, + ACTIONS(2502), 1, + sym_metavariable, + ACTIONS(2608), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, + sym_scoped_type_identifier, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, + sym_generic_type, + STATE(2337), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(2357), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65778,69 +65579,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15226] = 29, + [14146] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1471), 12, + STATE(1319), 12, sym__type, sym_array_type, sym_function_type, @@ -65853,7 +65654,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65871,69 +65672,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15348] = 29, + [14268] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(765), 1, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - sym_identifier, - ACTIONS(2454), 1, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2456), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2460), 1, + ACTIONS(1089), 1, + anon_sym_COLON_COLON, + ACTIONS(1091), 1, + anon_sym_AMP, + ACTIONS(1101), 1, + sym_metavariable, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, + sym_scoped_type_identifier, + STATE(1283), 1, + sym_generic_type, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, + sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1868), 12, + sym__type, + 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(1085), 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, + [14390] = 29, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(2466), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(2468), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(2470), 1, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2472), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_dyn, - ACTIONS(2480), 1, + ACTIONS(1101), 1, sym_metavariable, - STATE(718), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(884), 1, + STATE(1283), 1, sym_generic_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2139), 1, + STATE(1299), 1, + sym_lifetime, + STATE(2091), 1, sym_scoped_identifier, - STATE(2231), 1, - sym_function_modifiers, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2338), 1, - sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1051), 12, + STATE(1319), 12, sym__type, sym_array_type, sym_function_type, @@ -65946,7 +65840,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2462), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65964,69 +65858,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15470] = 29, + [14512] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1492), 12, + STATE(2097), 12, sym__type, sym_array_type, sym_function_type, @@ -66039,7 +65933,97 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 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, + [14634] = 26, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(2164), 1, + anon_sym_LPAREN, + ACTIONS(2168), 1, + anon_sym_LBRACK, + ACTIONS(2174), 1, + anon_sym_COLON_COLON, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, + anon_sym_AMP, + ACTIONS(2502), 1, + sym_metavariable, + ACTIONS(2610), 1, + anon_sym__, + STATE(1324), 1, + sym_scoped_identifier, + STATE(1761), 1, + sym_scoped_type_identifier, + STATE(2335), 1, + sym_generic_type_with_turbofish, + STATE(2336), 1, + sym_generic_type, + STATE(2337), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2500), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(599), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1384), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(2366), 12, + sym__pattern, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66057,69 +66041,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15592] = 29, + [14750] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(741), 1, + ACTIONS(553), 1, anon_sym_STAR, - ACTIONS(751), 1, + ACTIONS(563), 1, anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(755), 1, + ACTIONS(567), 1, anon_sym_impl, - ACTIONS(761), 1, + ACTIONS(573), 1, anon_sym_BANG, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(777), 1, + ACTIONS(589), 1, anon_sym_dyn, - ACTIONS(1075), 1, - anon_sym_LPAREN, ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(1087), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(1097), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2272), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1215), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(1251), 1, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(1285), 1, + STATE(1283), 1, sym_generic_type, - STATE(2156), 1, + STATE(2091), 1, sym_scoped_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2277), 1, + STATE(2323), 1, sym_lifetime, - STATE(2279), 1, + STATE(2324), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1618), 12, + STATE(1553), 12, sym__type, sym_array_type, sym_function_type, @@ -66132,7 +66116,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(1081), 17, + ACTIONS(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66150,44 +66134,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15714] = 26, + [14872] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2557), 1, - anon_sym_RPAREN, - ACTIONS(2559), 1, + ACTIONS(2612), 1, anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -66195,21 +66179,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1878), 11, + STATE(1905), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -66221,7 +66205,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66239,44 +66224,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15829] = 26, + [14988] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2559), 1, + ACTIONS(2614), 1, anon_sym__, - ACTIONS(2561), 1, - anon_sym_RPAREN, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -66284,21 +66269,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1878), 11, + STATE(2375), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -66310,50 +66295,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 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, - [15944] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1589), 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(1591), 40, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66371,89 +66314,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - 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_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16013] = 26, + [15104] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2172), 1, + anon_sym_ref, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2178), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2180), 1, + sym_mutable_specifier, + ACTIONS(2182), 1, + anon_sym_box, + ACTIONS(2188), 1, sym_metavariable, - ACTIONS(2559), 1, + ACTIONS(2429), 1, + sym_identifier, + ACTIONS(2582), 1, anon_sym__, - ACTIONS(2563), 1, - anon_sym_RBRACK, - STATE(1321), 1, + STATE(1401), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, + ACTIONS(1097), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2186), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(2184), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1507), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1878), 11, + STATE(1326), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -66465,7 +66385,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2170), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66483,78 +66404,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16128] = 26, + [15220] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2559), 1, - anon_sym__, - ACTIONS(2565), 1, - anon_sym_RPAREN, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1878), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1498), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66572,78 +66497,175 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16243] = 26, + [15342] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2559), 1, - anon_sym__, - ACTIONS(2567), 1, - anon_sym_RBRACK, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(1283), 1, + sym_generic_type, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, + sym_bracketed_type, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1628), 12, + sym__type, + 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(1085), 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, + [15464] = 29, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, + anon_sym_COLON_COLON, + ACTIONS(1091), 1, + anon_sym_AMP, + ACTIONS(1101), 1, + sym_metavariable, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, + sym_scoped_type_identifier, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1878), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1301), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66661,44 +66683,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16358] = 26, + [15586] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2559), 1, + ACTIONS(2616), 1, anon_sym__, - ACTIONS(2569), 1, - anon_sym_RPAREN, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -66706,21 +66728,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1878), 11, + STATE(2201), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -66732,7 +66754,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66750,64 +66773,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16473] = 25, + [15702] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(1091), 1, + ACTIONS(1047), 1, + anon_sym__, + ACTIONS(1095), 1, aux_sym_string_literal_token1, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, + ACTIONS(2172), 1, anon_sym_ref, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2262), 1, + ACTIONS(2178), 1, anon_sym_AMP, - ACTIONS(2264), 1, - sym_mutable_specifier, - ACTIONS(2270), 1, + ACTIONS(2182), 1, + anon_sym_box, + ACTIONS(2188), 1, sym_metavariable, - ACTIONS(2440), 1, + ACTIONS(2429), 1, sym_identifier, - ACTIONS(2571), 1, - anon_sym__, - STATE(1394), 1, + ACTIONS(2618), 1, + sym_mutable_specifier, + STATE(1401), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1093), 2, + ACTIONS(1097), 2, anon_sym_true, anon_sym_false, - ACTIONS(2268), 3, + ACTIONS(2186), 3, sym_self, sym_super, sym_crate, - ACTIONS(2266), 4, + ACTIONS(2184), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1489), 4, + STATE(1507), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1348), 11, + STATE(1360), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -66819,7 +66844,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2254), 17, + sym_box_pattern, + ACTIONS(2170), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66837,64 +66863,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16585] = 25, + [15818] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1083), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, + anon_sym_COLON_COLON, + ACTIONS(1091), 1, + anon_sym_AMP, + ACTIONS(1101), 1, + sym_metavariable, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, + sym_scoped_type_identifier, + STATE(1283), 1, + sym_generic_type, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, + sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1318), 12, + sym__type, + 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(1085), 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, + [15940] = 26, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2172), 1, + anon_sym_ref, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2178), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2180), 1, + sym_mutable_specifier, + ACTIONS(2182), 1, + anon_sym_box, + ACTIONS(2188), 1, sym_metavariable, - ACTIONS(2573), 1, + ACTIONS(2429), 1, + sym_identifier, + ACTIONS(2588), 1, anon_sym__, - STATE(1321), 1, + STATE(1401), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, + ACTIONS(1097), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2186), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(2184), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1507), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1902), 11, + STATE(1361), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -66906,7 +67027,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2170), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66924,42 +67046,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16697] = 25, + [16056] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2575), 1, + ACTIONS(2620), 1, anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -66967,21 +67091,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2019), 11, + STATE(2344), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -66993,7 +67117,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67011,64 +67136,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16809] = 25, + [16172] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2172), 1, + anon_sym_ref, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2178), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2180), 1, + sym_mutable_specifier, + ACTIONS(2182), 1, + anon_sym_box, + ACTIONS(2188), 1, sym_metavariable, - ACTIONS(2577), 1, + ACTIONS(2429), 1, + sym_identifier, + ACTIONS(2594), 1, anon_sym__, - STATE(1321), 1, + STATE(1401), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, + ACTIONS(1097), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2186), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(2184), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1507), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2321), 11, + STATE(1364), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -67080,7 +67207,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2170), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67098,42 +67226,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16921] = 25, + [16288] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2579), 1, + ACTIONS(2622), 1, anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -67141,21 +67271,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2010), 11, + STATE(2384), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -67167,7 +67297,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67185,76 +67316,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17033] = 25, + [16404] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2581), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(2389), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1644), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67272,76 +67409,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17145] = 25, + [16526] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(1053), 1, - anon_sym__, - ACTIONS(2248), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(738), 1, sym_generic_type, - STATE(2299), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, + sym_scoped_identifier, + STATE(2172), 1, + sym_lifetime, + STATE(2234), 1, + sym_function_modifiers, + STATE(2328), 1, sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1360), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1052), 12, + sym__type, + 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(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67359,76 +67502,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17257] = 25, + [16648] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2583), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(738), 1, sym_generic_type, - STATE(2299), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, + sym_scoped_identifier, + STATE(2172), 1, + sym_lifetime, + STATE(2234), 1, + sym_function_modifiers, + STATE(2328), 1, sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(2388), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1027), 12, + sym__type, + 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(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67446,76 +67595,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17369] = 25, + [16770] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2585), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(2387), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(2113), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67533,42 +67688,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17481] = 25, + [16892] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2587), 1, + ACTIONS(2624), 1, anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -67576,21 +67733,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2056), 11, + STATE(2386), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -67602,7 +67759,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67620,76 +67778,175 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17593] = 25, + [17008] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_ref, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2262), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2264), 1, - sym_mutable_specifier, - ACTIONS(2270), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2440), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2589), 1, - anon_sym__, - STATE(1394), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(1283), 1, + sym_generic_type, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, + sym_bracketed_type, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1994), 12, + sym__type, + 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(1085), 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, + [17130] = 29, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, + anon_sym_LPAREN, + ACTIONS(2455), 1, + anon_sym_LBRACK, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, + anon_sym_COLON_COLON, + ACTIONS(2471), 1, + anon_sym_AMP, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, + sym_metavariable, + STATE(712), 1, + sym_scoped_type_identifier, + STATE(738), 1, sym_generic_type, - STATE(2299), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, + sym_scoped_identifier, + STATE(2172), 1, + sym_lifetime, + STATE(2234), 1, + sym_function_modifiers, + STATE(2328), 1, sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1093), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2268), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(2266), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1489), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1336), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2254), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(964), 12, + sym__type, + 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(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67707,76 +67964,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17705] = 25, + [17252] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(1049), 1, - anon_sym__, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_ref, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2262), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2270), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2440), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2591), 1, - sym_mutable_specifier, - STATE(1394), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1093), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2268), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(2266), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1489), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1340), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2254), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1627), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67794,76 +68057,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17817] = 25, + [17374] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2593), 1, - anon_sym__, - ACTIONS(2595), 1, - sym_mutable_specifier, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1795), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1938), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67881,76 +68150,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17929] = 25, + [17496] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2597), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(738), 1, sym_generic_type, - STATE(2299), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, + sym_scoped_identifier, + STATE(2172), 1, + sym_lifetime, + STATE(2234), 1, + sym_function_modifiers, + STATE(2328), 1, sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(2248), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1056), 12, + sym__type, + 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(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67968,76 +68243,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18041] = 25, + [17618] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2599), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(2386), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1314), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68055,76 +68336,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18153] = 25, + [17740] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2601), 1, - anon_sym__, - ACTIONS(2603), 1, - sym_mutable_specifier, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1856), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1875), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68142,42 +68429,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18265] = 25, + [17862] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(1057), 1, + anon_sym__, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2605), 1, - anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -68185,21 +68474,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2381), 11, + STATE(1370), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -68211,7 +68500,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68229,76 +68519,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18377] = 25, + [17978] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_ref, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2262), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2264), 1, - sym_mutable_specifier, - ACTIONS(2270), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2440), 1, + ACTIONS(2280), 1, sym_identifier, - ACTIONS(2607), 1, - anon_sym__, - STATE(1394), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1093), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2268), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(2266), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1489), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1338), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2254), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1557), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68316,76 +68612,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18489] = 25, + [18100] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2609), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(2372), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1615), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68403,76 +68705,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18601] = 25, + [18222] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2559), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1878), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1601), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68490,42 +68798,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18713] = 25, + [18344] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2611), 1, + ACTIONS(2626), 1, anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -68533,21 +68843,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2307), 11, + STATE(2185), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -68559,7 +68869,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68577,76 +68888,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18825] = 25, + [18460] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2607), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1338), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1955), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68664,76 +68981,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [18937] = 25, + [18582] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2613), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1959), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1826), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68751,76 +69074,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19049] = 25, + [18704] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2615), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(2390), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1622), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68838,76 +69167,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19161] = 25, + [18826] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(567), 1, + anon_sym_impl, + ACTIONS(573), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(589), 1, + anon_sym_dyn, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(1083), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(1091), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(1101), 1, sym_metavariable, - ACTIONS(2617), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + ACTIONS(2280), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1250), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(1283), 1, sym_generic_type, - STATE(2299), 1, + STATE(2091), 1, + sym_scoped_identifier, + STATE(2230), 1, sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_lifetime, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(2309), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1973), 12, + sym__type, + 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(1085), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -68925,64 +69260,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19273] = 25, + [18948] = 26, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(783), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(579), 1, + anon_sym_ref, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1017), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, + sym_mutable_specifier, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_ref, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2262), 1, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2264), 1, - sym_mutable_specifier, - ACTIONS(2270), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2440), 1, - sym_identifier, - ACTIONS(2619), 1, + ACTIONS(2628), 1, anon_sym__, - STATE(1394), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1093), 2, + ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2268), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(2266), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1489), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1840), 11, + STATE(2389), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -68994,7 +69331,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2254), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69012,42 +69350,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19385] = 25, + [19064] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2589), 1, + ACTIONS(2576), 1, anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -69055,21 +69395,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1336), 11, + STATE(1354), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -69081,7 +69421,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69099,42 +69440,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19497] = 25, + [19180] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2621), 1, + ACTIONS(2630), 1, anon_sym__, - STATE(1321), 1, + ACTIONS(2632), 1, + sym_mutable_specifier, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -69142,21 +69485,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2363), 11, + STATE(1764), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -69168,7 +69511,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69186,42 +69530,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19609] = 25, + [19296] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2623), 1, + ACTIONS(2634), 1, anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -69229,21 +69575,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2354), 11, + STATE(2095), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -69255,7 +69601,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69273,76 +69620,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19721] = 25, + [19412] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(1049), 1, - anon_sym__, - ACTIONS(2248), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2625), 1, - sym_mutable_specifier, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(738), 1, sym_generic_type, - STATE(2299), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, + sym_scoped_identifier, + STATE(2172), 1, + sym_lifetime, + STATE(2234), 1, + sym_function_modifiers, + STATE(2328), 1, sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1340), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1025), 12, + sym__type, + 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(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69360,42 +69713,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19833] = 25, + [19534] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2627), 1, + ACTIONS(2636), 1, anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -69403,21 +69758,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2383), 11, + STATE(2333), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -69429,7 +69784,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69447,76 +69803,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19945] = 25, + [19650] = 29, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(1053), 1, - anon_sym__, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(2248), 1, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_ref, - ACTIONS(2258), 1, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2465), 1, + anon_sym_impl, + ACTIONS(2467), 1, + anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(2262), 1, + ACTIONS(2471), 1, anon_sym_AMP, - ACTIONS(2264), 1, - sym_mutable_specifier, - ACTIONS(2270), 1, + ACTIONS(2473), 1, + anon_sym_dyn, + ACTIONS(2479), 1, sym_metavariable, - ACTIONS(2440), 1, - sym_identifier, - STATE(1394), 1, - sym_scoped_identifier, - STATE(1750), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(738), 1, sym_generic_type, - STATE(2299), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2130), 1, + sym_scoped_identifier, + STATE(2172), 1, + sym_lifetime, + STATE(2234), 1, + sym_function_modifiers, + STATE(2328), 1, sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1093), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2268), 3, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(2266), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1489), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1360), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2254), 17, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(989), 12, + sym__type, + 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(2461), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69534,42 +69896,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [20057] = 25, + [19772] = 26, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(767), 1, + ACTIONS(579), 1, anon_sym_ref, - ACTIONS(783), 1, + ACTIONS(595), 1, anon_sym_DASH, - ACTIONS(1015), 1, + ACTIONS(597), 1, + anon_sym_box, + ACTIONS(1025), 1, sym_mutable_specifier, - ACTIONS(1017), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2164), 1, anon_sym_LPAREN, - ACTIONS(2252), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, + ACTIONS(2174), 1, anon_sym_COLON_COLON, - ACTIONS(2521), 1, + ACTIONS(2488), 1, sym_identifier, - ACTIONS(2527), 1, + ACTIONS(2496), 1, anon_sym_AMP, - ACTIONS(2531), 1, + ACTIONS(2502), 1, sym_metavariable, - ACTIONS(2629), 1, + ACTIONS(2638), 1, anon_sym__, - STATE(1321), 1, + STATE(1324), 1, sym_scoped_identifier, - STATE(1750), 1, + STATE(1761), 1, sym_scoped_type_identifier, - STATE(2296), 1, + STATE(2335), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2299), 1, + STATE(2337), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -69577,21 +69941,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(2529), 3, + ACTIONS(2500), 3, sym_self, sym_super, sym_crate, - ACTIONS(785), 4, + ACTIONS(599), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1376), 4, + STATE(1384), 4, sym__literal_pattern, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(2289), 11, + STATE(2390), 12, sym__pattern, sym_tuple_pattern, sym_slice_pattern, @@ -69603,7 +69967,8 @@ static uint16_t ts_small_parse_table[] = { sym_ref_pattern, sym_captured_pattern, sym_reference_pattern, - ACTIONS(2525), 17, + sym_box_pattern, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69621,98 +69986,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [20169] = 25, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(767), 1, - anon_sym_ref, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1015), 1, - sym_mutable_specifier, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, - anon_sym_LPAREN, - ACTIONS(2252), 1, - anon_sym_LBRACK, - ACTIONS(2258), 1, - anon_sym_COLON_COLON, - ACTIONS(2521), 1, - sym_identifier, - ACTIONS(2527), 1, - anon_sym_AMP, - ACTIONS(2531), 1, - sym_metavariable, - ACTIONS(2571), 1, - anon_sym__, - STATE(1321), 1, - sym_scoped_identifier, - STATE(1750), 1, - sym_scoped_type_identifier, - STATE(2296), 1, - sym_generic_type_with_turbofish, - STATE(2298), 1, - sym_generic_type, - STATE(2299), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2529), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(785), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1376), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1348), 11, - sym__pattern, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - ACTIONS(2525), 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, - [20281] = 3, + [19888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2633), 17, + ACTIONS(2642), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -69730,7 +70008,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2631), 38, + ACTIONS(2640), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69769,11 +70047,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20345] = 3, + [19952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2637), 17, + ACTIONS(2646), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -69791,7 +70069,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2635), 38, + ACTIONS(2644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69830,11 +70108,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20409] = 3, + [20016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2641), 17, + ACTIONS(2650), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -69852,7 +70130,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2639), 38, + ACTIONS(2648), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69891,11 +70169,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20473] = 3, + [20080] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(563), 18, + ACTIONS(643), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -69914,7 +70192,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2643), 37, + ACTIONS(2652), 37, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69952,11 +70230,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20537] = 3, + [20144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1589), 15, + ACTIONS(1389), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -69972,7 +70250,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1591), 38, + ACTIONS(1391), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70005,29 +70283,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_dyn, sym_mutable_specifier, anon_sym_DOT_DOT, + anon_sym_box, anon_sym_true, anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [20599] = 9, - ACTIONS(2647), 1, + [20207] = 9, + ACTIONS(2656), 1, anon_sym_LPAREN, - ACTIONS(2651), 1, + ACTIONS(2660), 1, anon_sym_BANG, - ACTIONS(2653), 1, + ACTIONS(2662), 1, anon_sym_COLON_COLON, - ACTIONS(2655), 1, + ACTIONS(2664), 1, anon_sym_LT2, - STATE(918), 1, + STATE(924), 1, sym_type_arguments, - STATE(945), 1, + STATE(950), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2649), 17, + ACTIONS(2658), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70045,7 +70324,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2645), 26, + ACTIONS(2654), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -70072,11 +70351,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [20669] = 3, + [20277] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2659), 17, + ACTIONS(2668), 17, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, @@ -70094,7 +70373,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2657), 31, + ACTIONS(2666), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -70126,21 +70405,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20726] = 8, - ACTIONS(2647), 1, + [20334] = 8, + ACTIONS(2656), 1, anon_sym_LPAREN, - ACTIONS(2653), 1, + ACTIONS(2662), 1, anon_sym_COLON_COLON, - ACTIONS(2655), 1, + ACTIONS(2664), 1, anon_sym_LT2, - STATE(918), 1, + STATE(924), 1, sym_type_arguments, - STATE(945), 1, + STATE(950), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2663), 17, + ACTIONS(2672), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70158,7 +70437,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2661), 26, + ACTIONS(2670), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -70185,21 +70464,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [20793] = 8, - ACTIONS(2647), 1, + [20401] = 8, + ACTIONS(2656), 1, anon_sym_LPAREN, - ACTIONS(2653), 1, + ACTIONS(2662), 1, anon_sym_COLON_COLON, - ACTIONS(2655), 1, + ACTIONS(2664), 1, anon_sym_LT2, - STATE(918), 1, + STATE(924), 1, sym_type_arguments, - STATE(945), 1, + STATE(950), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2667), 17, + ACTIONS(2676), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70217,7 +70496,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2665), 26, + ACTIONS(2674), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -70244,19 +70523,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [20860] = 7, - ACTIONS(2651), 1, - anon_sym_BANG, - ACTIONS(2669), 1, - anon_sym_LBRACE, - ACTIONS(2671), 1, - anon_sym_COLON_COLON, - STATE(1037), 1, - sym_field_initializer_list, + [20468] = 7, + ACTIONS(2656), 1, + anon_sym_LPAREN, + ACTIONS(2664), 1, + anon_sym_LT2, + STATE(853), 1, + sym_parameters, + STATE(926), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(521), 15, + ACTIONS(2680), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70267,15 +70546,17 @@ static 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(519), 28, + ACTIONS(2678), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -70289,7 +70570,6 @@ static 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, @@ -70299,123 +70579,20 @@ static 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, - [20924] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(399), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(401), 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, - [20980] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1375), 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(1377), 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, - [21036] = 5, - ACTIONS(2657), 1, - anon_sym_COLON_COLON, - ACTIONS(2659), 1, - anon_sym_BANG, + [20532] = 7, + ACTIONS(2656), 1, + anon_sym_LPAREN, + ACTIONS(2664), 1, + anon_sym_LT2, + STATE(853), 1, + sym_parameters, + STATE(926), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2675), 17, + ACTIONS(2684), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70433,9 +70610,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2673), 28, + ACTIONS(2682), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -70446,7 +70622,6 @@ static 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, @@ -70462,68 +70637,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [21096] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(411), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(413), 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, - [21152] = 5, - ACTIONS(2681), 1, + [20596] = 5, + ACTIONS(2690), 1, anon_sym_BANG, - ACTIONS(2683), 1, + ACTIONS(2692), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2679), 17, + ACTIONS(2688), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70541,7 +70663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2677), 28, + ACTIONS(2686), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -70570,21 +70692,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [21212] = 3, + [20656] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1770), 9, + ACTIONS(411), 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_GT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(413), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70623,11 +70745,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21268] = 3, + [20712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2042), 9, + ACTIONS(1525), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -70637,7 +70759,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2044), 38, + ACTIONS(1527), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70676,135 +70798,74 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21324] = 7, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2655), 1, - anon_sym_LT2, - STATE(922), 1, - sym_type_arguments, - STATE(952), 1, - sym_parameters, + [20768] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2687), 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(2685), 26, + ACTIONS(2086), 9, 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_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, - [21388] = 7, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2655), 1, - anon_sym_LT2, - STATE(922), 1, - sym_type_arguments, - STATE(952), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2691), 17, - anon_sym_PLUS, - anon_sym_STAR, + anon_sym_POUND, 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(2689), 26, - 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_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, - [21452] = 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2088), 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, + [20824] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1483), 9, + ACTIONS(415), 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_GT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1485), 38, + ACTIONS(417), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70843,21 +70904,21 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21508] = 3, + [20880] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(421), 9, + ACTIONS(1686), 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_GT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(423), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70896,15 +70957,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21564] = 5, - ACTIONS(2697), 1, + [20936] = 7, + ACTIONS(2660), 1, anon_sym_BANG, - ACTIONS(2699), 1, + ACTIONS(2694), 1, + anon_sym_LBRACE, + ACTIONS(2696), 1, anon_sym_COLON_COLON, + STATE(1018), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2695), 17, + ACTIONS(515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70915,18 +70980,15 @@ static 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(2693), 28, + ACTIONS(513), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -70935,12 +70997,12 @@ static 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, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -70950,16 +71012,17 @@ static 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, - [21624] = 5, - ACTIONS(2705), 1, + [21000] = 5, + ACTIONS(2702), 1, anon_sym_BANG, - ACTIONS(2707), 1, + ACTIONS(2704), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2703), 17, + ACTIONS(2700), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70977,7 +71040,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2701), 28, + ACTIONS(2698), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71006,19 +71069,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [21684] = 7, - ACTIONS(2647), 1, + [21060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1962), 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(1964), 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, + [21116] = 7, + ACTIONS(2656), 1, anon_sym_LPAREN, - ACTIONS(2655), 1, + ACTIONS(2664), 1, anon_sym_LT2, - STATE(922), 1, - sym_type_arguments, - STATE(952), 1, + STATE(853), 1, sym_parameters, + STATE(926), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2711), 17, + ACTIONS(2708), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71036,7 +71152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2709), 26, + ACTIONS(2706), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -71063,21 +71179,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [21748] = 3, + [21180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 9, + ACTIONS(399), 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_GT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(401), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71116,11 +71232,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21804] = 3, + [21236] = 5, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, + ACTIONS(2668), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2344), 15, + ACTIONS(2712), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71131,12 +71251,14 @@ static 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(2346), 31, + ACTIONS(2710), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71145,18 +71267,16 @@ static 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_DOT_DOT_DOT, - anon_sym_in, + 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_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -71166,18 +71286,18 @@ static 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, - [21859] = 4, - ACTIONS(2713), 1, - anon_sym_LBRACE, + [21296] = 5, + ACTIONS(2718), 1, + anon_sym_BANG, + ACTIONS(2720), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2681), 16, + ACTIONS(2716), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71186,15 +71306,18 @@ static 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(2683), 29, + ACTIONS(2714), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -71202,14 +71325,13 @@ static 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_LT2, 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, @@ -71219,15 +71341,67 @@ static 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, - [21916] = 4, - ACTIONS(2715), 1, + [21356] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2138), 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(2140), 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, + [21412] = 4, + ACTIONS(2722), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2697), 16, + ACTIONS(2718), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -71244,7 +71418,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2699), 29, + ACTIONS(2720), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71274,17 +71448,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21973] = 5, - ACTIONS(2721), 1, - anon_sym_SQUOTE, - STATE(994), 1, - sym_loop_label, + [21469] = 4, + ACTIONS(2724), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2719), 15, + ACTIONS(2668), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71298,11 +71471,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2717), 29, + 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, @@ -71310,6 +71482,7 @@ static 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, @@ -71328,15 +71501,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22032] = 5, - ACTIONS(2723), 1, + [21526] = 5, + ACTIONS(2726), 1, anon_sym_else, - STATE(1055), 1, + STATE(995), 1, sym__else_tail, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 15, + ACTIONS(397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71352,7 +71525,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(389), 29, + ACTIONS(395), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71382,11 +71555,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22091] = 3, + [21585] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2316), 15, + ACTIONS(2385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71402,7 +71575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2318), 31, + ACTIONS(2387), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71434,13 +71607,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22146] = 4, - ACTIONS(2725), 1, + [21640] = 4, + ACTIONS(2728), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2705), 16, + ACTIONS(2702), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -71457,7 +71630,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2707), 29, + ACTIONS(2704), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71487,13 +71660,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22203] = 4, - ACTIONS(2727), 1, + [21697] = 4, + ACTIONS(2730), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2659), 16, + ACTIONS(2690), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -71510,7 +71683,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2657), 29, + ACTIONS(2692), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71540,15 +71713,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22260] = 5, - ACTIONS(2723), 1, - anon_sym_else, - STATE(1011), 1, - sym__else_tail, + [21754] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(397), 15, + ACTIONS(2393), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71564,7 +71733,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(395), 29, + ACTIONS(2395), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71573,10 +71742,12 @@ static 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_DOT_DOT_DOT, + anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -71594,11 +71765,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22319] = 3, + [21809] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 15, + ACTIONS(2405), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71614,7 +71785,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2322), 31, + ACTIONS(2407), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71646,19 +71817,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22374] = 7, - ACTIONS(2731), 1, + [21864] = 5, + ACTIONS(2726), 1, + anon_sym_else, + STATE(1031), 1, + sym__else_tail, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(391), 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(389), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2733), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - STATE(1045), 1, - sym_arguments, + 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, + [21923] = 5, + ACTIONS(2736), 1, + anon_sym_SQUOTE, + STATE(1053), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2735), 14, + ACTIONS(2734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71673,12 +71894,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2729), 27, + anon_sym_DOT, + ACTIONS(2732), 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, @@ -71701,11 +71925,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22436] = 3, + [21982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 7, + ACTIONS(1377), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -71713,7 +71937,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1808), 38, + ACTIONS(1379), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71752,11 +71976,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22490] = 3, + [22036] = 4, + ACTIONS(2738), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2741), 15, + ACTIONS(2684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71772,7 +71998,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2739), 30, + ACTIONS(2682), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71784,7 +72010,6 @@ static 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, @@ -71803,11 +72028,215 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22544] = 3, + [22092] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1982), 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(1984), 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, + [22146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2102), 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(2104), 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, + [22200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2078), 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(2080), 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, + [22254] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1730), 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(1732), 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, + [22308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2136), 7, + ACTIONS(1325), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -71815,7 +72244,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2138), 38, + ACTIONS(1327), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71854,11 +72283,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22598] = 3, + [22362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(2130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -71866,7 +72295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(2132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71905,11 +72334,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22652] = 3, + [22416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2018), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -71917,7 +72346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2020), 38, + ACTIONS(1968), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71956,11 +72385,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22706] = 3, + [22470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1511), 7, + ACTIONS(2098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -71968,7 +72397,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1513), 38, + ACTIONS(2100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72007,63 +72436,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22760] = 4, + [22524] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2747), 6, + ACTIONS(2094), 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(2096), 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, - ACTIONS(2745), 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(2743), 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, - [22816] = 3, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1499), 7, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72071,7 +72499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1501), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72110,11 +72538,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22870] = 3, + [22632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1495), 7, + ACTIONS(2054), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72122,7 +72550,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1497), 38, + ACTIONS(2056), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72161,11 +72589,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22924] = 3, + [22686] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1491), 7, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72173,7 +72601,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1493), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72212,11 +72640,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22978] = 3, + [22740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2014), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72224,7 +72652,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2016), 38, + ACTIONS(1952), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72263,11 +72691,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23032] = 3, + [22794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 7, + ACTIONS(2030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72275,7 +72703,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(2032), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72314,11 +72742,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23086] = 3, + [22848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1487), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72326,7 +72754,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1489), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72365,11 +72793,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23140] = 3, + [22902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1479), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72377,7 +72805,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1481), 38, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72416,11 +72844,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23194] = 3, + [22956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1471), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72428,7 +72856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1473), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72467,11 +72895,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23248] = 3, + [23010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72479,7 +72907,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72518,11 +72946,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23302] = 3, + [23064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2010), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72530,7 +72958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2012), 38, + ACTIONS(2004), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72569,11 +72997,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23356] = 3, + [23118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1407), 7, + ACTIONS(1381), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72581,7 +73009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1409), 38, + ACTIONS(1383), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72620,11 +73048,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23410] = 3, + [23172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1391), 7, + ACTIONS(1533), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72632,7 +73060,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1393), 38, + ACTIONS(1535), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72671,11 +73099,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23464] = 3, + [23226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1982), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72683,7 +73111,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(1864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72722,11 +73150,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23518] = 3, + [23280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72734,7 +73162,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1888), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72773,11 +73201,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23572] = 3, + [23334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72785,7 +73213,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72824,63 +73252,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23626] = 4, - ACTIONS(2753), 1, - anon_sym_DASH_GT, + [23388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2751), 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(2749), 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, - [23682] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2022), 7, + ACTIONS(1796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72888,7 +73264,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2024), 38, + ACTIONS(1798), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72927,11 +73303,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23736] = 3, + [23442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72939,7 +73315,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72978,11 +73354,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23790] = 3, + [23496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1900), 7, + ACTIONS(1766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72990,7 +73366,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(1768), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73029,11 +73405,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23844] = 3, + [23550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2026), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73041,7 +73417,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2028), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73080,11 +73456,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23898] = 3, + [23604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1371), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73092,7 +73468,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1373), 38, + ACTIONS(1868), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73131,11 +73507,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23952] = 3, + [23658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1315), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73143,7 +73519,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1317), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73182,11 +73558,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24006] = 3, + [23712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1339), 7, + ACTIONS(1615), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73194,7 +73570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1341), 38, + ACTIONS(1617), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73233,11 +73609,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24060] = 3, + [23766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1343), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73245,7 +73621,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1345), 38, + ACTIONS(2000), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73284,11 +73660,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24114] = 3, + [23820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1359), 7, + ACTIONS(1493), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73296,7 +73672,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1361), 38, + ACTIONS(1495), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73335,11 +73711,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24168] = 3, + [23874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1363), 7, + ACTIONS(1481), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73347,7 +73723,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1365), 38, + ACTIONS(1483), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73386,63 +73762,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24222] = 4, - ACTIONS(2755), 1, - anon_sym_COLON_COLON, + [23928] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(521), 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(519), 29, + ACTIONS(1393), 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, - [24278] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1395), 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, + [23982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1379), 7, + ACTIONS(1509), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73450,7 +73825,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1381), 38, + ACTIONS(1511), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73489,11 +73864,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24332] = 3, + [24036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1411), 7, + ACTIONS(1321), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73501,7 +73876,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1413), 38, + ACTIONS(1323), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73540,11 +73915,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24386] = 3, + [24090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1459), 7, + ACTIONS(1333), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73552,7 +73927,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1461), 38, + ACTIONS(1335), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73591,11 +73966,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24440] = 3, + [24144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1463), 7, + ACTIONS(1341), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73603,7 +73978,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1465), 38, + ACTIONS(1343), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73642,117 +74017,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24494] = 7, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2759), 14, - 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, - ACTIONS(2757), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - 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, - [24556] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1041), 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(1043), 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_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, - [24610] = 3, + [24198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2763), 15, + ACTIONS(2742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -73768,7 +74037,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2761), 30, + ACTIONS(2740), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -73780,7 +74049,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -73799,11 +74068,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24664] = 3, + [24252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1623), 7, + ACTIONS(1513), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73811,7 +74080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1625), 38, + ACTIONS(1515), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73850,11 +74119,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24718] = 3, + [24306] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1627), 7, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73862,7 +74131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1629), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73901,114 +74170,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24772] = 4, + [24360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2767), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2769), 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(2765), 28, + ACTIONS(1750), 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, - [24828] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2773), 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(2771), 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, - [24882] = 3, + sym_metavariable, + ACTIONS(1752), 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, + [24414] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2088), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74016,7 +74233,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2090), 38, + ACTIONS(1904), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74055,11 +74272,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24936] = 3, + [24468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2092), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74067,7 +74284,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2094), 38, + ACTIONS(1916), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74106,11 +74323,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24990] = 3, + [24522] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2112), 7, + ACTIONS(1297), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74118,7 +74335,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2114), 38, + ACTIONS(1299), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74157,11 +74374,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25044] = 3, + [24576] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2116), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74169,7 +74386,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2118), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74208,11 +74425,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25098] = 3, + [24630] = 4, + ACTIONS(2748), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2777), 15, + ACTIONS(2746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -74228,7 +74447,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2775), 30, + ACTIONS(2744), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -74240,7 +74459,6 @@ static 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, @@ -74259,11 +74477,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25152] = 3, + [24686] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2014), 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(2016), 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, + [24740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1647), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74271,7 +74540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1649), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74310,11 +74579,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25206] = 3, + [24794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74322,7 +74591,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(1928), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74361,11 +74630,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25260] = 3, + [24848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74373,7 +74642,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(1852), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74412,11 +74681,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25314] = 3, + [24902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74424,7 +74693,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74463,11 +74732,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25368] = 3, + [24956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1291), 7, + ACTIONS(1489), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74475,7 +74744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1293), 38, + ACTIONS(1491), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74514,11 +74783,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25422] = 3, + [25010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + ACTIONS(1505), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74526,7 +74795,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1507), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74565,62 +74834,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25476] = 3, + [25064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2781), 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(2779), 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, - [25530] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2054), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74628,7 +74846,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2056), 38, + ACTIONS(1936), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74667,11 +74885,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25584] = 3, + [25118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2080), 7, + ACTIONS(1541), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74679,7 +74897,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2082), 38, + ACTIONS(1543), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74718,11 +74936,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25638] = 3, + [25172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2096), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74730,7 +74948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2098), 38, + ACTIONS(1956), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74769,11 +74987,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25692] = 3, + [25226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2140), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74781,7 +74999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2142), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74820,62 +75038,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25746] = 3, + [25280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2785), 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(2783), 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, - [25800] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2124), 7, + ACTIONS(1545), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74883,7 +75050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2126), 38, + ACTIONS(1547), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74922,11 +75089,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25854] = 3, + [25334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2100), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74934,7 +75101,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2102), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74973,11 +75140,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25908] = 3, + [25388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2128), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74985,7 +75152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2130), 38, + ACTIONS(1908), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75024,11 +75191,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25962] = 3, + [25442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2076), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75036,7 +75203,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2078), 38, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75075,11 +75242,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26016] = 3, + [25496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2050), 7, + ACTIONS(1461), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75087,7 +75254,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2052), 38, + ACTIONS(1463), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75126,11 +75293,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26070] = 3, + [25550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1958), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75138,7 +75305,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1960), 38, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75177,11 +75344,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26124] = 3, + [25604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2084), 7, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75189,7 +75356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2086), 38, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75228,113 +75395,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26178] = 3, + [25658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2066), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2752), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(2068), 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, - [26232] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2062), 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(2750), 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(2064), 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, - [26286] = 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, + [25712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2046), 7, + ACTIONS(1549), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75342,7 +75458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2048), 38, + ACTIONS(1551), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75381,11 +75497,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26340] = 3, + [25766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75393,7 +75509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1932), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75432,11 +75548,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26394] = 3, + [25820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75444,7 +75560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(2012), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75483,11 +75599,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26448] = 3, + [25874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2038), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75495,7 +75611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2040), 38, + ACTIONS(2008), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75534,11 +75650,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26502] = 3, + [25928] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(1361), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75546,7 +75662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(1363), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75585,11 +75701,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26556] = 3, + [25982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2030), 7, + ACTIONS(2018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75597,7 +75713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2032), 38, + ACTIONS(2020), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75636,11 +75752,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26610] = 3, + [26036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75648,7 +75764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75687,66 +75803,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26664] = 7, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - STATE(1045), 1, - sym_arguments, + [26090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2789), 14, - 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, - ACTIONS(2787), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - 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, - [26726] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75754,7 +75815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1892), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75793,11 +75854,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26780] = 3, + [26144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(1317), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75805,7 +75866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1319), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75844,11 +75905,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26834] = 3, + [26198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1742), 7, + ACTIONS(2022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75856,7 +75917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(2024), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75895,11 +75956,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26888] = 3, + [26252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75907,7 +75968,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1884), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75946,11 +76007,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26942] = 3, + [26306] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1683), 7, + ACTIONS(1501), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75958,7 +76019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1685), 38, + ACTIONS(1503), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75997,11 +76058,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26996] = 3, + [26360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, + ACTIONS(1053), 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(1055), 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_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, + [26414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1365), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76009,7 +76121,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(1367), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76048,11 +76160,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27050] = 3, + [26468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1667), 7, + ACTIONS(1477), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76060,7 +76172,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1669), 38, + ACTIONS(1479), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76099,11 +76211,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27104] = 3, + [26522] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1639), 7, + ACTIONS(1417), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76111,7 +76223,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1641), 38, + ACTIONS(1419), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76150,11 +76262,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27158] = 3, + [26576] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1970), 7, + ACTIONS(2026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76162,7 +76274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(2028), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76201,11 +76313,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27212] = 3, + [26630] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1593), 7, + ACTIONS(1561), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76213,7 +76325,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1595), 38, + ACTIONS(1563), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76252,11 +76364,66 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27266] = 3, + [26684] = 7, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + STATE(1004), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2760), 14, + 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, + ACTIONS(2754), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + [26746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1924), 7, + ACTIONS(2034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76264,7 +76431,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(2036), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76303,11 +76470,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27320] = 3, + [26800] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, + ACTIONS(1369), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76315,7 +76482,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1964), 38, + ACTIONS(1371), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76354,11 +76521,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27374] = 3, + [26854] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76366,7 +76533,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76405,62 +76572,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27428] = 3, + [26908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1539), 7, + ACTIONS(2766), 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(2764), 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(1541), 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, - [27482] = 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, + [26962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1904), 7, + ACTIONS(1301), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76468,7 +76635,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1906), 38, + ACTIONS(1303), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76507,11 +76674,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27536] = 3, + [27016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1515), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76519,7 +76686,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1517), 38, + ACTIONS(1924), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76558,11 +76725,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27590] = 3, + [27070] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(2042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76570,7 +76737,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(2044), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76609,11 +76776,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27644] = 3, + [27124] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2132), 7, + ACTIONS(2050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76621,7 +76788,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2134), 38, + ACTIONS(2052), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76660,11 +76827,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27698] = 3, + [27178] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1455), 7, + ACTIONS(2066), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76672,7 +76839,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1457), 38, + ACTIONS(2068), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76711,11 +76878,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27752] = 3, + [27232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1451), 7, + ACTIONS(2070), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76723,7 +76890,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1453), 38, + ACTIONS(2072), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76762,62 +76929,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27806] = 3, + [27286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(2770), 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(2768), 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(1864), 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, - [27860] = 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, + [27340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1447), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76825,7 +76992,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1449), 38, + ACTIONS(1856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76864,11 +77031,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27914] = 3, + [27394] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1443), 7, + ACTIONS(417), 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(415), 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, + [27448] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(431), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76876,7 +77094,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1445), 38, + ACTIONS(433), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76915,11 +77133,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27968] = 3, + [27502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76927,7 +77145,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1676), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76966,11 +77184,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28022] = 3, + [27556] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1419), 7, + ACTIONS(2074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76978,7 +77196,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1421), 38, + ACTIONS(2076), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77017,11 +77235,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28076] = 3, + [27610] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77029,7 +77247,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77068,11 +77286,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28130] = 3, + [27664] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1403), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77080,7 +77298,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1405), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77119,11 +77337,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28184] = 3, + [27718] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1399), 7, + ACTIONS(517), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77131,7 +77349,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1401), 38, + ACTIONS(519), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77170,11 +77388,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28238] = 3, + [27772] = 4, + ACTIONS(2776), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2774), 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(2772), 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, + [27828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1395), 7, + ACTIONS(1577), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77182,7 +77452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1397), 38, + ACTIONS(1579), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77221,11 +77491,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28292] = 3, + [27882] = 4, + ACTIONS(2778), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2684), 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(2682), 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, + [27938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1387), 7, + ACTIONS(2082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77233,7 +77555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1389), 38, + ACTIONS(2084), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77272,11 +77594,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28346] = 3, + [27992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 7, + ACTIONS(1373), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77284,7 +77606,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(1375), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77323,11 +77645,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28400] = 3, + [28046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1383), 7, + ACTIONS(1581), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77335,7 +77657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1385), 38, + ACTIONS(1583), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77374,11 +77696,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28454] = 3, + [28100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1519), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77386,7 +77708,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1521), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77425,62 +77747,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28508] = 3, + [28154] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 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(1844), 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, + ACTIONS(2784), 6, 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, - [28562] = 3, + ACTIONS(2782), 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(2780), 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, + [28210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77488,7 +77811,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77527,66 +77850,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28616] = 3, + [28264] = 4, + ACTIONS(2790), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + ACTIONS(2788), 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(2786), 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(1946), 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, - [28670] = 5, - ACTIONS(2651), 1, - anon_sym_BANG, - ACTIONS(2791), 1, - anon_sym_COLON_COLON, + 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, + [28320] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(521), 15, + ACTIONS(2794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -77602,10 +77922,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(519), 28, + ACTIONS(2792), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -77613,6 +77934,7 @@ static 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, @@ -77631,11 +77953,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28728] = 3, + [28374] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77643,7 +77965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1922), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77682,11 +78004,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28782] = 3, + [28428] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1295), 7, + ACTIONS(1293), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77694,7 +78016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1297), 38, + ACTIONS(1295), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77733,11 +78055,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28836] = 3, + [28482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1527), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77745,7 +78067,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1529), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77784,11 +78106,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28890] = 3, + [28536] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(2142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77796,7 +78118,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(2144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77835,11 +78157,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28944] = 3, + [28590] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77847,7 +78169,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77886,11 +78208,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28998] = 3, + [28644] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1619), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77898,7 +78220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1621), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77937,65 +78259,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29052] = 4, - ACTIONS(2797), 1, - anon_sym_DASH_GT, + [28698] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2795), 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(2793), 29, + ACTIONS(1401), 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, - [29108] = 4, - ACTIONS(2803), 1, - anon_sym_DASH_GT, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1403), 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, + [28752] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2801), 15, + ACTIONS(2798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78011,7 +78330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2799), 29, + ACTIONS(2796), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -78023,6 +78342,7 @@ static 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, @@ -78041,66 +78361,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29164] = 7, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - STATE(1045), 1, - sym_arguments, + [28806] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2807), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1710), 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, - ACTIONS(2805), 27, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1712), 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, + [28860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2122), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - 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, - [29226] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2124), 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, + [28914] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1307), 7, + ACTIONS(1413), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78108,7 +78475,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1309), 38, + ACTIONS(1415), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78147,11 +78514,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29280] = 3, + [28968] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1467), 7, + ACTIONS(2126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78159,7 +78526,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1469), 38, + ACTIONS(2128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78198,11 +78565,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29334] = 3, + [29022] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(2134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78210,7 +78577,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(2136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78249,11 +78616,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29388] = 3, + [29076] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1766), 7, + ACTIONS(1623), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78261,7 +78628,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(1625), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78300,11 +78667,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29442] = 3, + [29130] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2002), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78312,7 +78679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2004), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78351,11 +78718,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29496] = 3, + [29184] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1367), 7, + ACTIONS(1627), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78363,7 +78730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1369), 38, + ACTIONS(1629), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78402,11 +78769,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29550] = 3, + [29238] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(2110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78414,7 +78781,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(2112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78453,13 +78820,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29604] = 4, - ACTIONS(2813), 1, - anon_sym_DASH_GT, + [29292] = 7, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2811), 15, + ACTIONS(2802), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78474,15 +78847,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2809), 29, + ACTIONS(2800), 27, 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, @@ -78505,11 +78875,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29660] = 3, + [29354] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1389), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78517,7 +78887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1391), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78556,11 +78926,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29714] = 3, + [29408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1635), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78568,7 +78938,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1637), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78607,11 +78977,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29768] = 3, + [29462] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1687), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78619,7 +78989,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1689), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78658,11 +79028,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29822] = 3, + [29516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1597), 7, + ACTIONS(1443), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78670,7 +79040,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1599), 38, + ACTIONS(1445), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78709,11 +79079,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29876] = 3, + [29570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1699), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78721,7 +79091,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1701), 38, + ACTIONS(1920), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78760,11 +79130,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29930] = 3, + [29624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1585), 7, + ACTIONS(2106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78772,7 +79142,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1587), 38, + ACTIONS(2108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78811,11 +79181,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29984] = 3, + [29678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1573), 7, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78823,7 +79193,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1575), 38, + ACTIONS(1896), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78862,11 +79232,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30038] = 3, + [29732] = 4, + ACTIONS(2808), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(423), 15, + ACTIONS(2806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78882,7 +79254,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(421), 30, + ACTIONS(2804), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -78912,12 +79284,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [30092] = 3, + [29788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1569), 7, + ACTIONS(1451), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78925,7 +79296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1571), 38, + ACTIONS(1453), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78964,11 +79335,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30146] = 3, + [29842] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1565), 7, + ACTIONS(2090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78976,7 +79347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1567), 38, + ACTIONS(2092), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79015,11 +79386,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30200] = 3, + [29896] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1503), 7, + ACTIONS(443), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79027,7 +79398,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1505), 38, + ACTIONS(445), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79066,13 +79437,14 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30254] = 4, - ACTIONS(2819), 1, - anon_sym_COLON_COLON, + [29950] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2817), 15, + ACTIONS(2812), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79088,11 +79460,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2815), 29, + ACTIONS(2810), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -79118,11 +79489,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30310] = 3, + [30006] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2675), 17, + ACTIONS(2818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79133,14 +79504,12 @@ static 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(2673), 28, + ACTIONS(2816), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -79152,13 +79521,14 @@ static 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_LT2, 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, @@ -79168,14 +79538,13 @@ static 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, - [30364] = 4, - ACTIONS(2821), 1, - anon_sym_COLON_COLON, + [30060] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2691), 15, + ACTIONS(2822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79191,7 +79560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2689), 29, + ACTIONS(2820), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -79203,6 +79572,7 @@ static 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, @@ -79221,11 +79591,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30420] = 3, + [30114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1303), 7, + ACTIONS(2062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79233,7 +79603,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1305), 38, + ACTIONS(2064), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79272,66 +79642,64 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30474] = 4, - ACTIONS(2823), 1, - anon_sym_COLON_COLON, + [30168] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2691), 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(2689), 29, + ACTIONS(1313), 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, - [30530] = 4, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1315), 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, + [30222] = 4, + ACTIONS(2828), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2825), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2769), 15, + ACTIONS(2826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79347,10 +79715,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2765), 28, + ACTIONS(2824), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -79376,11 +79745,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30586] = 3, + [30278] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1327), 7, + ACTIONS(1309), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79388,7 +79757,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1329), 38, + ACTIONS(1311), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79427,11 +79796,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30640] = 3, + [30332] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1535), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79439,7 +79808,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1537), 38, + ACTIONS(1860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79478,11 +79847,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30694] = 3, + [30386] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1311), 7, + ACTIONS(2058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79490,7 +79859,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1313), 38, + ACTIONS(2060), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79529,11 +79898,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30748] = 3, + [30440] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1319), 7, + ACTIONS(1473), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79541,7 +79910,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1321), 38, + ACTIONS(1475), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79580,11 +79949,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30802] = 3, + [30494] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1675), 7, + ACTIONS(2046), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79592,7 +79961,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1677), 38, + ACTIONS(2048), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79631,11 +80000,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30856] = 3, + [30548] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1355), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79643,7 +80012,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1357), 38, + ACTIONS(1900), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79682,11 +80051,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30910] = 3, + [30602] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1439), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79694,7 +80063,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1441), 38, + ACTIONS(1872), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79733,11 +80102,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30964] = 3, + [30656] = 4, + ACTIONS(2834), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1435), 7, + ACTIONS(2832), 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(2830), 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, + [30712] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1337), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79745,7 +80166,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1437), 38, + ACTIONS(1339), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79784,11 +80205,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31018] = 3, + [30766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2070), 7, + ACTIONS(2712), 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(2710), 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, + [30820] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1631), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79796,7 +80268,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2072), 38, + ACTIONS(1633), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79835,11 +80307,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31072] = 3, + [30874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1663), 7, + ACTIONS(1611), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79847,7 +80319,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1665), 38, + ACTIONS(1613), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79886,11 +80358,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31126] = 3, + [30928] = 4, + ACTIONS(2836), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1659), 7, + ACTIONS(515), 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(513), 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, + [30984] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1601), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79898,7 +80422,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1661), 38, + ACTIONS(1603), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79937,11 +80461,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31180] = 3, + [31038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2058), 7, + ACTIONS(1289), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79949,7 +80473,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2060), 38, + ACTIONS(1291), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79988,11 +80512,66 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31234] = 3, + [31092] = 7, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1655), 7, + ACTIONS(2840), 14, + 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, + ACTIONS(2838), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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, + [31154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1597), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80000,7 +80579,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1657), 38, + ACTIONS(1599), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80039,11 +80618,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31288] = 3, + [31208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1323), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80051,7 +80630,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1325), 38, + ACTIONS(1912), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80090,11 +80669,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31342] = 3, + [31262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1651), 7, + ACTIONS(1585), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80102,7 +80681,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1653), 38, + ACTIONS(1587), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80141,11 +80720,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31396] = 3, + [31316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1643), 7, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80153,7 +80732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1645), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80192,11 +80771,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31450] = 3, + [31370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1631), 7, + ACTIONS(1537), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80204,7 +80783,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1633), 38, + ACTIONS(1539), 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, + [31424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1345), 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(1347), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80243,11 +80873,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31504] = 3, + [31478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2829), 15, + ACTIONS(2844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80263,7 +80893,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2827), 30, + ACTIONS(2842), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80294,11 +80924,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31558] = 3, + [31532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1475), 7, + ACTIONS(1553), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80306,7 +80936,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1477), 38, + ACTIONS(1555), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80345,11 +80975,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31612] = 3, + [31586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1507), 7, + ACTIONS(1409), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80357,7 +80987,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1509), 38, + ACTIONS(1411), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80396,11 +81026,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31666] = 3, + [31640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1750), 7, + ACTIONS(1573), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80408,7 +81038,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(1575), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80447,11 +81077,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31720] = 3, + [31694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(507), 7, + ACTIONS(1557), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80459,7 +81089,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(509), 38, + ACTIONS(1559), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80498,62 +81128,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31774] = 3, + [31748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(401), 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(399), 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, - [31828] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1347), 7, + ACTIONS(1569), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80561,7 +81140,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1349), 38, + ACTIONS(1571), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80600,11 +81179,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31882] = 3, + [31802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + ACTIONS(1589), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80612,7 +81191,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(1591), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80651,62 +81230,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31936] = 3, + [31856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(413), 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(411), 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, - [31990] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(489), 7, + ACTIONS(1397), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80714,7 +81242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(491), 38, + ACTIONS(1399), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80753,11 +81281,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32044] = 3, + [31910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1589), 7, + ACTIONS(1565), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80765,7 +81293,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1591), 38, + ACTIONS(1567), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80804,11 +81332,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32098] = 3, + [31964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(413), 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(411), 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, + [32018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1329), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80816,7 +81395,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1331), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80855,11 +81434,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32152] = 3, + [32072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1954), 7, + ACTIONS(1349), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80867,7 +81446,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1956), 38, + ACTIONS(1351), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80906,11 +81485,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32206] = 3, + [32126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1679), 7, + ACTIONS(2848), 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(2846), 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, + [32180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1529), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80918,7 +81548,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1681), 38, + ACTIONS(1531), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80957,11 +81587,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32260] = 3, + [32234] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2852), 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(2850), 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, + [32288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1613), 7, + ACTIONS(1521), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80969,7 +81650,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1615), 38, + ACTIONS(1523), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81008,11 +81689,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32314] = 3, + [32342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2833), 15, + ACTIONS(401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81028,7 +81709,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2831), 30, + ACTIONS(399), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81040,7 +81721,6 @@ static 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, @@ -81059,62 +81739,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32368] = 3, + anon_sym_else, + [32396] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1609), 7, + ACTIONS(2854), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2814), 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(2810), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1611), 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, - [32422] = 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, + [32452] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2120), 7, + ACTIONS(1593), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81122,7 +81804,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2122), 38, + ACTIONS(1595), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81161,11 +81843,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32476] = 3, + [32506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1605), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81173,7 +81855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1607), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81212,11 +81894,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32530] = 3, + [32560] = 4, + ACTIONS(2860), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2837), 15, + ACTIONS(2858), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81232,7 +81916,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2835), 30, + ACTIONS(2856), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81244,7 +81928,6 @@ static 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, @@ -81263,11 +81946,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32584] = 3, + [32616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1335), 7, + ACTIONS(1678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81275,7 +81958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1337), 38, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81314,11 +81997,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32638] = 3, + [32670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1990), 7, + ACTIONS(2118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81326,7 +82009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(2120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81365,11 +82048,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32692] = 3, + [32724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + ACTIONS(2114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81377,7 +82060,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(2116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81416,11 +82099,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32746] = 3, + [32778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1601), 7, + ACTIONS(1353), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81428,7 +82111,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1603), 38, + ACTIONS(1355), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81467,115 +82150,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32800] = 4, - ACTIONS(2843), 1, - anon_sym_DASH_GT, + [32832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2841), 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(2839), 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, - [32856] = 4, - ACTIONS(2823), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2711), 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(2709), 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, - [32912] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1577), 7, + ACTIONS(2038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81583,7 +82162,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1579), 38, + ACTIONS(2040), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81622,11 +82201,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32966] = 3, + [32886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1351), 7, + ACTIONS(1485), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81634,7 +82213,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1353), 38, + ACTIONS(1487), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81673,11 +82252,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33020] = 3, + [32940] = 4, + ACTIONS(2738), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2847), 15, + ACTIONS(2708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81693,7 +82274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2845), 30, + ACTIONS(2706), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81705,7 +82286,6 @@ static 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, @@ -81724,62 +82304,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33074] = 3, + [32996] = 7, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1287), 7, + ACTIONS(2864), 14, + 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, + ACTIONS(2862), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1289), 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, - [33128] = 3, + anon_sym_EQ_GT, + 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, + [33058] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1415), 7, + ACTIONS(1517), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81787,7 +82371,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1417), 38, + ACTIONS(1519), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81826,11 +82410,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33182] = 3, + [33112] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(469), 7, + ACTIONS(1357), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81838,7 +82422,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(471), 38, + ACTIONS(1359), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81877,11 +82461,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33236] = 3, + [33166] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1497), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81889,7 +82473,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1499), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81928,11 +82512,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33290] = 3, + [33220] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(1447), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81940,7 +82524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(1449), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81979,11 +82563,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33344] = 3, + [33274] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1774), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81991,7 +82575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1776), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82030,11 +82614,167 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33398] = 3, + [33328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(2868), 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(2866), 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, + [33382] = 4, + ACTIONS(2738), 1, + anon_sym_COLON_COLON, + 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, + [33438] = 5, + ACTIONS(2660), 1, + anon_sym_BANG, + ACTIONS(2870), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(515), 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(513), 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, + [33496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1305), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82042,7 +82782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(1307), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82081,11 +82821,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33452] = 3, + [33550] = 4, + ACTIONS(2876), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1635), 7, + ACTIONS(2874), 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(2872), 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, + [33606] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82093,7 +82885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1637), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82132,11 +82924,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33506] = 3, + [33660] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1746), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82144,7 +82936,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82183,11 +82975,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33560] = 3, + [33714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1695), 7, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82195,7 +82987,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1697), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82234,11 +83026,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33614] = 3, + [33768] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1691), 7, + ACTIONS(1690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82246,7 +83038,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1693), 38, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82285,11 +83077,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33668] = 3, + [33822] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2108), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82297,7 +83089,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2110), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82336,11 +83128,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33722] = 3, + [33876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1427), 7, + ACTIONS(1682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82348,7 +83140,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1429), 38, + ACTIONS(1684), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82387,63 +83179,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33776] = 4, - ACTIONS(2853), 1, - anon_sym_DASH_GT, + [33930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2851), 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(2849), 29, + ACTIONS(1874), 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, - [33832] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1876), 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, + [33984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2104), 7, + ACTIONS(1385), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82451,7 +83242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2106), 38, + ACTIONS(1387), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82490,11 +83281,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33886] = 3, + [34038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1581), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82502,7 +83293,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1583), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82541,11 +83332,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33940] = 3, + [34092] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82553,7 +83344,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82592,11 +83383,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33994] = 3, + [34146] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2034), 7, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82604,7 +83395,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2036), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82643,11 +83434,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34048] = 3, + [34200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1423), 7, + ACTIONS(1405), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82655,7 +83446,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1425), 38, + ACTIONS(1407), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82694,11 +83485,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34102] = 3, + [34254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1671), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82706,7 +83497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1673), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82745,13 +83536,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34156] = 4, - ACTIONS(2859), 1, - anon_sym_DASH_GT, + [34308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2857), 15, + ACTIONS(2880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82767,7 +83556,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2855), 29, + ACTIONS(2878), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82797,11 +83586,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34212] = 3, + [34361] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2863), 15, + ACTIONS(2884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82817,7 +83606,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2861), 30, + ACTIONS(2882), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82829,7 +83618,6 @@ static 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, @@ -82848,164 +83636,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34266] = 3, + [34414] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1531), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2888), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1533), 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, - [34320] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1523), 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(2886), 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(1525), 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, - [34374] = 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, + [34467] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1431), 7, + 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_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(1433), 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, - [34428] = 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, + [34520] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2867), 15, + ACTIONS(457), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83021,7 +83756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2865), 30, + ACTIONS(455), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83033,7 +83768,6 @@ static 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, @@ -83052,64 +83786,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34482] = 3, + [34573] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1331), 7, + ACTIONS(519), 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(517), 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(1333), 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, - [34536] = 4, - ACTIONS(2823), 1, - anon_sym_COLON_COLON, + 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, + [34626] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2687), 15, + ACTIONS(2896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83125,7 +83856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2685), 29, + ACTIONS(2894), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83155,113 +83886,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34592] = 3, + [34679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(473), 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(471), 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(1816), 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, - [34646] = 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, + [34732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(2900), 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(2898), 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(1880), 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, - [34700] = 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, + [34785] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2871), 15, + ACTIONS(445), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83277,7 +84006,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2869), 29, + ACTIONS(443), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83307,76 +84036,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34753] = 16, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2789), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2787), 21, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - 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, - [34832] = 4, - ACTIONS(2891), 1, - anon_sym_COLON_COLON, + [34838] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2745), 15, + ACTIONS(2904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83392,10 +84056,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2743), 28, + ACTIONS(2902), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83421,11 +84086,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34887] = 3, + [34891] = 4, + ACTIONS(2906), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(449), 15, + ACTIONS(515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83441,11 +84108,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(447), 29, + ACTIONS(513), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83471,11 +84137,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34940] = 3, + [34946] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(529), 15, + ACTIONS(2680), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83491,7 +84157,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(527), 29, + ACTIONS(2678), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83521,11 +84187,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34993] = 3, + [34999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(525), 15, + ACTIONS(2910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83541,7 +84207,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(523), 29, + ACTIONS(2908), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83571,11 +84237,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35046] = 3, + [35052] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2895), 15, + ACTIONS(499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83591,7 +84257,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2893), 29, + ACTIONS(497), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83621,11 +84287,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35099] = 3, + [35105] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 15, + ACTIONS(2914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83641,7 +84307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2897), 29, + ACTIONS(2912), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83671,11 +84337,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35152] = 3, + [35158] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(453), 15, + ACTIONS(2708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83691,7 +84357,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(451), 29, + ACTIONS(2706), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83721,247 +84387,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35205] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2903), 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(2901), 29, - anon_sym_SEMI, + [35211] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2758), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2922), 1, anon_sym_QMARK, + ACTIONS(2924), 1, 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, - [35258] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2907), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2926), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2930), 1, anon_sym_AMP, + ACTIONS(2934), 1, 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(2905), 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, + ACTIONS(2936), 1, anon_sym_AMP_AMP, + ACTIONS(2938), 1, 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, - [35311] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2911), 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, + ACTIONS(2940), 1, anon_sym_PIPE, + ACTIONS(2942), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2909), 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, - [35364] = 3, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2915), 15, + ACTIONS(2918), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2913), 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, + ACTIONS(2944), 4, 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, - [35417] = 4, - ACTIONS(2917), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(521), 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(519), 28, + ACTIONS(2916), 6, 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, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83972,11 +84456,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35472] = 3, + [35302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(509), 15, + ACTIONS(477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83992,7 +84476,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(507), 29, + ACTIONS(475), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84022,11 +84506,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35525] = 3, + [35355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2921), 15, + ACTIONS(2952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84042,7 +84526,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2919), 29, + ACTIONS(2950), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84072,11 +84556,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35578] = 3, + [35408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 15, + ACTIONS(2956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84092,7 +84576,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2923), 29, + ACTIONS(2954), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84122,11 +84606,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35631] = 3, + [35461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2929), 15, + ACTIONS(2960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84142,7 +84626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2927), 29, + ACTIONS(2958), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84172,11 +84656,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35684] = 3, + [35514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(437), 15, + ACTIONS(507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84192,7 +84676,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(435), 29, + ACTIONS(505), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84222,11 +84706,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35737] = 3, + [35567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2933), 15, + ACTIONS(2964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84242,7 +84726,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2931), 29, + ACTIONS(2962), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84272,11 +84756,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35790] = 3, + [35620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(513), 15, + ACTIONS(2968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84292,7 +84776,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(511), 29, + ACTIONS(2966), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84322,11 +84806,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35843] = 3, + [35673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2937), 15, + ACTIONS(2972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84342,7 +84826,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2935), 29, + ACTIONS(2970), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84372,11 +84856,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35896] = 3, + [35726] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2745), 15, + ACTIONS(2976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84392,7 +84876,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2743), 29, + ACTIONS(2974), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84422,11 +84906,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35949] = 3, + [35779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2941), 15, + ACTIONS(529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84442,7 +84926,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2939), 29, + ACTIONS(527), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84472,63 +84956,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36002] = 3, + [35832] = 8, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(467), 15, - anon_sym_PLUS, + ACTIONS(2920), 3, 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(465), 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, - [36055] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2945), 15, + ACTIONS(2840), 11, anon_sym_PLUS, - anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84539,17 +84984,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2943), 29, + ACTIONS(2838), 26, 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, @@ -84572,11 +85011,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36108] = 3, + [35895] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2949), 15, + ACTIONS(2980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84592,7 +85031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2947), 29, + ACTIONS(2978), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84622,11 +85061,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36161] = 3, + [35948] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2953), 15, + ACTIONS(2984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84642,7 +85081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2951), 29, + ACTIONS(2982), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84672,11 +85111,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36214] = 3, + [36001] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(495), 15, + ACTIONS(491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84692,7 +85131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(493), 29, + ACTIONS(489), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84722,11 +85161,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36267] = 3, + [36054] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2687), 15, + ACTIONS(2988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84742,7 +85181,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2685), 29, + ACTIONS(2986), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84772,11 +85211,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36320] = 3, + [36107] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2769), 15, + ACTIONS(2992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84792,7 +85231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2765), 29, + ACTIONS(2990), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84822,112 +85261,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36373] = 19, - ACTIONS(299), 1, - anon_sym_EQ, - ACTIONS(2731), 1, + [36160] = 19, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - STATE(1045), 1, + ACTIONS(2996), 1, + anon_sym_EQ, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(293), 18, - anon_sym_SEMI, - 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, - [36458] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2963), 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(2961), 29, + ACTIONS(2994), 18, 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, @@ -84938,11 +85327,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36511] = 3, + [36245] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2967), 15, + ACTIONS(3000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84958,7 +85347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2965), 29, + ACTIONS(2998), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84988,11 +85377,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36564] = 3, + [36298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2971), 15, + ACTIONS(3004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85008,7 +85397,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2969), 29, + ACTIONS(3002), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85038,11 +85427,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36617] = 3, + [36351] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2975), 15, + ACTIONS(3008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85058,7 +85447,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2973), 29, + ACTIONS(3006), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85088,11 +85477,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36670] = 3, + [36404] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 15, + ACTIONS(3012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85108,7 +85497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2977), 29, + ACTIONS(3010), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85138,100 +85527,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36723] = 19, - ACTIONS(2731), 1, + [36457] = 13, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2983), 1, - anon_sym_EQ, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2981), 18, - anon_sym_SEMI, - 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, - [36808] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2987), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2840), 4, 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(2985), 29, + ACTIONS(2838), 26, 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, @@ -85254,11 +85587,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36861] = 3, + [36530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 15, + ACTIONS(3016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85274,7 +85607,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2989), 29, + ACTIONS(3014), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85304,11 +85637,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36914] = 3, + [36583] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 15, + ACTIONS(3020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85324,7 +85657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2993), 29, + ACTIONS(3018), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85354,34 +85687,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36967] = 3, + [36636] = 10, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2999), 15, + ACTIONS(2918), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2840), 7, 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(2997), 29, + ACTIONS(2838), 26, 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, @@ -85404,96 +85744,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37020] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2711), 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(2709), 29, - anon_sym_SEMI, + [36703] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2758), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2922), 1, anon_sym_QMARK, + ACTIONS(2924), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, + ACTIONS(2938), 1, 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, - [37073] = 3, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3003), 15, + ACTIONS(2918), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3001), 29, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3022), 6, 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, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85504,11 +85813,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37126] = 3, + [36794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3007), 15, + ACTIONS(3020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85524,7 +85833,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3005), 29, + ACTIONS(3018), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85554,36 +85863,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37179] = 9, - ACTIONS(2731), 1, + [36847] = 17, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - STATE(1045), 1, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2789), 9, - anon_sym_EQ, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2787), 26, + ACTIONS(3026), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(2920), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3024), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -85594,12 +85917,6 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -85610,34 +85927,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37244] = 3, + [36928] = 15, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2840), 2, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DOT_DOT, + ACTIONS(2918), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3009), 29, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2838), 22, 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, @@ -85646,10 +85979,6 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -85660,46 +85989,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37297] = 3, + [37005] = 16, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2840), 2, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DOT_DOT, + ACTIONS(2918), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3013), 29, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2838), 21, 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, @@ -85710,11 +86052,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37350] = 3, + [37084] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3019), 15, + ACTIONS(3030), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85730,7 +86072,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3017), 29, + ACTIONS(3028), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85760,34 +86102,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37403] = 3, + [37137] = 12, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2942), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(503), 15, + ACTIONS(2918), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2840), 5, 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(501), 29, + ACTIONS(2838), 26, 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, @@ -85810,38 +86161,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37456] = 11, - ACTIONS(2731), 1, + [37208] = 11, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2930), 1, anon_sym_AMP, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2889), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2875), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2789), 6, + ACTIONS(2840), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2787), 26, + ACTIONS(2838), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -85868,39 +86219,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37525] = 12, - ACTIONS(2731), 1, + [37277] = 9, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2885), 1, - anon_sym_CARET, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2875), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2789), 5, + ACTIONS(2840), 9, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_PIPE, - ACTIONS(2787), 26, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2838), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -85927,46 +86275,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37596] = 3, + [37342] = 19, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3034), 1, + anon_sym_EQ, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3023), 15, + ACTIONS(2918), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3021), 29, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3032), 18, 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, @@ -85977,11 +86341,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37649] = 3, + [37427] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(487), 15, + ACTIONS(3038), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85997,7 +86361,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(485), 29, + ACTIONS(3036), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86027,50 +86391,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37702] = 15, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - STATE(1045), 1, - sym_arguments, + [37480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2789), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2873), 2, + ACTIONS(3042), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2875), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2787), 22, + anon_sym_DOT, + ACTIONS(3040), 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, @@ -86079,6 +86427,10 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -86089,60 +86441,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37779] = 17, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - STATE(1045), 1, - sym_arguments, + [37533] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2814), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3027), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2875), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3025), 20, + anon_sym_DOT, + ACTIONS(2810), 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, @@ -86153,41 +86491,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37860] = 10, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - STATE(1045), 1, - sym_arguments, + [37586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3046), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2875), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2789), 7, 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, - ACTIONS(2787), 26, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3044), 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, @@ -86210,44 +86541,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37927] = 13, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - STATE(1045), 1, - sym_arguments, + [37639] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(441), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2875), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2789), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_DOT_DOT, - ACTIONS(2787), 26, + 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(439), 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, @@ -86270,11 +86591,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38000] = 3, + [37692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(475), 15, + ACTIONS(3050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86290,7 +86611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(473), 29, + ACTIONS(3048), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86320,54 +86641,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38053] = 19, - ACTIONS(2731), 1, + [37745] = 17, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3031), 1, - anon_sym_EQ, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(323), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3029), 18, + ACTIONS(321), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -86376,6 +86693,8 @@ static 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_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86386,11 +86705,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38138] = 3, + [37826] = 4, + ACTIONS(3052), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3035), 15, + ACTIONS(2782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86406,11 +86727,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3033), 29, + ACTIONS(2780), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86436,24 +86756,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38191] = 8, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - STATE(1045), 1, - sym_arguments, + [37881] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2789), 11, + ACTIONS(3056), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -86464,11 +86773,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2787), 26, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3054), 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, @@ -86491,11 +86806,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38254] = 3, + [37934] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3039), 15, + ACTIONS(3060), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86511,7 +86826,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3037), 29, + ACTIONS(3058), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86541,11 +86856,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38307] = 3, + [37987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3043), 15, + ACTIONS(3064), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86561,7 +86876,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3041), 29, + ACTIONS(3062), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86591,62 +86906,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38360] = 19, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3047), 1, - anon_sym_EQ, - STATE(1045), 1, - sym_arguments, + [38040] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(433), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3045), 18, + anon_sym_DOT, + ACTIONS(431), 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, @@ -86657,11 +86956,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38445] = 3, + [38093] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(491), 15, + ACTIONS(3068), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86677,7 +86976,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(489), 29, + ACTIONS(3066), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86707,11 +87006,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38498] = 3, + [38146] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 15, + ACTIONS(2782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86727,7 +87026,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3049), 29, + ACTIONS(2780), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86757,11 +87056,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38551] = 3, + [38199] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 15, + ACTIONS(449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86777,7 +87076,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3053), 29, + ACTIONS(447), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86807,11 +87106,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38604] = 3, + [38252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3059), 15, + ACTIONS(3072), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86827,7 +87126,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3057), 29, + ACTIONS(3070), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86857,11 +87156,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38657] = 3, + [38305] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(499), 15, + ACTIONS(3076), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86877,7 +87176,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(497), 29, + ACTIONS(3074), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86907,11 +87206,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38710] = 3, + [38358] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 15, + ACTIONS(3080), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86927,7 +87226,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3061), 29, + ACTIONS(3078), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86957,11 +87256,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38763] = 3, + [38411] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3067), 15, + ACTIONS(3084), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86977,7 +87276,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3065), 29, + ACTIONS(3082), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87007,60 +87306,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38816] = 17, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - STATE(1045), 1, - sym_arguments, + [38464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(351), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2873), 2, + ACTIONS(537), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2875), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(349), 20, + anon_sym_DOT, + ACTIONS(535), 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, @@ -87071,11 +87356,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38897] = 3, + [38517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3067), 15, + ACTIONS(503), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87091,7 +87376,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3065), 29, + ACTIONS(501), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87121,11 +87406,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38950] = 3, + [38570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(479), 15, + ACTIONS(453), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87141,7 +87426,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(477), 29, + ACTIONS(451), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87171,11 +87456,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39003] = 3, + [38623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 15, + ACTIONS(3088), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87191,7 +87476,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3069), 29, + ACTIONS(3086), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87221,11 +87506,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39056] = 3, + [38676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 15, + ACTIONS(469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87241,7 +87526,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3073), 29, + ACTIONS(467), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87271,11 +87556,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39109] = 3, + [38729] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3079), 15, + ACTIONS(481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87291,7 +87576,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3077), 29, + ACTIONS(479), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87321,11 +87606,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39162] = 3, + [38782] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(441), 15, + ACTIONS(487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87341,7 +87626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(439), 29, + ACTIONS(485), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87371,11 +87656,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39215] = 3, + [38835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(463), 15, + ACTIONS(3092), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87391,7 +87676,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(461), 29, + ACTIONS(3090), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87421,65 +87706,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39268] = 22, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, - sym_arguments, + [38888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3096), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3081), 6, + anon_sym_DOT, + ACTIONS(3094), 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, - ACTIONS(3089), 10, + 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, @@ -87490,11 +87756,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39359] = 3, + [38941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(483), 15, + ACTIONS(3100), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87510,7 +87776,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(481), 29, + ACTIONS(3098), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87540,11 +87806,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39412] = 3, + [38994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(471), 15, + ACTIONS(3104), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87560,7 +87826,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(469), 29, + ACTIONS(3102), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87590,11 +87856,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39465] = 3, + [39047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3093), 15, + ACTIONS(437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87610,7 +87876,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3091), 29, + ACTIONS(435), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87640,11 +87906,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39518] = 3, + [39100] = 19, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3108), 1, + anon_sym_EQ, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3097), 15, + ACTIONS(2918), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3106), 18, + anon_sym_SEMI, + 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, + [39185] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87660,7 +87992,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3095), 29, + ACTIONS(493), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87690,11 +88022,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39571] = 3, + [39238] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 15, + ACTIONS(461), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87710,7 +88042,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3099), 29, + ACTIONS(459), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87740,65 +88072,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39624] = 22, - ACTIONS(2731), 1, + [39291] = 19, + ACTIONS(299), 1, + anon_sym_EQ, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3103), 6, + ACTIONS(293), 18, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3089), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -87809,11 +88138,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39715] = 3, + [39376] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3112), 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(3110), 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, + [39429] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3107), 15, + ACTIONS(3116), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87829,7 +88208,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3105), 29, + ACTIONS(3114), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87859,96 +88238,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39768] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3111), 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(3109), 29, - anon_sym_SEMI, + [39482] = 19, + ACTIONS(2756), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2758), 1, 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, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, + ACTIONS(2938), 1, 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, - [39821] = 3, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3120), 1, + anon_sym_EQ, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 15, + ACTIONS(2918), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3113), 29, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3118), 18, 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, @@ -87959,11 +88304,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39874] = 3, + [39567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3119), 15, + ACTIONS(3124), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87979,7 +88324,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3117), 29, + ACTIONS(3122), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88009,77 +88354,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39927] = 19, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 1, - anon_sym_EQ, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3121), 18, - anon_sym_SEMI, - 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, - [40012] = 3, + [39620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3127), 15, + ACTIONS(3128), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88095,7 +88374,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3125), 29, + ACTIONS(3126), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88125,11 +88404,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40065] = 3, + [39673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(433), 15, + ACTIONS(3132), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88145,7 +88424,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(431), 29, + ACTIONS(3130), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88175,11 +88454,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40118] = 3, + [39726] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3131), 15, + ACTIONS(3136), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88195,7 +88474,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3129), 29, + ACTIONS(3134), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88225,11 +88504,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40171] = 3, + [39779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(459), 15, + ACTIONS(3140), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88245,7 +88524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(457), 29, + ACTIONS(3138), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88275,11 +88554,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40224] = 3, + [39832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3135), 15, + ACTIONS(3144), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88295,7 +88574,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3133), 29, + ACTIONS(3142), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88325,11 +88604,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40277] = 3, + [39885] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3139), 12, + ACTIONS(3148), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -88342,7 +88621,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3137), 31, + ACTIONS(3146), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88374,11 +88653,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40329] = 3, + [39937] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3143), 12, + ACTIONS(3152), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -88391,7 +88670,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3141), 31, + ACTIONS(3150), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88423,11 +88702,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40381] = 3, + [39989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 12, + ACTIONS(3156), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -88440,7 +88719,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3145), 31, + ACTIONS(3154), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88472,26 +88751,24 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40433] = 5, - ACTIONS(3149), 1, - anon_sym_POUND, + [40041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1062), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2510), 9, + ACTIONS(3160), 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(2508), 31, + ACTIONS(3158), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88515,32 +88792,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, - anon_sym_pub, anon_sym_unsafe, + anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [40489] = 3, + [40093] = 5, + ACTIONS(3162), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3154), 12, - anon_sym_SEMI, + STATE(1065), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2483), 9, 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(3152), 31, + ACTIONS(2481), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88564,19 +88843,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, + anon_sym_pub, anon_sym_unsafe, - anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [40541] = 3, + [40149] = 7, + ACTIONS(2694), 1, + anon_sym_LBRACE, + ACTIONS(2696), 1, + anon_sym_COLON_COLON, + ACTIONS(3165), 1, + anon_sym_BANG, + STATE(1018), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(515), 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(513), 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, + [40209] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3158), 12, + ACTIONS(3169), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -88589,7 +88921,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3156), 31, + ACTIONS(3167), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88621,11 +88953,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40593] = 3, + [40261] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3162), 12, + ACTIONS(3173), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -88638,7 +88970,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3160), 31, + ACTIONS(3171), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88670,49 +89002,115 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40645] = 7, - ACTIONS(2669), 1, - anon_sym_LBRACE, - ACTIONS(2671), 1, - anon_sym_COLON_COLON, - ACTIONS(3164), 1, - anon_sym_BANG, - STATE(1037), 1, - sym_field_initializer_list, + [40313] = 4, + ACTIONS(3179), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(521), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3177), 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, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3175), 27, + 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_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_box, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40366] = 25, + ACTIONS(803), 1, + anon_sym_RBRACK, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, + ACTIONS(2942), 1, anon_sym_CARET, + ACTIONS(3181), 1, + anon_sym_SEMI, + ACTIONS(3183), 1, + anon_sym_COMMA, + STATE(1004), 1, + sym_arguments, + STATE(1883), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2918), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(519), 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, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -88723,54 +89121,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40705] = 20, + [40461] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(3166), 1, + ACTIONS(3185), 1, sym_identifier, - ACTIONS(3170), 1, + ACTIONS(3189), 1, anon_sym_LPAREN, - ACTIONS(3172), 1, + ACTIONS(3191), 1, anon_sym_STAR, - ACTIONS(3176), 1, + ACTIONS(3195), 1, anon_sym_for, - ACTIONS(3178), 1, + ACTIONS(3197), 1, anon_sym_AMP, - ACTIONS(3180), 1, + ACTIONS(3199), 1, sym_metavariable, - STATE(1732), 1, + STATE(1681), 1, sym_scoped_type_identifier, - STATE(1744), 1, - sym_generic_type, - STATE(1801), 1, + STATE(1746), 1, sym_where_predicate, - STATE(2227), 1, + STATE(1910), 1, + sym_generic_type, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2366), 1, + STATE(2250), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3168), 2, + ACTIONS(3187), 2, anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - STATE(2136), 5, + STATE(2106), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3174), 17, + ACTIONS(3193), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88788,66 +89186,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40790] = 25, - ACTIONS(403), 1, + [40546] = 25, + ACTIONS(425), 1, anon_sym_RBRACK, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3182), 1, + ACTIONS(3201), 1, anon_sym_SEMI, - ACTIONS(3184), 1, + ACTIONS(3203), 1, anon_sym_COMMA, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, - STATE(1787), 1, + STATE(1790), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -88858,54 +89256,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40885] = 20, + [40641] = 4, + ACTIONS(3209), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3207), 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(3205), 27, + 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_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_box, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40694] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(2276), 1, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(3166), 1, + ACTIONS(3185), 1, sym_identifier, - ACTIONS(3170), 1, + ACTIONS(3189), 1, anon_sym_LPAREN, - ACTIONS(3172), 1, + ACTIONS(3191), 1, anon_sym_STAR, - ACTIONS(3176), 1, + ACTIONS(3195), 1, anon_sym_for, - ACTIONS(3178), 1, + ACTIONS(3197), 1, anon_sym_AMP, - ACTIONS(3180), 1, + ACTIONS(3199), 1, sym_metavariable, - STATE(1732), 1, + STATE(1681), 1, sym_scoped_type_identifier, - STATE(1744), 1, - sym_generic_type, - STATE(1801), 1, + STATE(1746), 1, sym_where_predicate, - STATE(2227), 1, + STATE(1910), 1, + sym_generic_type, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2366), 1, + STATE(2250), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3186), 2, + ACTIONS(3211), 2, anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - STATE(2136), 5, + STATE(2106), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3174), 17, + ACTIONS(3193), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88923,66 +89370,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40970] = 25, - ACTIONS(681), 1, - anon_sym_RBRACK, - ACTIONS(2731), 1, + [40779] = 24, + ACTIONS(463), 1, + anon_sym_RPAREN, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3188), 1, - anon_sym_SEMI, - ACTIONS(3190), 1, + ACTIONS(3213), 1, anon_sym_COMMA, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, STATE(1757), 1, - aux_sym_array_expression_repeat1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -88993,17 +89438,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41065] = 6, - ACTIONS(2651), 1, - anon_sym_BANG, - ACTIONS(3192), 1, + [40871] = 5, + ACTIONS(2870), 1, anon_sym_COLON_COLON, - STATE(1037), 1, - sym_field_initializer_list, + ACTIONS(3165), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(521), 15, + ACTIONS(515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89019,9 +89462,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(519), 23, + ACTIONS(513), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -89043,53 +89487,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41121] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(753), 1, - anon_sym_for, - ACTIONS(765), 1, - anon_sym_extern, - ACTIONS(2464), 1, - anon_sym_fn, - ACTIONS(2470), 1, - anon_sym_COLON_COLON, - ACTIONS(3194), 1, - sym_identifier, - ACTIONS(3198), 1, - sym_metavariable, - STATE(723), 1, - sym_scoped_type_identifier, - STATE(928), 1, - sym_generic_type, + [40925] = 24, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3215), 1, + anon_sym_RPAREN, + ACTIONS(3217), 1, + anon_sym_COMMA, STATE(1004), 1, - sym_function_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2231), 1, - sym_function_modifiers, - STATE(2254), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_bracketed_type, - STATE(2326), 1, - sym_generic_type_with_turbofish, + sym_arguments, + STATE(1864), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(747), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(3196), 17, + ACTIONS(2918), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2948), 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, + [41017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3177), 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(3175), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89107,92 +89592,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [41205] = 20, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_box, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [41067] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(753), 1, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(2464), 1, - anon_sym_fn, - ACTIONS(2470), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(3198), 1, + ACTIONS(3199), 1, sym_metavariable, - ACTIONS(3200), 1, + ACTIONS(3219), 1, sym_identifier, - STATE(717), 1, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1253), 1, sym_scoped_type_identifier, - STATE(959), 1, + STATE(1279), 1, sym_generic_type, - STATE(991), 1, + STATE(1305), 1, sym_function_type, - STATE(1214), 1, - sym_for_lifetimes, - STATE(2231), 1, - sym_function_modifiers, - STATE(2254), 1, - sym_scoped_identifier, - STATE(2325), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2326), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, + STATE(2250), 1, + sym_scoped_identifier, + STATE(2324), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2478), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - ACTIONS(3196), 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, - [41289] = 4, - ACTIONS(3206), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3204), 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(3202), 26, + ACTIONS(3221), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89210,24 +89666,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41341] = 5, - ACTIONS(2791), 1, - anon_sym_COLON_COLON, - ACTIONS(3164), 1, + [41151] = 6, + ACTIONS(2660), 1, anon_sym_BANG, + ACTIONS(3223), 1, + anon_sym_COLON_COLON, + STATE(1018), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(521), 15, + ACTIONS(515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89243,10 +89692,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(519), 24, - anon_sym_SEMI, + ACTIONS(513), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -89268,79 +89716,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41395] = 24, - ACTIONS(505), 1, - anon_sym_RPAREN, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3208), 1, - anon_sym_COMMA, - STATE(1045), 1, - sym_arguments, - STATE(1779), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3089), 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, - [41487] = 3, + [41207] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3009), 10, + ACTIONS(2954), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PLUS, @@ -89351,7 +89731,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3011), 31, + ACTIONS(2956), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89383,101 +89763,53 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [41537] = 4, - ACTIONS(3214), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3212), 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(3210), 26, - 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_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41589] = 20, + [41257] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(1085), 1, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(3180), 1, - sym_metavariable, - ACTIONS(3216), 1, + ACTIONS(3225), 1, sym_identifier, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1249), 1, + ACTIONS(3229), 1, + sym_metavariable, + STATE(711), 1, sym_scoped_type_identifier, - STATE(1276), 1, + STATE(947), 1, sym_generic_type, - STATE(1306), 1, + STATE(976), 1, sym_function_type, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2279), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2234), 1, sym_function_modifiers, - STATE(2366), 1, + STATE(2257), 1, sym_scoped_identifier, + STATE(2328), 1, + sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - ACTIONS(3218), 17, + ACTIONS(3227), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89495,53 +89827,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [41673] = 20, + [41341] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(751), 1, - anon_sym_fn, - ACTIONS(753), 1, + ACTIONS(565), 1, anon_sym_for, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(1085), 1, + ACTIONS(2463), 1, + anon_sym_fn, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - ACTIONS(3180), 1, + ACTIONS(3229), 1, sym_metavariable, - ACTIONS(3220), 1, + ACTIONS(3231), 1, sym_identifier, - STATE(1215), 1, - sym_for_lifetimes, - STATE(1248), 1, + STATE(722), 1, sym_scoped_type_identifier, - STATE(1289), 1, + STATE(939), 1, sym_generic_type, - STATE(1313), 1, + STATE(980), 1, sym_function_type, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2279), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(2234), 1, sym_function_modifiers, - STATE(2366), 1, + STATE(2257), 1, sym_scoped_identifier, + STATE(2328), 1, + sym_bracketed_type, + STATE(2329), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(2477), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - ACTIONS(3218), 17, + ACTIONS(3227), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89559,90 +89891,147 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [41757] = 24, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3222), 1, - anon_sym_RPAREN, - ACTIONS(3224), 1, - anon_sym_COMMA, - STATE(1045), 1, - sym_arguments, - STATE(1977), 1, - aux_sym_arguments_repeat1, + [41425] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(1389), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3089), 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, - [41849] = 3, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1391), 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_pub, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [41475] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1589), 10, + ACTIONS(3207), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, anon_sym_POUND, - anon_sym_BANG, 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(3205), 27, + 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_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_box, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [41525] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(563), 1, + anon_sym_fn, + ACTIONS(565), 1, + anon_sym_for, + ACTIONS(577), 1, + anon_sym_extern, + ACTIONS(1089), 1, + anon_sym_COLON_COLON, + ACTIONS(3199), 1, sym_metavariable, - ACTIONS(1591), 31, + ACTIONS(3233), 1, + sym_identifier, + STATE(1217), 1, + sym_for_lifetimes, + STATE(1252), 1, + sym_scoped_type_identifier, + STATE(1291), 1, + sym_generic_type, + STATE(1306), 1, + sym_function_type, + STATE(2230), 1, + sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2250), 1, + sym_scoped_identifier, + STATE(2324), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1459), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(1099), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(559), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + ACTIONS(3221), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89660,76 +90049,124 @@ static 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_unsafe, - anon_sym_extern, - anon_sym_dyn, + [41609] = 19, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(1089), 1, + anon_sym_COLON_COLON, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(3185), 1, sym_identifier, + ACTIONS(3189), 1, + anon_sym_LPAREN, + ACTIONS(3191), 1, + anon_sym_STAR, + ACTIONS(3195), 1, + anon_sym_for, + ACTIONS(3197), 1, + anon_sym_AMP, + ACTIONS(3199), 1, + sym_metavariable, + STATE(1681), 1, + sym_scoped_type_identifier, + STATE(1746), 1, + sym_where_predicate, + STATE(1910), 1, + sym_generic_type, + STATE(2230), 1, + sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2250), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - [41899] = 23, - ACTIONS(2731), 1, + STATE(2106), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3193), 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, + [41690] = 23, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3226), 1, - anon_sym_LBRACE, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(42), 1, - sym_match_block, - STATE(1045), 1, + STATE(735), 1, + sym_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89740,62 +90177,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41988] = 23, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, + [41779] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(729), 1, - sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3263), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89806,42 +90242,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42077] = 3, + [41866] = 23, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3267), 1, + anon_sym_RBRACE, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2705), 16, + ACTIONS(2918), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2707), 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, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89852,14 +90308,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42126] = 3, + [41955] = 4, + ACTIONS(3269), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2697), 16, + ACTIONS(2782), 16, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89873,152 +90331,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2699), 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, - [42175] = 22, - ACTIONS(2731), 1, + ACTIONS(2780), 23, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2733), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3256), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3089), 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, - [42262] = 23, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3232), 1, - anon_sym_EQ, - ACTIONS(3236), 1, - anon_sym_AMP, - ACTIONS(3240), 1, - anon_sym_DOT_DOT, - ACTIONS(3242), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, - anon_sym_PIPE, - ACTIONS(3248), 1, - anon_sym_CARET, - ACTIONS(3258), 1, - anon_sym_LBRACE, - STATE(986), 1, - sym_match_block, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3228), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3238), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3230), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3250), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90029,187 +90355,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42351] = 23, + [42006] = 23, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(980), 1, + STATE(968), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3230), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3254), 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, - [42440] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(1147), 1, - anon_sym_COLON_COLON, - ACTIONS(3260), 1, - sym_identifier, - ACTIONS(3262), 1, - anon_sym_RPAREN, - ACTIONS(3266), 1, - anon_sym_COMMA, - ACTIONS(3272), 1, - sym_metavariable, - STATE(1499), 1, - sym_scoped_identifier, - STATE(2232), 1, - sym_generic_type_with_turbofish, - STATE(2322), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3270), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3268), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1738), 4, - sym_meta_item, - sym__literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(3264), 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, - [42515] = 23, - ACTIONS(261), 1, - anon_sym_RBRACE, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90220,16 +90421,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42604] = 4, - ACTIONS(3276), 1, - sym_identifier, + [42095] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2745), 16, + ACTIONS(2668), 16, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90243,12 +90442,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2743), 23, - anon_sym_SEMI, + ACTIONS(2666), 24, anon_sym_LPAREN, - anon_sym_RBRACE, + 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, @@ -90267,62 +90467,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42655] = 23, - ACTIONS(545), 1, - anon_sym_RPAREN, - ACTIONS(2731), 1, + [42144] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3278), 1, - anon_sym_COMMA, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3271), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90333,174 +90532,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42744] = 23, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, + [42231] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(207), 1, - sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3254), 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, - [42833] = 23, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3280), 1, + ACTIONS(3273), 2, anon_sym_RBRACE, - ACTIONS(3282), 1, anon_sym_COMMA, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3089), 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, - [42922] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2659), 16, - anon_sym_PLUS, + ACTIONS(2920), 3, 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(2657), 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, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90511,156 +90597,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42971] = 23, - ACTIONS(295), 1, + [42318] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(965), 1, + STATE(50), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3254), 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, - [43060] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3204), 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(3202), 26, - 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_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [43109] = 5, - ACTIONS(2651), 1, - anon_sym_BANG, - ACTIONS(3284), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(521), 15, - anon_sym_PLUS, + ACTIONS(3237), 3, 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(519), 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, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90671,62 +90663,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43162] = 23, - ACTIONS(2731), 1, + [42407] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(3286), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(971), 1, sym_match_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90737,62 +90729,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43251] = 23, + [42496] = 23, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(45), 1, + STATE(34), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90803,62 +90795,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43340] = 23, - ACTIONS(801), 1, + [42585] = 23, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(237), 1, - sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, + STATE(1047), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90869,62 +90861,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43429] = 23, - ACTIONS(2731), 1, + [42674] = 23, + ACTIONS(729), 1, + anon_sym_RPAREN, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - ACTIONS(3288), 1, - anon_sym_RBRACE, - STATE(1045), 1, + ACTIONS(3277), 1, + anon_sym_COMMA, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90935,62 +90927,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43518] = 23, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, + [42763] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(966), 1, - sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3279), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91001,61 +90992,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43607] = 22, - ACTIONS(2731), 1, + [42850] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + ACTIONS(3281), 1, + anon_sym_RBRACE, + ACTIONS(3283), 1, + anon_sym_COMMA, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3290), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91066,62 +91058,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43694] = 23, + [42939] = 23, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(990), 1, + STATE(729), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91132,62 +91124,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43783] = 23, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, + [43028] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(232), 1, - sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3285), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91198,124 +91189,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43872] = 19, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(1085), 1, - anon_sym_COLON_COLON, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(3166), 1, - sym_identifier, - ACTIONS(3170), 1, - anon_sym_LPAREN, - ACTIONS(3172), 1, - anon_sym_STAR, - ACTIONS(3176), 1, - anon_sym_for, - ACTIONS(3178), 1, - anon_sym_AMP, - ACTIONS(3180), 1, - sym_metavariable, - STATE(1724), 1, - sym_where_predicate, - STATE(1732), 1, - sym_scoped_type_identifier, - STATE(1744), 1, - sym_generic_type, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2366), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1095), 3, - sym_self, - sym_super, - sym_crate, - STATE(2136), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3174), 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, - [43953] = 23, - ACTIONS(2731), 1, + [43115] = 23, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3292), 1, - anon_sym_RPAREN, - ACTIONS(3294), 1, - anon_sym_COMMA, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, + STATE(1041), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91326,62 +91255,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44042] = 23, - ACTIONS(249), 1, - anon_sym_RBRACE, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - STATE(1045), 1, - sym_arguments, + [43204] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2718), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + anon_sym_DOT, + ACTIONS(2720), 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, - ACTIONS(3089), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91392,62 +91301,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44131] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, + [43253] = 23, + ACTIONS(287), 1, + anon_sym_RBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(38), 1, - sym_block, - STATE(1045), 1, + ACTIONS(3265), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91458,62 +91367,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44220] = 23, - ACTIONS(15), 1, + [43342] = 23, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(37), 1, - sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, + STATE(1049), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91524,62 +91433,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44309] = 23, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, + [43431] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(222), 1, - sym_block, - STATE(1045), 1, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3287), 1, + anon_sym_RBRACE, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91590,61 +91499,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44398] = 22, - ACTIONS(2731), 1, + [43520] = 23, + ACTIONS(283), 1, + anon_sym_RBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + ACTIONS(3265), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3296), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91655,62 +91565,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44485] = 23, - ACTIONS(2731), 1, + [43609] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - ACTIONS(3298), 1, - anon_sym_RBRACE, - STATE(1045), 1, + ACTIONS(3277), 1, + anon_sym_COMMA, + ACTIONS(3289), 1, + anon_sym_RPAREN, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91721,51 +91631,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44574] = 19, + [43698] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1085), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(3166), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3170), 1, - anon_sym_LPAREN, - ACTIONS(3172), 1, - anon_sym_STAR, - ACTIONS(3176), 1, - anon_sym_for, - ACTIONS(3178), 1, - anon_sym_AMP, - ACTIONS(3180), 1, + ACTIONS(3293), 1, + anon_sym_RPAREN, + ACTIONS(3297), 1, + anon_sym_COMMA, + ACTIONS(3303), 1, sym_metavariable, - STATE(1732), 1, - sym_scoped_type_identifier, - STATE(1744), 1, - sym_generic_type, - STATE(1801), 1, - sym_where_predicate, - STATE(2227), 1, - sym_bracketed_type, - STATE(2228), 1, - sym_generic_type_with_turbofish, - STATE(2366), 1, + STATE(1476), 1, sym_scoped_identifier, + STATE(2311), 1, + sym_generic_type_with_turbofish, + STATE(2373), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1095), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - STATE(2136), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3174), 17, + ACTIONS(3299), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1777), 4, + sym_meta_item, + sym__literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91783,127 +91690,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [44655] = 23, - ACTIONS(267), 1, - anon_sym_RBRACE, - ACTIONS(2731), 1, + [43773] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3087), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3089), 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, - [44744] = 22, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3305), 1, + anon_sym_RBRACE, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3300), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91914,128 +91756,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44831] = 23, + [43862] = 23, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, + STATE(1004), 1, + sym_arguments, STATE(1036), 1, sym_block, - STATE(1045), 1, - sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3254), 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, - [44920] = 23, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3302), 1, - anon_sym_RBRACE, - ACTIONS(3304), 1, - anon_sym_COMMA, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92046,61 +91822,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45009] = 22, - ACTIONS(2731), 1, + [43951] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3306), 2, - anon_sym_RBRACE, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3307), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2875), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92111,62 +91887,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45096] = 23, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, + [44038] = 23, + ACTIONS(125), 1, + anon_sym_RBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(208), 1, - sym_block, - STATE(1045), 1, + ACTIONS(3265), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92177,62 +91953,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45185] = 23, - ACTIONS(801), 1, + [44127] = 23, + ACTIONS(907), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(226), 1, + STATE(218), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92243,62 +92019,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45274] = 23, - ACTIONS(553), 1, - anon_sym_RPAREN, - ACTIONS(2731), 1, + [44216] = 19, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(1089), 1, + anon_sym_COLON_COLON, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(3185), 1, + sym_identifier, + ACTIONS(3189), 1, + anon_sym_LPAREN, + ACTIONS(3191), 1, + anon_sym_STAR, + ACTIONS(3195), 1, + anon_sym_for, + ACTIONS(3197), 1, + anon_sym_AMP, + ACTIONS(3199), 1, + sym_metavariable, + STATE(1680), 1, + sym_where_predicate, + STATE(1681), 1, + sym_scoped_type_identifier, + STATE(1910), 1, + sym_generic_type, + STATE(2230), 1, + sym_bracketed_type, + STATE(2231), 1, + sym_generic_type_with_turbofish, + STATE(2250), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1099), 3, + sym_self, + sym_super, + sym_crate, + STATE(2106), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3193), 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, + [44297] = 23, + ACTIONS(907), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3278), 1, - anon_sym_COMMA, - STATE(1045), 1, + STATE(217), 1, + sym_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92309,62 +92147,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45363] = 23, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, + [44386] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(228), 1, - sym_block, - STATE(1045), 1, + ACTIONS(3309), 1, + anon_sym_RBRACE, + ACTIONS(3311), 1, + anon_sym_COMMA, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92375,62 +92213,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45452] = 23, - ACTIONS(801), 1, + [44475] = 23, + ACTIONS(907), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(236), 1, + STATE(227), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92441,62 +92279,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45541] = 23, - ACTIONS(295), 1, + [44564] = 23, + ACTIONS(907), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(970), 1, + STATE(204), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92507,62 +92345,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45630] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, + [44653] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(57), 1, - sym_block, - STATE(1045), 1, + ACTIONS(3313), 1, + anon_sym_RPAREN, + ACTIONS(3315), 1, + anon_sym_COMMA, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92573,61 +92411,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45719] = 22, - ACTIONS(2731), 1, + [44742] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3308), 2, - anon_sym_RPAREN, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3317), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2875), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92638,62 +92476,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45806] = 23, - ACTIONS(279), 1, - anon_sym_RBRACE, - ACTIONS(2731), 1, + [44829] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3319), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92704,61 +92541,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45895] = 22, - ACTIONS(2731), 1, + [44916] = 23, + ACTIONS(129), 1, + anon_sym_RBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + ACTIONS(3265), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3310), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92769,108 +92607,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45982] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3212), 14, - sym_raw_string_literal, - sym_float_literal, + [45005] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, + ACTIONS(2758), 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(3210), 26, - 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_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [46031] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(25), 1, - sym_block, - STATE(1045), 1, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3321), 1, + anon_sym_RBRACE, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92881,42 +92673,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46120] = 3, + [45094] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_AMP_AMP, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, + anon_sym_PIPE, + ACTIONS(3255), 1, + anon_sym_CARET, + STATE(49), 1, + sym_block, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2681), 16, + ACTIONS(3235), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3237), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2683), 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, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92927,62 +92739,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46169] = 23, - ACTIONS(295), 1, + [45183] = 23, + ACTIONS(907), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(733), 1, + STATE(228), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92993,62 +92805,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46258] = 23, - ACTIONS(2731), 1, + [45272] = 23, + ACTIONS(737), 1, + anon_sym_RPAREN, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - ACTIONS(3312), 1, - anon_sym_RBRACE, - STATE(1045), 1, + ACTIONS(3277), 1, + anon_sym_COMMA, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93059,62 +92871,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46347] = 23, - ACTIONS(15), 1, + [45361] = 23, + ACTIONS(907), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(49), 1, + STATE(236), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93125,61 +92937,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46436] = 22, - ACTIONS(2731), 1, + [45450] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3314), 2, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3323), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2875), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93190,62 +93002,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46523] = 23, - ACTIONS(271), 1, + [45537] = 23, + ACTIONS(103), 1, anon_sym_RBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, + ACTIONS(3265), 1, anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93256,62 +93068,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46612] = 23, - ACTIONS(2731), 1, + [45626] = 23, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - ACTIONS(3316), 1, - anon_sym_RBRACE, - STATE(1045), 1, + STATE(978), 1, + sym_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93322,62 +93134,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46701] = 23, - ACTIONS(2731), 1, + [45715] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - ACTIONS(3318), 1, - anon_sym_RBRACE, - STATE(1045), 1, + STATE(25), 1, + sym_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93388,62 +93200,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46790] = 23, - ACTIONS(2731), 1, + [45804] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3278), 1, - anon_sym_COMMA, - ACTIONS(3320), 1, - anon_sym_RPAREN, - STATE(1045), 1, + STATE(59), 1, + sym_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93454,61 +93266,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46879] = 22, - ACTIONS(2731), 1, + [45893] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3322), 2, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3325), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2875), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93519,61 +93331,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46966] = 22, - ACTIONS(2731), 1, + [45980] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - STATE(1045), 1, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3327), 1, + anon_sym_RBRACE, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3324), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93584,62 +93397,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47053] = 23, - ACTIONS(15), 1, + [46069] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2702), 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(2704), 24, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(2731), 1, + 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, + [46118] = 23, + ACTIONS(907), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(34), 1, + STATE(229), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93650,62 +93509,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47142] = 23, - ACTIONS(15), 1, + [46207] = 23, + ACTIONS(907), 1, anon_sym_LBRACE, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(26), 1, + STATE(203), 1, sym_block, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93716,57 +93575,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47231] = 19, - ACTIONS(2731), 1, + [46296] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3123), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(1045), 1, + STATE(39), 1, + sym_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3121), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93777,55 +93641,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47311] = 17, - ACTIONS(2731), 1, + [46385] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3236), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3242), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(1045), 1, + STATE(26), 1, + sym_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3252), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3025), 15, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93836,15 +93707,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47387] = 4, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, + [46474] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2745), 15, + ACTIONS(2690), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93858,12 +93728,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2743), 23, + ACTIONS(2692), 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, @@ -93882,60 +93753,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47437] = 22, - ACTIONS(2731), 1, + [46523] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3328), 1, - anon_sym_SEMI, - STATE(1045), 1, + ACTIONS(3329), 1, + anon_sym_LBRACE, + STATE(43), 1, + sym_match_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93946,13 +93819,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47523] = 4, - ACTIONS(2767), 1, + [46612] = 5, + ACTIONS(2660), 1, + anon_sym_BANG, + ACTIONS(3331), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2769), 15, + ACTIONS(515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93968,7 +93843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2765), 23, + ACTIONS(513), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -93992,103 +93867,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47573] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(1147), 1, - anon_sym_COLON_COLON, - ACTIONS(3330), 1, - sym_identifier, - ACTIONS(3338), 1, - sym_metavariable, - STATE(1541), 1, - sym_scoped_identifier, - STATE(2221), 1, - sym_bracketed_type, - STATE(2232), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1093), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3336), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3334), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1363), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(3332), 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, - [47645] = 8, - ACTIONS(2731), 1, + [46665] = 23, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - STATE(1045), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_AMP_AMP, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, + anon_sym_PIPE, + ACTIONS(3255), 1, + anon_sym_CARET, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(213), 1, + sym_match_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3230), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2789), 11, + ACTIONS(3235), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3241), 2, 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, - ACTIONS(2787), 21, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94099,60 +93933,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47703] = 22, - ACTIONS(2731), 1, + [46754] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3340), 1, - anon_sym_SEMI, - STATE(1045), 1, + STATE(45), 1, + sym_block, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94163,60 +93999,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47789] = 22, - ACTIONS(2731), 1, + [46843] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3342), 1, + ACTIONS(3335), 1, anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94227,117 +94063,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47875] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1147), 1, - anon_sym_COLON_COLON, - ACTIONS(3344), 1, - sym_identifier, - ACTIONS(3352), 1, - sym_metavariable, - STATE(1420), 1, - sym_scoped_identifier, - STATE(2232), 1, - sym_generic_type_with_turbofish, - STATE(2322), 1, - sym_bracketed_type, + [46929] = 13, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3253), 1, + anon_sym_PIPE, + ACTIONS(3255), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3350), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3348), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1342), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(3346), 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, - [47947] = 22, - ACTIONS(2731), 1, + ACTIONS(3235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2840), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(2838), 21, + anon_sym_LBRACE, + 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, + [46997] = 17, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3354), 1, - anon_sym_RBRACK, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3026), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3024), 15, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94348,11 +94177,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48033] = 3, + [47073] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3358), 9, + ACTIONS(3339), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -94362,7 +94191,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3356), 30, + ACTIONS(3337), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94393,60 +94222,60 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48081] = 22, - ACTIONS(2731), 1, + [47121] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(3022), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3360), 1, - anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94457,114 +94286,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48167] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(1147), 1, - anon_sym_COLON_COLON, - ACTIONS(3260), 1, - sym_identifier, - ACTIONS(3272), 1, - sym_metavariable, - ACTIONS(3362), 1, - anon_sym_RPAREN, - STATE(1499), 1, - sym_scoped_identifier, - STATE(2232), 1, - sym_generic_type_with_turbofish, - STATE(2322), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3270), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3364), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(2066), 4, - sym_meta_item, - sym__literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(3264), 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, - [48239] = 19, - ACTIONS(2731), 1, + [47207] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3047), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(1045), 1, + ACTIONS(3341), 1, + anon_sym_RBRACK, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3045), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94575,60 +94350,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48319] = 22, - ACTIONS(2731), 1, + [47293] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3366), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(3343), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94639,32 +94414,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48405] = 4, - ACTIONS(3368), 1, - anon_sym_COLON_COLON, + [47379] = 9, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(521), 15, + ACTIONS(3235), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3237), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2840), 9, 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(519), 23, - anon_sym_LPAREN, + ACTIONS(2838), 21, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DOT_DOT_DOT, @@ -94685,11 +94465,125 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48455] = 3, + [47439] = 15, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3253), 1, + anon_sym_PIPE, + ACTIONS(3255), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2840), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3241), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2838), 17, + anon_sym_LBRACE, + 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_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, + [47511] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(1151), 1, + anon_sym_COLON_COLON, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3353), 1, + sym_metavariable, + STATE(1410), 1, + sym_scoped_identifier, + STATE(2311), 1, + sym_generic_type_with_turbofish, + STATE(2373), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3351), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3349), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1371), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(3347), 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, + [47583] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3158), 9, + ACTIONS(3357), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -94699,7 +94593,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3156), 30, + ACTIONS(3355), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94730,46 +94624,21 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48503] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1147), 1, - anon_sym_COLON_COLON, - ACTIONS(3370), 1, - sym_identifier, - ACTIONS(3374), 1, - sym_metavariable, - STATE(1411), 1, - sym_scoped_identifier, - STATE(2232), 1, - sym_generic_type_with_turbofish, - STATE(2322), 1, - sym_bracketed_type, + [47631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3372), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3334), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1363), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(3332), 17, + ACTIONS(3148), 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(3146), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94787,55 +94656,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [48575] = 17, - ACTIONS(2731), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [47679] = 10, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3236), 1, - anon_sym_AMP, - ACTIONS(3242), 1, - anon_sym_AMP_AMP, - ACTIONS(3244), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, - anon_sym_PIPE, - ACTIONS(3248), 1, - anon_sym_CARET, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(351), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3252), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(349), 15, + ACTIONS(2840), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2838), 21, anon_sym_LBRACE, 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, @@ -94846,12 +94721,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48651] = 3, + [47741] = 4, + ACTIONS(3361), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3378), 9, - anon_sym_LPAREN, + ACTIONS(3363), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -94860,7 +94736,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3376), 30, + ACTIONS(3359), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94891,32 +94767,162 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48699] = 4, - ACTIONS(2825), 1, - anon_sym_COLON_COLON, + [47791] = 22, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3365), 1, + anon_sym_SEMI, + STATE(1004), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2918), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2948), 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, + [47877] = 16, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_AMP_AMP, + ACTIONS(3253), 1, + anon_sym_PIPE, + ACTIONS(3255), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2840), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3241), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2838), 16, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + 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, + [47951] = 12, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3255), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2769), 15, + ACTIONS(3235), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2840), 5, 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(2765), 23, - anon_sym_LPAREN, + ACTIONS(2838), 21, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DOT_DOT_DOT, @@ -94937,60 +94943,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48749] = 22, - ACTIONS(2731), 1, + [48017] = 19, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2996), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3380), 1, - anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2994), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95001,60 +95004,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48835] = 22, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3382), 1, - anon_sym_COMMA, - STATE(1045), 1, - sym_arguments, + [48097] = 4, + ACTIONS(2854), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2814), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + anon_sym_DOT, + ACTIONS(2810), 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, - ACTIONS(3089), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95065,60 +95050,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48921] = 22, - ACTIONS(2731), 1, + [48147] = 19, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(3120), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3384), 1, - anon_sym_EQ_GT, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3118), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95129,60 +95111,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49007] = 22, - ACTIONS(2731), 1, + [48227] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(1151), 1, + anon_sym_COLON_COLON, + ACTIONS(3367), 1, + sym_identifier, + ACTIONS(3371), 1, + sym_metavariable, + STATE(1570), 1, + sym_scoped_identifier, + STATE(2224), 1, + sym_bracketed_type, + STATE(2311), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1097), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3369), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3349), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1371), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(3347), 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, + [48299] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3386), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(3373), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95193,60 +95232,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49093] = 22, - ACTIONS(2731), 1, + [48385] = 17, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(3249), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(3255), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3388), 1, - anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(323), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(321), 15, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95257,60 +95291,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49179] = 22, - ACTIONS(2731), 1, + [48461] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3390), 1, + ACTIONS(3375), 1, anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95321,60 +95355,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49265] = 22, - ACTIONS(2731), 1, + [48547] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3169), 9, anon_sym_LPAREN, - ACTIONS(2733), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3392), 1, - anon_sym_SEMI, - STATE(1045), 1, + sym_metavariable, + ACTIONS(3167), 30, + 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_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [48595] = 8, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2840), 11, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2838), 21, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, + 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(3089), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95385,60 +95450,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49351] = 22, - ACTIONS(2731), 1, + [48653] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3274), 1, - anon_sym_SEMI, - STATE(1045), 1, + ACTIONS(3377), 1, + anon_sym_RBRACK, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95449,24 +95514,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49437] = 15, + [48739] = 15, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3260), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3303), 1, sym_metavariable, - ACTIONS(3394), 1, + ACTIONS(3379), 1, anon_sym_RPAREN, - STATE(1499), 1, + STATE(1476), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -95474,21 +95539,78 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(3270), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - ACTIONS(3364), 4, + ACTIONS(3381), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(2066), 4, + STATE(2161), 4, sym_meta_item, sym__literal, sym_string_literal, sym_boolean_literal, - ACTIONS(3264), 17, + ACTIONS(3295), 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, + [48811] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(1151), 1, + anon_sym_COLON_COLON, + ACTIONS(3383), 1, + sym_identifier, + ACTIONS(3391), 1, + sym_metavariable, + STATE(1574), 1, + sym_scoped_identifier, + STATE(2224), 1, + sym_bracketed_type, + STATE(2311), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1097), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3389), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3387), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1359), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(3385), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95506,60 +95628,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [49509] = 22, - ACTIONS(2731), 1, + [48883] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3278), 1, - anon_sym_COMMA, - STATE(1045), 1, + ACTIONS(3393), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95570,60 +95692,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49595] = 22, - ACTIONS(2731), 1, + [48969] = 11, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, + STATE(1004), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2840), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, anon_sym_PIPE, - ACTIONS(2885), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, + ACTIONS(2838), 21, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + 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, + [49033] = 22, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3087), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3396), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3395), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95634,60 +95809,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49681] = 22, - ACTIONS(2731), 1, + [49119] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_LBRACE, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(1045), 1, + ACTIONS(3397), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95698,104 +95873,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49767] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(783), 1, - anon_sym_DASH, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(1147), 1, - anon_sym_COLON_COLON, - ACTIONS(3398), 1, - sym_identifier, - ACTIONS(3402), 1, - sym_metavariable, - STATE(1553), 1, - sym_scoped_identifier, - STATE(2221), 1, - sym_bracketed_type, - STATE(2232), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1093), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3400), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3348), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1342), 4, - sym__literal_pattern, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(3346), 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, - [49839] = 9, - ACTIONS(2731), 1, + [49205] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - STATE(1045), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3399), 1, + anon_sym_COMMA, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3230), 3, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2789), 9, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2948), 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, + [49291] = 22, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2930), 1, anon_sym_AMP, + ACTIONS(2934), 1, anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, + ACTIONS(2942), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2787), 21, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3401), 1, + anon_sym_SEMI, + STATE(1004), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2918), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95806,60 +96001,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49899] = 22, - ACTIONS(2731), 1, + [49377] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3404), 1, + ACTIONS(3403), 1, anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95870,60 +96065,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49985] = 22, - ACTIONS(2731), 1, + [49463] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3406), 1, - anon_sym_SEMI, - STATE(1045), 1, + ACTIONS(3405), 1, + anon_sym_RBRACK, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95934,49 +96129,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50071] = 11, - ACTIONS(2731), 1, + [49549] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3236), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - STATE(1045), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3407), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3252), 2, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2789), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2787), 21, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95987,60 +96193,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50135] = 22, - ACTIONS(2731), 1, + [49635] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3408), 1, - anon_sym_SEMI, - STATE(1045), 1, + ACTIONS(3409), 1, + anon_sym_EQ_GT, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96051,60 +96257,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50221] = 22, - ACTIONS(2731), 1, + [49721] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3410), 1, + ACTIONS(3411), 1, anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96115,105 +96321,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50307] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3414), 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(3412), 30, - 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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [50355] = 22, - ACTIONS(2731), 1, + [49807] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3416), 1, - anon_sym_SEMI, - STATE(1045), 1, + ACTIONS(3413), 1, + anon_sym_RBRACK, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96224,60 +96385,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50441] = 22, - ACTIONS(2731), 1, + [49893] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3418), 1, + ACTIONS(3415), 1, anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96288,13 +96449,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50527] = 4, - ACTIONS(3424), 1, + [49979] = 4, + ACTIONS(3417), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3422), 8, + ACTIONS(3363), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -96303,7 +96464,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_AMP, sym_metavariable, - ACTIONS(3420), 30, + ACTIONS(3359), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96334,178 +96495,60 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [50577] = 22, - ACTIONS(2731), 1, + [50029] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3087), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3426), 1, - anon_sym_SEMI, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3089), 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, - [50663] = 12, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3248), 1, - anon_sym_CARET, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3228), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3230), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2789), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - anon_sym_PIPE, - ACTIONS(2787), 21, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2936), 1, anon_sym_AMP_AMP, + ACTIONS(2938), 1, 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, - [50729] = 22, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3428), 1, + ACTIONS(3419), 1, anon_sym_COMMA, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96516,57 +96559,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50815] = 19, - ACTIONS(2731), 1, + [50115] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2983), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(1045), 1, + ACTIONS(3421), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2981), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96577,60 +96623,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50895] = 22, - ACTIONS(2731), 1, + [50201] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3430), 1, + ACTIONS(3265), 1, anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96641,60 +96687,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50981] = 22, - ACTIONS(2731), 1, + [50287] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3432), 1, + ACTIONS(3277), 1, anon_sym_COMMA, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96705,105 +96751,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51067] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 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(3145), 30, - 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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [51115] = 22, - ACTIONS(2731), 1, + [50373] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3434), 1, - anon_sym_EQ_GT, - STATE(1045), 1, + ACTIONS(3423), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96814,54 +96815,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51201] = 16, - ACTIONS(2731), 1, + [50459] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3236), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3242), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3246), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(1045), 1, + ACTIONS(3425), 1, + anon_sym_EQ_GT, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2789), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3252), 2, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2787), 16, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE_PIPE, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96872,57 +96879,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51275] = 19, - ACTIONS(2731), 1, + [50545] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3031), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(1045), 1, + ACTIONS(3427), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3029), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96933,53 +96943,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51355] = 15, - ACTIONS(2731), 1, + [50631] = 19, + ACTIONS(299), 1, + anon_sym_EQ, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3236), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3246), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_AMP_AMP, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(3255), 1, anon_sym_CARET, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2789), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3228), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3252), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2787), 17, + ACTIONS(293), 13, anon_sym_LBRACE, 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_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96990,60 +97004,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51427] = 22, - ACTIONS(2731), 1, + [50711] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3436), 1, + ACTIONS(3429), 1, anon_sym_SEMI, - STATE(1045), 1, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97054,60 +97068,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51513] = 22, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3438), 1, - anon_sym_SEMI, - STATE(1045), 1, - sym_arguments, + [50797] = 4, + ACTIONS(3431), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2782), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + anon_sym_DOT, + ACTIONS(2780), 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, - ACTIONS(3089), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97118,22 +97114,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51599] = 4, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3422), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [50847] = 15, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3291), 1, + sym_identifier, + ACTIONS(3303), 1, sym_metavariable, - ACTIONS(3420), 30, + ACTIONS(3433), 1, + anon_sym_RPAREN, + STATE(1476), 1, + sym_scoped_identifier, + STATE(2311), 1, + sym_generic_type_with_turbofish, + STATE(2373), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3301), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3381), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(2161), 4, + sym_meta_item, + sym__literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97151,137 +97171,60 @@ static 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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [51649] = 22, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2881), 1, - anon_sym_AMP_AMP, - ACTIONS(2883), 1, - anon_sym_PIPE, - ACTIONS(2885), 1, - anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3442), 1, - anon_sym_SEMI, - STATE(1045), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2877), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2887), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3089), 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, - [51735] = 22, - ACTIONS(2731), 1, + [50919] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3083), 1, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3103), 1, - anon_sym_LBRACE, - ACTIONS(3232), 1, + ACTIONS(2926), 1, anon_sym_EQ, - ACTIONS(3236), 1, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(1045), 1, + ACTIONS(3435), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97292,41 +97235,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51821] = 13, - ACTIONS(2731), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3236), 1, - anon_sym_AMP, - ACTIONS(3246), 1, - anon_sym_PIPE, - ACTIONS(3248), 1, - anon_sym_CARET, - STATE(1045), 1, - sym_arguments, + [51005] = 4, + ACTIONS(3437), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(515), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3252), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3230), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2789), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_DOT_DOT, - ACTIONS(2787), 21, + 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(513), 23, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DOT_DOT_DOT, @@ -97347,60 +97281,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51889] = 22, - ACTIONS(2731), 1, + [51055] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3441), 9, anon_sym_LPAREN, - ACTIONS(2733), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3439), 30, + 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_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [51103] = 22, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_QMARK, - ACTIONS(3085), 1, - anon_sym_as, - ACTIONS(3087), 1, - anon_sym_EQ, - ACTIONS(3444), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(3443), 1, + anon_sym_COMMA, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97411,57 +97390,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51975] = 19, - ACTIONS(299), 1, - anon_sym_EQ, - ACTIONS(2731), 1, + [51189] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(3236), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(3240), 1, + ACTIONS(2934), 1, anon_sym_DOT_DOT, - ACTIONS(3242), 1, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(3244), 1, + ACTIONS(2938), 1, anon_sym_PIPE_PIPE, - ACTIONS(3246), 1, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(3248), 1, + ACTIONS(2942), 1, anon_sym_CARET, - STATE(1045), 1, + ACTIONS(3445), 1, + anon_sym_SEMI, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(2928), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3238), 2, + ACTIONS(2932), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3252), 2, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3250), 4, + ACTIONS(2944), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(293), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97472,38 +97454,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52055] = 10, - ACTIONS(2731), 1, + [51275] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - STATE(1045), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, + anon_sym_AMP, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, + anon_sym_AMP_AMP, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, + anon_sym_PIPE, + ACTIONS(2942), 1, + anon_sym_CARET, + ACTIONS(3447), 1, + anon_sym_RBRACK, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3228), 2, + ACTIONS(2918), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3252), 2, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 3, + ACTIONS(2920), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2789), 7, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2948), 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, + [51361] = 4, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2814), 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, - ACTIONS(2787), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2810), 23, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_DOT_DOT_DOT, @@ -97524,60 +97564,242 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52117] = 22, - ACTIONS(2731), 1, + [51411] = 22, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2733), 1, + ACTIONS(2758), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2762), 1, anon_sym_DOT, - ACTIONS(2879), 1, + ACTIONS(2922), 1, + anon_sym_QMARK, + ACTIONS(2924), 1, + anon_sym_as, + ACTIONS(2926), 1, + anon_sym_EQ, + ACTIONS(2930), 1, anon_sym_AMP, - ACTIONS(2881), 1, + ACTIONS(2934), 1, + anon_sym_DOT_DOT, + ACTIONS(2936), 1, anon_sym_AMP_AMP, - ACTIONS(2883), 1, + ACTIONS(2938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2940), 1, anon_sym_PIPE, - ACTIONS(2885), 1, + ACTIONS(2942), 1, anon_sym_CARET, - ACTIONS(2957), 1, - anon_sym_DOT_DOT, - ACTIONS(2959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3449), 1, + anon_sym_SEMI, + STATE(1004), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2918), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2932), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2946), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2920), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2944), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2948), 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, + [51497] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(595), 1, + anon_sym_DASH, + ACTIONS(1151), 1, + anon_sym_COLON_COLON, + ACTIONS(3451), 1, + sym_identifier, + ACTIONS(3455), 1, + sym_metavariable, + STATE(1428), 1, + sym_scoped_identifier, + STATE(2311), 1, + sym_generic_type_with_turbofish, + STATE(2373), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3453), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3387), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1359), 4, + sym__literal_pattern, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(3385), 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, + [51569] = 22, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(2916), 1, + anon_sym_LBRACE, + ACTIONS(2922), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(2924), 1, anon_sym_as, - ACTIONS(3087), 1, + ACTIONS(3239), 1, anon_sym_EQ, - ACTIONS(3446), 1, - anon_sym_SEMI, - STATE(1045), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_AMP_AMP, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, + anon_sym_PIPE, + ACTIONS(3255), 1, + anon_sym_CARET, + STATE(1004), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2873), 2, + ACTIONS(3235), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2877), 2, + ACTIONS(3241), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2889), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, + ACTIONS(3237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3261), 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, + [51655] = 19, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(3034), 1, + anon_sym_EQ, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_AMP_AMP, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, + anon_sym_PIPE, + ACTIONS(3255), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3241), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2875), 3, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2887), 4, + ACTIONS(3257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 10, + ACTIONS(3032), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97588,22 +97810,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52203] = 14, + [51735] = 19, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_LBRACK, + ACTIONS(2762), 1, + anon_sym_DOT, + ACTIONS(3108), 1, + anon_sym_EQ, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_AMP_AMP, + ACTIONS(3251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3253), 1, + anon_sym_PIPE, + ACTIONS(3255), 1, + anon_sym_CARET, + STATE(1004), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3241), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3106), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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, + [51815] = 14, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3260), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1499), 1, + STATE(1476), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -97611,21 +97894,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(93), 2, anon_sym_true, anon_sym_false, - ACTIONS(3270), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - ACTIONS(3364), 4, + ACTIONS(3381), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(2066), 4, + STATE(2161), 4, sym_meta_item, sym__literal, sym_string_literal, sym_boolean_literal, - ACTIONS(3264), 17, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97643,47 +97926,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52272] = 17, + [51884] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(3180), 1, + ACTIONS(3199), 1, sym_metavariable, - ACTIONS(3448), 1, + ACTIONS(3457), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(3459), 1, anon_sym_fn, - STATE(1646), 1, + STATE(1709), 1, sym_scoped_type_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2256), 1, + STATE(2250), 1, + sym_scoped_identifier, + STATE(2259), 1, sym_function_modifiers, - STATE(2298), 1, + STATE(2336), 1, sym_generic_type, - STATE(2366), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - ACTIONS(3218), 17, + ACTIONS(3221), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97701,47 +97984,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52347] = 17, + [51959] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(765), 1, + ACTIONS(577), 1, anon_sym_extern, - ACTIONS(1085), 1, + ACTIONS(1089), 1, anon_sym_COLON_COLON, - ACTIONS(3180), 1, + ACTIONS(3199), 1, sym_metavariable, - ACTIONS(3452), 1, + ACTIONS(3461), 1, sym_identifier, - ACTIONS(3454), 1, + ACTIONS(3463), 1, anon_sym_fn, - STATE(1704), 1, + STATE(1662), 1, sym_scoped_type_identifier, - STATE(2227), 1, + STATE(2230), 1, sym_bracketed_type, - STATE(2228), 1, + STATE(2231), 1, sym_generic_type_with_turbofish, - STATE(2298), 1, - sym_generic_type, - STATE(2366), 1, - sym_scoped_identifier, - STATE(2410), 1, + STATE(2236), 1, sym_function_modifiers, + STATE(2250), 1, + sym_scoped_identifier, + STATE(2336), 1, + sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1447), 2, + STATE(1459), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(1095), 3, + ACTIONS(1099), 3, sym_self, sym_super, sym_crate, - ACTIONS(747), 4, + ACTIONS(559), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - ACTIONS(3218), 17, + ACTIONS(3221), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97759,43 +98042,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52422] = 15, + [52034] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(3460), 1, + ACTIONS(3469), 1, anon_sym_RBRACE, - ACTIONS(3462), 1, + ACTIONS(3471), 1, anon_sym_STAR, - ACTIONS(3466), 1, + ACTIONS(3475), 1, anon_sym_COMMA, - ACTIONS(3468), 1, + ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3481), 1, sym_metavariable, - STATE(1597), 1, + STATE(1596), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 3, + ACTIONS(3479), 3, sym_self, sym_super, sym_crate, - STATE(1857), 5, + STATE(1843), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3464), 17, + ACTIONS(3473), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97813,41 +98096,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52491] = 14, + [52103] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, + ACTIONS(3471), 1, anon_sym_STAR, - ACTIONS(3468), 1, + ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3481), 1, sym_metavariable, - ACTIONS(3474), 1, + ACTIONS(3483), 1, anon_sym_RBRACE, - STATE(1597), 1, + STATE(1596), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 3, + ACTIONS(3479), 3, sym_self, sym_super, sym_crate, - STATE(2100), 5, + STATE(2081), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3464), 17, + ACTIONS(3473), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97865,41 +98148,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52557] = 14, + [52169] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, + ACTIONS(3471), 1, anon_sym_STAR, - ACTIONS(3468), 1, + ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3481), 1, sym_metavariable, - ACTIONS(3476), 1, + ACTIONS(3485), 1, anon_sym_RBRACE, - STATE(1597), 1, + STATE(1596), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 3, + ACTIONS(3479), 3, sym_self, sym_super, sym_crate, - STATE(2100), 5, + STATE(2081), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3464), 17, + ACTIONS(3473), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97917,39 +98200,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52623] = 13, + [52235] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, + ACTIONS(3471), 1, anon_sym_STAR, - ACTIONS(3468), 1, + ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3481), 1, sym_metavariable, - STATE(1597), 1, + STATE(1596), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 3, + ACTIONS(3479), 3, sym_self, sym_super, sym_crate, - STATE(2379), 5, + STATE(2177), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3464), 17, + ACTIONS(3473), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97967,39 +98250,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52686] = 13, + [52298] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, + ACTIONS(3471), 1, anon_sym_STAR, - ACTIONS(3468), 1, + ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3481), 1, sym_metavariable, - STATE(1597), 1, + STATE(1596), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 3, + ACTIONS(3479), 3, sym_self, sym_super, sym_crate, - STATE(2100), 5, + STATE(2312), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3464), 17, + ACTIONS(3473), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98017,39 +98300,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52749] = 13, + [52361] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, + ACTIONS(3471), 1, anon_sym_STAR, - ACTIONS(3468), 1, + ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3481), 1, sym_metavariable, - STATE(1597), 1, + STATE(1596), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 3, + ACTIONS(3479), 3, sym_self, sym_super, sym_crate, - STATE(2235), 5, + STATE(2081), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3464), 17, + ACTIONS(3473), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98067,39 +98350,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52812] = 13, + [52424] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, + ACTIONS(3471), 1, anon_sym_STAR, - ACTIONS(3468), 1, + ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3481), 1, sym_metavariable, - STATE(1597), 1, + STATE(1596), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 3, + ACTIONS(3479), 3, sym_self, sym_super, sym_crate, - STATE(2348), 5, + STATE(2207), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3464), 17, + ACTIONS(3473), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98117,39 +98400,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52875] = 13, + [52487] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3456), 1, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(3462), 1, + ACTIONS(3471), 1, anon_sym_STAR, - ACTIONS(3468), 1, + ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3481), 1, sym_metavariable, - STATE(1597), 1, + STATE(1596), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3470), 3, + ACTIONS(3479), 3, sym_self, sym_super, sym_crate, - STATE(2233), 5, + STATE(2302), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3464), 17, + ACTIONS(3473), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98167,15 +98450,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52938] = 3, + [52550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3480), 3, + ACTIONS(3489), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3478), 27, + ACTIONS(3487), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98203,15 +98486,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [52977] = 3, + [52589] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3484), 3, + ACTIONS(3493), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3482), 27, + ACTIONS(3491), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98239,15 +98522,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [53016] = 3, + [52628] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3488), 3, + ACTIONS(3497), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3486), 27, + ACTIONS(3495), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98275,31 +98558,31 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [53055] = 11, + [52667] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3260), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1499), 1, + STATE(1476), 1, sym_scoped_identifier, - STATE(2225), 1, + STATE(2195), 1, sym_meta_item, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3270), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - ACTIONS(3264), 17, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98317,31 +98600,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [53108] = 11, + [52720] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3260), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1499), 1, + STATE(1476), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2297), 1, + sym_meta_item, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, - STATE(2378), 1, - sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3270), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - ACTIONS(3264), 17, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98359,31 +98642,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [53161] = 11, + [52773] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3260), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1499), 1, + STATE(1476), 1, sym_scoped_identifier, - STATE(2218), 1, + STATE(2296), 1, sym_meta_item, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3270), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - ACTIONS(3264), 17, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98401,31 +98684,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [53214] = 11, + [52826] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3260), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1499), 1, + STATE(1476), 1, sym_scoped_identifier, - STATE(2232), 1, - sym_generic_type_with_turbofish, - STATE(2304), 1, + STATE(2178), 1, sym_meta_item, - STATE(2322), 1, + STATE(2311), 1, + sym_generic_type_with_turbofish, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3270), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - ACTIONS(3264), 17, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98443,31 +98726,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [53267] = 11, + [52879] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3260), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1499), 1, + STATE(1476), 1, sym_scoped_identifier, - STATE(2192), 1, + STATE(2210), 1, sym_meta_item, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3270), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - ACTIONS(3264), 17, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98485,31 +98768,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [53320] = 11, + [52932] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3260), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1499), 1, + STATE(1476), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, - STATE(2411), 1, + STATE(2412), 1, sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3270), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - ACTIONS(3264), 17, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98527,31 +98810,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [53373] = 11, + [52985] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3260), 1, + ACTIONS(3291), 1, sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1499), 1, + STATE(1476), 1, sym_scoped_identifier, - STATE(2175), 1, + STATE(2183), 1, sym_meta_item, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3270), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - ACTIONS(3264), 17, + ACTIONS(3295), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98569,29 +98852,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [53426] = 10, + [53038] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3490), 1, + ACTIONS(3499), 1, sym_identifier, - ACTIONS(3496), 1, + ACTIONS(3505), 1, sym_metavariable, - STATE(2004), 1, + STATE(2018), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3494), 3, + ACTIONS(3503), 3, sym_self, sym_super, sym_crate, - ACTIONS(3492), 17, + ACTIONS(3501), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98609,29 +98892,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [53476] = 10, + [53088] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1147), 1, + ACTIONS(1151), 1, anon_sym_COLON_COLON, - ACTIONS(3498), 1, + ACTIONS(3507), 1, sym_identifier, - ACTIONS(3504), 1, + ACTIONS(3513), 1, sym_metavariable, - STATE(2164), 1, + STATE(1998), 1, sym_scoped_identifier, - STATE(2232), 1, + STATE(2311), 1, sym_generic_type_with_turbofish, - STATE(2322), 1, + STATE(2373), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3502), 3, + ACTIONS(3511), 3, sym_self, sym_super, sym_crate, - ACTIONS(3500), 17, + ACTIONS(3509), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98649,25 +98932,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [53526] = 9, - ACTIONS(2649), 1, + [53138] = 9, + ACTIONS(2658), 1, anon_sym_COLON, - ACTIONS(3506), 1, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2654), 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, + [53178] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2686), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2690), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2692), 14, + 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, + [53207] = 8, + ACTIONS(2672), 1, + anon_sym_COLON, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, + anon_sym_COLON_COLON, + ACTIONS(3521), 1, + anon_sym_LT2, + STATE(1259), 1, + sym_type_arguments, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 12, + ACTIONS(2670), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -98680,17 +99017,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53566] = 4, + [53244] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2677), 2, + ACTIONS(2698), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2681), 2, + ACTIONS(2702), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2683), 14, + ACTIONS(2704), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98705,16 +99042,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [53595] = 4, - ACTIONS(2675), 1, + [53273] = 4, + ACTIONS(2688), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2657), 2, + ACTIONS(2692), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2673), 15, + ACTIONS(2686), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98730,16 +99067,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [53624] = 4, - ACTIONS(2695), 1, + [53302] = 4, + ACTIONS(2712), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2699), 2, + ACTIONS(2666), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2693), 15, + ACTIONS(2710), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98755,17 +99092,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [53653] = 4, + [53331] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2693), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2697), 2, + ACTIONS(2668), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2699), 14, + ACTIONS(2710), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2666), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98780,16 +99117,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [53682] = 4, - ACTIONS(2703), 1, + [53360] = 4, + ACTIONS(2700), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2707), 2, + ACTIONS(2704), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2701), 15, + ACTIONS(2698), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98805,48 +99142,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [53711] = 4, + [53389] = 4, + ACTIONS(2716), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2701), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2705), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2707), 14, + ACTIONS(2720), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2714), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + 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_LT2, anon_sym_PIPE, - [53740] = 8, - ACTIONS(2663), 1, + [53418] = 8, + ACTIONS(2676), 1, anon_sym_COLON, - ACTIONS(3506), 1, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3510), 1, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2661), 12, + ACTIONS(2674), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -98859,17 +99196,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53777] = 4, + [53455] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2659), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2673), 2, + ACTIONS(2714), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2657), 14, + ACTIONS(2718), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2720), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98884,53 +99221,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [53806] = 4, - ACTIONS(2679), 1, - anon_sym_COLON, + [53484] = 17, + ACTIONS(3525), 1, + anon_sym_const, + ACTIONS(3527), 1, + anon_sym_enum, + ACTIONS(3529), 1, + anon_sym_fn, + ACTIONS(3531), 1, + anon_sym_mod, + ACTIONS(3533), 1, + anon_sym_static, + ACTIONS(3535), 1, + anon_sym_struct, + ACTIONS(3537), 1, + anon_sym_trait, + ACTIONS(3539), 1, + anon_sym_type, + ACTIONS(3541), 1, + anon_sym_union, + ACTIONS(3543), 1, + anon_sym_unsafe, + ACTIONS(3545), 1, + anon_sym_use, + ACTIONS(3547), 1, + anon_sym_extern, + STATE(1396), 1, + sym_extern_modifier, + STATE(1459), 1, + aux_sym_function_modifiers_repeat1, + STATE(2285), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2683), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2677), 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, - [53835] = 8, - ACTIONS(2667), 1, - anon_sym_COLON, - ACTIONS(3506), 1, + ACTIONS(3523), 2, + anon_sym_async, + anon_sym_default, + [53538] = 6, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - STATE(1263), 1, + STATE(1272), 1, sym_type_arguments, STATE(1287), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2665), 12, + ACTIONS(2682), 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, @@ -98938,56 +99284,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53872] = 17, - ACTIONS(3516), 1, + [53570] = 17, + ACTIONS(3549), 1, anon_sym_const, - ACTIONS(3518), 1, + ACTIONS(3551), 1, anon_sym_enum, - ACTIONS(3520), 1, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3522), 1, + ACTIONS(3555), 1, anon_sym_mod, - ACTIONS(3524), 1, + ACTIONS(3557), 1, anon_sym_static, - ACTIONS(3526), 1, + ACTIONS(3559), 1, anon_sym_struct, - ACTIONS(3528), 1, + ACTIONS(3561), 1, anon_sym_trait, - ACTIONS(3530), 1, + ACTIONS(3563), 1, anon_sym_type, - ACTIONS(3532), 1, + ACTIONS(3565), 1, anon_sym_union, - ACTIONS(3534), 1, + ACTIONS(3567), 1, anon_sym_unsafe, - ACTIONS(3536), 1, + ACTIONS(3569), 1, anon_sym_use, - ACTIONS(3538), 1, + ACTIONS(3571), 1, anon_sym_extern, - STATE(1412), 1, + STATE(1407), 1, sym_extern_modifier, - STATE(1447), 1, + STATE(1459), 1, aux_sym_function_modifiers_repeat1, - STATE(2402), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3514), 2, + ACTIONS(3523), 2, anon_sym_async, anon_sym_default, - [53926] = 6, - ACTIONS(3506), 1, + [53624] = 6, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - STATE(1266), 1, + STATE(1272), 1, sym_type_arguments, - STATE(1279), 1, + STATE(1287), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2685), 13, + ACTIONS(2706), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99001,82 +99347,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53958] = 6, - ACTIONS(3506), 1, + [53656] = 6, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - STATE(1266), 1, + STATE(1272), 1, sym_type_arguments, - STATE(1279), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2709), 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, - [53990] = 17, - ACTIONS(3540), 1, - anon_sym_const, - ACTIONS(3542), 1, - anon_sym_enum, - ACTIONS(3544), 1, - anon_sym_fn, - ACTIONS(3546), 1, - anon_sym_mod, - ACTIONS(3548), 1, - anon_sym_static, - ACTIONS(3550), 1, - anon_sym_struct, - ACTIONS(3552), 1, - anon_sym_trait, - ACTIONS(3554), 1, - anon_sym_type, - ACTIONS(3556), 1, - anon_sym_union, - ACTIONS(3558), 1, - anon_sym_unsafe, - ACTIONS(3560), 1, - anon_sym_use, - ACTIONS(3562), 1, - anon_sym_extern, - STATE(1425), 1, - sym_extern_modifier, - STATE(1447), 1, - aux_sym_function_modifiers_repeat1, - STATE(2178), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3514), 2, - anon_sym_async, - anon_sym_default, - [54044] = 6, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3512), 1, - anon_sym_LT2, - STATE(1266), 1, - sym_type_arguments, - STATE(1279), 1, + STATE(1287), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 13, + ACTIONS(2678), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99090,11 +99373,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54076] = 2, + [53688] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2346), 16, + ACTIONS(2387), 16, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -99111,11 +99394,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54099] = 2, + [53711] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2318), 16, + ACTIONS(2407), 16, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -99132,13 +99415,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54122] = 3, - ACTIONS(3564), 1, + [53734] = 3, + ACTIONS(3573), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3420), 15, + ACTIONS(3359), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99154,11 +99437,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [54147] = 2, + [53759] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2673), 16, + ACTIONS(2710), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99175,28 +99458,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [54170] = 10, - ACTIONS(3512), 1, + [53782] = 10, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3568), 1, + ACTIONS(3577), 1, anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3579), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3581), 1, anon_sym_COLON, - ACTIONS(3574), 1, + ACTIONS(3583), 1, anon_sym_COLON_COLON, - ACTIONS(3578), 1, + ACTIONS(3587), 1, anon_sym_AT, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3566), 7, + ACTIONS(3575), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -99204,34 +99487,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_in, - [54209] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2681), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2683), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [54233] = 3, - ACTIONS(2847), 1, + [53821] = 3, + ACTIONS(2848), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2845), 14, + ACTIONS(2846), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99246,13 +99508,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [54257] = 3, - ACTIONS(2917), 1, - anon_sym_COLON_COLON, + [53845] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3422), 14, + ACTIONS(3355), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99267,11 +99527,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [54281] = 2, + sym_identifier, + [53867] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3412), 15, + ACTIONS(3439), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99287,14 +99548,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [54303] = 3, + [53889] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2697), 2, + ACTIONS(2718), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2699), 13, + ACTIONS(2720), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99308,11 +99569,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [54327] = 2, + [53913] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3356), 15, + ACTIONS(3337), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99328,34 +99589,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [54349] = 3, - ACTIONS(2833), 1, - anon_sym_COLON, + [53935] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2831), 14, + ACTIONS(2690), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2692), 13, 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_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [54373] = 3, - ACTIONS(2781), 1, + [53959] = 3, + ACTIONS(2794), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2779), 14, + ACTIONS(2792), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99370,34 +99631,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [54397] = 3, + [53983] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2705), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2707), 13, + ACTIONS(2954), 15, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, + sym_mutable_specifier, anon_sym_PIPE, - [54421] = 3, - ACTIONS(2837), 1, + sym_self, + [54005] = 3, + ACTIONS(2766), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2835), 14, + ACTIONS(2764), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99412,13 +99672,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [54445] = 3, - ACTIONS(3580), 1, + [54029] = 3, + ACTIONS(3589), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3422), 14, + ACTIONS(3363), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99433,11 +99693,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [54469] = 2, + [54053] = 3, + ACTIONS(2906), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3376), 15, + ACTIONS(3363), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99452,104 +99714,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [54491] = 2, + [54077] = 3, + ACTIONS(2770), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3009), 15, + ACTIONS(2768), 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, - sym_mutable_specifier, + anon_sym_COLON_COLON, anon_sym_PIPE, - sym_self, - [54513] = 3, - ACTIONS(2763), 1, - anon_sym_COLON, + [54101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2761), 14, + ACTIONS(2702), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2704), 13, 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_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [54537] = 3, - ACTIONS(3582), 1, - anon_sym_DASH_GT, + [54125] = 3, + ACTIONS(2852), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2839), 13, + ACTIONS(2850), 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_PIPE, - [54560] = 14, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3508), 1, - anon_sym_BANG, - ACTIONS(3510), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3584), 1, - anon_sym_COLON, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3588), 1, - anon_sym_COMMA, - ACTIONS(3590), 1, - anon_sym_GT, - STATE(1263), 1, - sym_type_arguments, - STATE(1287), 1, - sym_parameters, - STATE(1839), 1, - sym_trait_bounds, - STATE(1841), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2645), 2, - anon_sym_PLUS, - anon_sym_as, - [54605] = 2, + anon_sym_PIPE, + [54149] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2783), 14, + ACTIONS(2750), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99564,15 +99796,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [54626] = 4, - ACTIONS(3594), 1, + [54170] = 4, + ACTIONS(3593), 1, anon_sym_pat, - STATE(502), 1, + STATE(509), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3592), 12, + ACTIONS(3591), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -99585,13 +99817,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [54651] = 3, - ACTIONS(3596), 1, + [54195] = 3, + ACTIONS(3595), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2809), 13, + ACTIONS(2872), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99605,20 +99837,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54674] = 4, - ACTIONS(2711), 1, + [54218] = 12, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(3579), 1, + anon_sym_LBRACE, + ACTIONS(3581), 1, anon_sym_COLON, - ACTIONS(3598), 1, + ACTIONS(3587), 1, + anon_sym_AT, + ACTIONS(3597), 1, + anon_sym_LPAREN, + ACTIONS(3599), 1, anon_sym_COLON_COLON, + STATE(1259), 1, + sym_type_arguments, + STATE(1275), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2709), 12, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2654), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [54259] = 3, + ACTIONS(3601), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2824), 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, @@ -99626,20 +99886,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54699] = 4, - ACTIONS(2817), 1, - anon_sym_COLON, - ACTIONS(3600), 1, - anon_sym_COLON_COLON, + [54282] = 3, + ACTIONS(3603), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2815), 12, + ACTIONS(2804), 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, @@ -99647,32 +99906,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54724] = 2, + [54305] = 4, + ACTIONS(2680), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2739), 14, + ACTIONS(2678), 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, - [54745] = 3, - ACTIONS(3602), 1, + [54330] = 3, + ACTIONS(3607), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2855), 13, + ACTIONS(2830), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99686,11 +99947,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54768] = 2, + [54353] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2827), 14, + ACTIONS(2740), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99705,41 +99966,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [54789] = 13, - ACTIONS(2645), 1, + [54374] = 13, + ACTIONS(2654), 1, anon_sym_PLUS, - ACTIONS(3508), 1, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3570), 1, + ACTIONS(3579), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3581), 1, anon_sym_COLON, - ACTIONS(3578), 1, + ACTIONS(3587), 1, anon_sym_AT, - ACTIONS(3604), 1, - anon_sym_LPAREN, ACTIONS(3609), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, anon_sym_COLON_COLON, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3606), 2, + ACTIONS(3611), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54417] = 4, + ACTIONS(2684), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2682), 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, - [54832] = 2, + anon_sym_GT, + anon_sym_PIPE, + [54442] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2775), 14, + ACTIONS(2842), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99754,13 +100036,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [54853] = 3, - ACTIONS(3611), 1, + [54463] = 3, + ACTIONS(3616), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2793), 13, + ACTIONS(2744), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99774,11 +100056,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54876] = 2, + [54486] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2865), 14, + ACTIONS(2866), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99793,15 +100075,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [54897] = 4, - ACTIONS(2691), 1, + [54507] = 3, + ACTIONS(3618), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2786), 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, + [54530] = 4, + ACTIONS(2684), 1, anon_sym_COLON, - ACTIONS(3598), 1, + ACTIONS(3417), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 12, + ACTIONS(2682), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99814,19 +100116,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54922] = 3, - ACTIONS(3613), 1, - anon_sym_DASH_GT, + [54555] = 14, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(3519), 1, + anon_sym_COLON_COLON, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(3620), 1, + anon_sym_COLON, + ACTIONS(3622), 1, + anon_sym_EQ, + ACTIONS(3624), 1, + anon_sym_COMMA, + ACTIONS(3626), 1, + anon_sym_GT, + STATE(1259), 1, + sym_type_arguments, + STATE(1275), 1, + sym_parameters, + STATE(1969), 1, + sym_trait_bounds, + STATE(1975), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2749), 13, + ACTIONS(2654), 2, + anon_sym_PLUS, + anon_sym_as, + [54600] = 4, + ACTIONS(2774), 1, + anon_sym_COLON, + ACTIONS(3628), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2772), 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, @@ -99834,19 +100168,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54945] = 3, - ACTIONS(3615), 1, - anon_sym_DASH_GT, + [54625] = 4, + ACTIONS(2708), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2849), 13, + ACTIONS(2706), 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, @@ -99854,13 +100189,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54968] = 3, - ACTIONS(3617), 1, - anon_sym_DASH_GT, + [54650] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2799), 13, + ACTIONS(2796), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99872,22 +100205,22 @@ static 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, - [54991] = 4, - ACTIONS(2687), 1, - anon_sym_COLON, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, + [54671] = 3, + ACTIONS(3630), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2685), 12, + ACTIONS(2856), 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, @@ -99895,79 +100228,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55016] = 13, - ACTIONS(3508), 1, + [54694] = 13, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3566), 1, + ACTIONS(3575), 1, anon_sym_COMMA, - ACTIONS(3570), 1, + ACTIONS(3579), 1, anon_sym_LBRACE, - ACTIONS(3578), 1, + ACTIONS(3587), 1, anon_sym_AT, - ACTIONS(3606), 1, + ACTIONS(3611), 1, anon_sym_RBRACK, - ACTIONS(3619), 1, + ACTIONS(3632), 1, anon_sym_LPAREN, - ACTIONS(3621), 1, + ACTIONS(3634), 1, anon_sym_COLON_COLON, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 2, + ACTIONS(2654), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [55059] = 12, - ACTIONS(3508), 1, - anon_sym_BANG, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3570), 1, - anon_sym_LBRACE, - ACTIONS(3572), 1, - anon_sym_COLON, - ACTIONS(3578), 1, - anon_sym_AT, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3625), 1, - anon_sym_COLON_COLON, - STATE(1263), 1, - sym_type_arguments, - STATE(1287), 1, - sym_parameters, + [54737] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2645), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55100] = 4, - ACTIONS(2691), 1, - anon_sym_COLON, - ACTIONS(3424), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2689), 12, + ACTIONS(443), 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, @@ -99975,11 +100276,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55125] = 2, + [54757] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 13, + ACTIONS(2986), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99993,11 +100294,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55145] = 2, + [54777] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3125), 13, + ACTIONS(2966), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100011,29 +100312,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55165] = 2, + [54797] = 3, + ACTIONS(3638), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(469), 13, + ACTIONS(3636), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + 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, - [55185] = 2, + [54819] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2985), 13, + ACTIONS(3018), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100047,11 +100349,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55205] = 2, + [54839] = 10, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(3577), 1, + anon_sym_LPAREN, + ACTIONS(3579), 1, + anon_sym_LBRACE, + ACTIONS(3581), 1, + anon_sym_COLON, + ACTIONS(3583), 1, + anon_sym_COLON_COLON, + ACTIONS(3642), 1, + anon_sym_AT, + STATE(1259), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3575), 4, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_COMMA, + anon_sym_PIPE, + [54875] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2989), 13, + ACTIONS(3062), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100065,11 +100393,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55225] = 2, + [54895] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2869), 13, + ACTIONS(517), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100083,11 +100411,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55245] = 2, + [54915] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(489), 13, + ACTIONS(431), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100101,11 +100429,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55265] = 2, + [54935] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3005), 13, + ACTIONS(2958), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100119,11 +100447,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55285] = 2, + [54955] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3129), 13, + ACTIONS(2678), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100137,11 +100465,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55305] = 2, + [54975] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(507), 13, + ACTIONS(2706), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100155,56 +100483,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55325] = 10, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(3570), 1, - anon_sym_LBRACE, - ACTIONS(3572), 1, - anon_sym_COLON, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - ACTIONS(3629), 1, - anon_sym_AT, - STATE(1263), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3627), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3566), 4, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_COMMA, - anon_sym_PIPE, - [55361] = 3, - ACTIONS(3633), 1, - anon_sym_EQ, + [54995] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3631), 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_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55383] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3095), 13, + ACTIONS(3054), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100218,11 +100501,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55403] = 2, + [55015] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2709), 13, + ACTIONS(3086), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100236,11 +100519,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55423] = 2, + [55035] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2893), 13, + ACTIONS(3002), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100254,11 +100537,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55443] = 2, + [55055] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2901), 13, + ACTIONS(2970), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100272,11 +100555,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55463] = 2, + [55075] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2905), 13, + ACTIONS(2882), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100290,11 +100573,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55483] = 2, + [55095] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3133), 13, + ACTIONS(3126), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100308,11 +100591,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55503] = 2, + [55115] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3117), 13, + ACTIONS(2990), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100326,11 +100609,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55523] = 2, + [55135] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 13, + ACTIONS(2998), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100344,11 +100627,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55543] = 2, + [55155] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2685), 13, + ACTIONS(2878), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100362,11 +100645,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55563] = 2, + [55175] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3113), 13, + ACTIONS(2912), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100380,11 +100663,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55583] = 2, + [55195] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2909), 13, + ACTIONS(3102), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100398,11 +100681,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55603] = 2, + [55215] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2997), 13, + ACTIONS(3006), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100416,11 +100699,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55623] = 2, + [55235] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 13, + ACTIONS(3018), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100434,11 +100717,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55643] = 2, + [55255] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2919), 13, + ACTIONS(3098), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100452,11 +100735,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55663] = 2, + [55275] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 13, + ACTIONS(3110), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100470,45 +100753,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [55683] = 10, - ACTIONS(3512), 1, + [55295] = 10, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3568), 1, + ACTIONS(3577), 1, anon_sym_LPAREN, - ACTIONS(3570), 1, + ACTIONS(3579), 1, anon_sym_LBRACE, - ACTIONS(3574), 1, + ACTIONS(3583), 1, anon_sym_COLON_COLON, - ACTIONS(3629), 1, + ACTIONS(3642), 1, anon_sym_AT, - ACTIONS(3635), 1, + ACTIONS(3644), 1, anon_sym_BANG, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3627), 2, + ACTIONS(3640), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3566), 3, + ACTIONS(3575), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [55330] = 4, + ACTIONS(3650), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3648), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3646), 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, - [55718] = 6, - ACTIONS(3568), 1, + [55353] = 6, + ACTIONS(3577), 1, anon_sym_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3581), 1, anon_sym_COLON, - ACTIONS(3637), 1, + ACTIONS(3652), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3566), 7, + ACTIONS(3575), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100516,16 +100818,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_in, - [55745] = 4, - ACTIONS(3643), 1, + [55380] = 4, + ACTIONS(3650), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3641), 2, + ACTIONS(3656), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3639), 9, + ACTIONS(3654), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100535,54 +100837,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55768] = 4, - ACTIONS(3643), 1, - anon_sym_COLON_COLON, + [55403] = 3, + ACTIONS(3660), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3647), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3645), 9, + ACTIONS(3658), 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, - [55791] = 4, + [55423] = 3, + ACTIONS(3664), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3649), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2693), 4, + ACTIONS(3662), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2699), 5, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55813] = 5, - ACTIONS(1091), 1, + anon_sym_in, + anon_sym_PIPE, + [55443] = 5, + ACTIONS(1095), 1, aux_sym_string_literal_token1, - ACTIONS(3654), 1, + ACTIONS(3668), 1, sym_crate, - STATE(1449), 1, + STATE(1436), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3652), 8, + ACTIONS(3666), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -100591,51 +100890,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55837] = 5, - ACTIONS(2681), 1, + [55467] = 5, + ACTIONS(2718), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2714), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3670), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2720), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55491] = 5, + ACTIONS(2690), 1, + anon_sym_COLON, + ACTIONS(3673), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2692), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2686), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + [55515] = 5, + ACTIONS(2668), 1, + anon_sym_COLON, + ACTIONS(3676), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2666), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2710), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + [55539] = 3, + ACTIONS(3681), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3679), 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, + [55559] = 3, + ACTIONS(3685), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3683), 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, + [55579] = 5, + ACTIONS(2702), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2677), 3, + ACTIONS(2698), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3656), 3, + ACTIONS(3687), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2704), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55603] = 5, + ACTIONS(2702), 1, + anon_sym_COLON, + ACTIONS(3687), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2683), 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2704), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [55861] = 5, - ACTIONS(2659), 1, + ACTIONS(2698), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + [55627] = 5, + ACTIONS(2668), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2673), 3, + ACTIONS(2710), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3659), 3, + ACTIONS(3676), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2657), 4, + ACTIONS(2666), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [55885] = 3, - ACTIONS(3664), 1, + [55651] = 3, + ACTIONS(3692), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3662), 10, + ACTIONS(3690), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100646,32 +101055,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55905] = 5, - ACTIONS(2705), 1, + [55671] = 5, + ACTIONS(2690), 1, anon_sym_COLON, - ACTIONS(3666), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2707), 4, + ACTIONS(2686), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3673), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2692), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2701), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - [55929] = 3, - ACTIONS(3671), 1, + [55695] = 3, + ACTIONS(3696), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3669), 10, + ACTIONS(3694), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100682,13 +101091,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55949] = 3, - ACTIONS(3675), 1, + [55715] = 3, + ACTIONS(3700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3673), 10, + ACTIONS(3698), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100699,13 +101108,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55969] = 3, - ACTIONS(3679), 1, + [55735] = 3, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3677), 10, + ACTIONS(3702), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100716,32 +101125,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55989] = 5, - ACTIONS(2705), 1, - anon_sym_COLON, + [55755] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2701), 3, + ACTIONS(3670), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2714), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3666), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2707), 4, + ACTIONS(2720), 5, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [56013] = 3, - ACTIONS(3683), 1, + [55777] = 3, + ACTIONS(3708), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3681), 10, + ACTIONS(3706), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100752,13 +101160,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56033] = 3, - ACTIONS(3687), 1, + [55797] = 3, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3685), 10, + ACTIONS(3710), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100769,85 +101177,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56053] = 3, - ACTIONS(3691), 1, - anon_sym_EQ, + [55817] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3689), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3687), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + ACTIONS(2698), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2704), 5, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [56073] = 5, - ACTIONS(2659), 1, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55839] = 5, + ACTIONS(2718), 1, anon_sym_COLON, - ACTIONS(3659), 1, + ACTIONS(3670), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2657), 4, + ACTIONS(2720), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2673), 5, + ACTIONS(2714), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - [56097] = 3, - ACTIONS(3695), 1, - anon_sym_EQ, + [55863] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3693), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3676), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + ACTIONS(2710), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2666), 5, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [56117] = 5, - ACTIONS(2681), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55885] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2683), 4, + ACTIONS(3673), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2686), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2692), 5, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2677), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - [56141] = 3, - ACTIONS(3699), 1, + [55907] = 3, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3697), 10, + ACTIONS(3714), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100858,30 +101267,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56161] = 3, - ACTIONS(3703), 1, - anon_sym_EQ, + [55927] = 5, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(3718), 1, + sym_crate, + STATE(1436), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3701), 10, + ACTIONS(3666), 8, 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, - [56181] = 3, - ACTIONS(3707), 1, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55951] = 3, + ACTIONS(3722), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3705), 10, + ACTIONS(3720), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100892,13 +101303,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56201] = 3, - ACTIONS(3711), 1, + [55971] = 3, + ACTIONS(3726), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3709), 10, + ACTIONS(3724), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100909,13 +101320,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56221] = 3, - ACTIONS(3715), 1, + [55991] = 3, + ACTIONS(3730), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3713), 10, + ACTIONS(3728), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100926,13 +101337,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56241] = 3, - ACTIONS(3719), 1, + [56011] = 3, + ACTIONS(3734), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3717), 10, + ACTIONS(3732), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100943,47 +101354,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56261] = 3, - ACTIONS(3723), 1, - anon_sym_EQ, + [56031] = 5, + ACTIONS(3738), 1, + anon_sym_COLON, + ACTIONS(3740), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3721), 10, + ACTIONS(3742), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3736), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_EQ, anon_sym_COMMA, anon_sym_in, - anon_sym_PIPE, - [56281] = 3, - ACTIONS(3727), 1, - anon_sym_EQ, + [56055] = 5, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + ACTIONS(3744), 1, + sym_crate, + STATE(1436), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3725), 10, + ACTIONS(3666), 8, 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, - [56301] = 3, - ACTIONS(3731), 1, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56079] = 3, + ACTIONS(3748), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3729), 10, + ACTIONS(3746), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -100994,50 +101409,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56321] = 5, - ACTIONS(2697), 1, - anon_sym_COLON, - ACTIONS(3649), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2699), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2693), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - [56345] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3656), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2677), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2683), 5, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56367] = 3, - ACTIONS(3735), 1, + [56099] = 3, + ACTIONS(3752), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3733), 10, + ACTIONS(3750), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101048,13 +101426,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56387] = 3, - ACTIONS(3739), 1, + [56119] = 3, + ACTIONS(3756), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3737), 10, + ACTIONS(3754), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101065,13 +101443,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56407] = 3, - ACTIONS(3743), 1, + [56139] = 3, + ACTIONS(3760), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3741), 10, + ACTIONS(3758), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101082,32 +101460,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56427] = 5, - ACTIONS(3747), 1, - anon_sym_COLON, - ACTIONS(3749), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3751), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3745), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - [56451] = 3, - ACTIONS(3755), 1, + [56159] = 3, + ACTIONS(3764), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3753), 10, + ACTIONS(3762), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101118,17 +101477,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56471] = 5, - ACTIONS(1091), 1, + [56179] = 5, + ACTIONS(1095), 1, aux_sym_string_literal_token1, - ACTIONS(3757), 1, + ACTIONS(3766), 1, sym_crate, - STATE(1449), 1, + STATE(1436), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3652), 8, + ACTIONS(3666), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -101137,13 +101496,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56495] = 3, - ACTIONS(3761), 1, + [56203] = 3, + ACTIONS(3770), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3759), 10, + ACTIONS(3768), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101154,13 +101513,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56515] = 3, - ACTIONS(3765), 1, + [56223] = 3, + ACTIONS(3774), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3763), 10, + ACTIONS(3772), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101171,13 +101530,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56535] = 3, - ACTIONS(3769), 1, + [56243] = 3, + ACTIONS(3778), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3767), 10, + ACTIONS(3776), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101188,13 +101547,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56555] = 3, - ACTIONS(3773), 1, + [56263] = 3, + ACTIONS(3782), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3771), 10, + ACTIONS(3780), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101205,13 +101564,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56575] = 3, - ACTIONS(3777), 1, + [56283] = 3, + ACTIONS(3786), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3775), 10, + ACTIONS(3784), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101222,31 +101581,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56595] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3659), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2673), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2657), 5, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56617] = 3, - ACTIONS(3781), 1, + [56303] = 3, + ACTIONS(3790), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3779), 10, + ACTIONS(3788), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101257,69 +101598,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56637] = 4, + [56323] = 3, + ACTIONS(3794), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3666), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2701), 4, + ACTIONS(3792), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2707), 5, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56659] = 5, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(3783), 1, - sym_crate, - STATE(1449), 1, - sym_string_literal, + anon_sym_in, + anon_sym_PIPE, + [56343] = 3, + ACTIONS(3798), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3652), 8, + ACTIONS(3796), 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, - [56683] = 5, - ACTIONS(2697), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2693), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3649), 3, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - ACTIONS(2699), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56707] = 3, - ACTIONS(3787), 1, + anon_sym_in, + anon_sym_PIPE, + [56363] = 3, + ACTIONS(3802), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3785), 10, + ACTIONS(3800), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101330,717 +101649,787 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [56727] = 5, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - ACTIONS(3789), 1, - sym_crate, - STATE(1449), 1, - sym_string_literal, + [56383] = 9, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(3519), 1, + anon_sym_COLON_COLON, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(3804), 1, + anon_sym_EQ, + STATE(1259), 1, + sym_type_arguments, + STATE(1275), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3652), 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, - [56751] = 9, - ACTIONS(3506), 1, + ACTIONS(2654), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [56414] = 9, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3791), 1, + ACTIONS(3806), 1, anon_sym_for, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 3, + ACTIONS(2654), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56782] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3552), 1, - anon_sym_trait, - ACTIONS(3793), 1, - anon_sym_impl, - STATE(41), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2747), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56807] = 9, - ACTIONS(3506), 1, + [56445] = 9, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3795), 1, + ACTIONS(3808), 1, anon_sym_for, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 3, + ACTIONS(2654), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56838] = 10, + [56476] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3797), 1, + ACTIONS(3810), 1, sym_identifier, - ACTIONS(3799), 1, + ACTIONS(3812), 1, anon_sym_RBRACE, - ACTIONS(3801), 1, + ACTIONS(3814), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - STATE(1936), 1, + STATE(1940), 1, sym_enum_variant, - STATE(2247), 1, + STATE(2278), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1444), 2, + STATE(1446), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56871] = 9, - ACTIONS(3506), 1, + [56509] = 9, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3805), 1, + ACTIONS(3818), 1, anon_sym_for, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 3, + ACTIONS(2654), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56902] = 8, - ACTIONS(2280), 1, + [56540] = 9, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(3519), 1, + anon_sym_COLON_COLON, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(3820), 1, + anon_sym_for, + STATE(1259), 1, + sym_type_arguments, + STATE(1275), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2654), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [56571] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3807), 1, + ACTIONS(3816), 1, + sym_crate, + ACTIONS(3822), 1, sym_identifier, - ACTIONS(3809), 1, + ACTIONS(3824), 1, anon_sym_RBRACE, - ACTIONS(3811), 1, + ACTIONS(3826), 1, anon_sym_COMMA, - ACTIONS(3813), 1, - anon_sym_DOT_DOT, + STATE(1968), 1, + sym_field_declaration, + STATE(2364), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1698), 2, + STATE(1472), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1797), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [56931] = 7, - ACTIONS(3506), 1, + [56604] = 9, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(3519), 1, + anon_sym_COLON_COLON, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3815), 1, - anon_sym_LBRACE, - STATE(1266), 1, + ACTIONS(3828), 1, + anon_sym_for, + STATE(1259), 1, sym_type_arguments, - STATE(1279), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2654), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - [56958] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3566), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - [56977] = 9, - ACTIONS(3506), 1, + anon_sym_where, + [56635] = 9, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3817), 1, + ACTIONS(3830), 1, anon_sym_for, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 3, + ACTIONS(2654), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57008] = 9, - ACTIONS(3506), 1, + [56666] = 8, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3832), 1, + sym_identifier, + ACTIONS(3834), 1, + anon_sym_RBRACE, + ACTIONS(3836), 1, + anon_sym_COMMA, + ACTIONS(3838), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1675), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1866), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [56695] = 9, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3819), 1, + ACTIONS(3840), 1, anon_sym_for, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 3, + ACTIONS(2654), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57039] = 10, + [56726] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3821), 1, + ACTIONS(3822), 1, sym_identifier, - ACTIONS(3823), 1, + ACTIONS(3842), 1, anon_sym_RBRACE, - ACTIONS(3825), 1, + ACTIONS(3844), 1, anon_sym_COMMA, - STATE(1965), 1, + STATE(1982), 1, sym_field_declaration, - STATE(2194), 1, + STATE(2364), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1467), 2, + STATE(1438), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57072] = 9, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3508), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3827), 1, - anon_sym_EQ, - STATE(1263), 1, - sym_type_arguments, - STATE(1287), 1, - sym_parameters, + [56759] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 3, - anon_sym_PLUS, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3575), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [57103] = 9, - ACTIONS(3506), 1, + anon_sym_in, + [56778] = 9, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(3510), 1, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3829), 1, + ACTIONS(3846), 1, anon_sym_for, - STATE(1263), 1, + STATE(1259), 1, sym_type_arguments, - STATE(1287), 1, + STATE(1275), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 3, + ACTIONS(2654), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57134] = 10, + [56809] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3797), 1, + ACTIONS(3810), 1, sym_identifier, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3831), 1, + ACTIONS(3848), 1, anon_sym_RBRACE, - ACTIONS(3833), 1, + ACTIONS(3850), 1, anon_sym_COMMA, - STATE(1752), 1, + STATE(1890), 1, sym_enum_variant, - STATE(2247), 1, + STATE(2278), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1470), 2, + STATE(1466), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57167] = 5, + [56842] = 5, ACTIONS(91), 1, aux_sym_string_literal_token1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3837), 2, + ACTIONS(3854), 2, anon_sym_true, anon_sym_false, - STATE(1741), 3, + STATE(1775), 3, sym__literal, sym_string_literal, sym_boolean_literal, - ACTIONS(3835), 4, + ACTIONS(3852), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - [57190] = 9, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3508), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3839), 1, - anon_sym_for, - STATE(1263), 1, - sym_type_arguments, - STATE(1287), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2645), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57221] = 5, + [56865] = 5, ACTIONS(91), 1, aux_sym_string_literal_token1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3837), 2, + ACTIONS(3854), 2, anon_sym_true, anon_sym_false, - STATE(1739), 3, + STATE(1753), 3, sym__literal, sym_string_literal, sym_boolean_literal, - ACTIONS(3841), 4, + ACTIONS(3856), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - [57244] = 10, + [56888] = 7, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(1272), 1, + sym_type_arguments, + STATE(1287), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2682), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [56915] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3537), 1, + anon_sym_trait, + ACTIONS(3860), 1, + anon_sym_impl, + STATE(51), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2784), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56940] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3821), 1, + ACTIONS(3822), 1, sym_identifier, - ACTIONS(3843), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, - ACTIONS(3845), 1, - anon_sym_COMMA, - STATE(1890), 1, + STATE(2104), 1, sym_field_declaration, - STATE(2194), 1, + STATE(2364), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1468), 2, + STATE(1462), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57277] = 9, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3508), 1, - anon_sym_BANG, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3847), 1, - anon_sym_for, - STATE(1263), 1, - sym_type_arguments, - STATE(1287), 1, - sym_parameters, + [56970] = 9, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(3864), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_const, + ACTIONS(3868), 1, + anon_sym_GT, + ACTIONS(3870), 1, + sym_metavariable, + STATE(1727), 1, + sym_lifetime, + STATE(1810), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2645), 3, + STATE(2125), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57000] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57308] = 9, - ACTIONS(2276), 1, + ACTIONS(3872), 1, + anon_sym_move, + STATE(42), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2784), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [57022] = 9, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(3849), 1, + ACTIONS(3864), 1, sym_identifier, - ACTIONS(3851), 1, + ACTIONS(3866), 1, anon_sym_const, - ACTIONS(3853), 1, - anon_sym_GT, - ACTIONS(3855), 1, + ACTIONS(3870), 1, sym_metavariable, - STATE(1693), 1, + ACTIONS(3874), 1, + anon_sym_GT, + STATE(1727), 1, sym_lifetime, - STATE(1804), 1, + STATE(1810), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, + STATE(2125), 2, sym_const_parameter, sym_optional_type_parameter, - [57338] = 7, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3807), 1, + [57052] = 9, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(3864), 1, sym_identifier, - ACTIONS(3813), 1, - anon_sym_DOT_DOT, - ACTIONS(3857), 1, - anon_sym_RBRACE, + ACTIONS(3866), 1, + anon_sym_const, + ACTIONS(3870), 1, + sym_metavariable, + ACTIONS(3876), 1, + anon_sym_GT, + STATE(1727), 1, + sym_lifetime, + STATE(1810), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1698), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2098), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [57364] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - sym_crate, - ACTIONS(3821), 1, - sym_identifier, - ACTIONS(3859), 1, - anon_sym_RBRACE, - STATE(2040), 1, - sym_field_declaration, - STATE(2194), 1, - sym_visibility_modifier, + STATE(2125), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57082] = 5, + ACTIONS(3878), 1, + anon_sym_SEMI, + ACTIONS(3880), 1, + anon_sym_LBRACE, + STATE(444), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1469), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57394] = 10, - ACTIONS(3861), 1, + ACTIONS(2784), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [57104] = 5, + ACTIONS(3882), 1, + anon_sym_SEMI, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(858), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2784), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [57126] = 10, + ACTIONS(3886), 1, anon_sym_SEMI, - ACTIONS(3863), 1, + ACTIONS(3888), 1, anon_sym_LPAREN, - ACTIONS(3865), 1, + ACTIONS(3890), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3869), 1, + ACTIONS(3894), 1, anon_sym_LT, - STATE(938), 1, + STATE(351), 1, sym_field_declaration_list, - STATE(1509), 1, + STATE(1485), 1, sym_type_parameters, - STATE(1906), 1, + STATE(1831), 1, sym_ordered_field_declaration_list, - STATE(2030), 1, + STATE(2141), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57426] = 9, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(3849), 1, + [57158] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3810), 1, sym_identifier, - ACTIONS(3851), 1, - anon_sym_const, - ACTIONS(3855), 1, - sym_metavariable, - ACTIONS(3871), 1, - anon_sym_GT, - STATE(1645), 1, - sym_lifetime, - STATE(1804), 1, - sym_constrained_type_parameter, + ACTIONS(3816), 1, + sym_crate, + ACTIONS(3896), 1, + anon_sym_RBRACE, + STATE(2023), 1, + sym_enum_variant, + STATE(2278), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, - sym_const_parameter, - sym_optional_type_parameter, - [57456] = 10, - ACTIONS(3863), 1, - anon_sym_LPAREN, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(3873), 1, - anon_sym_SEMI, - ACTIONS(3875), 1, - anon_sym_LBRACE, - STATE(356), 1, - sym_field_declaration_list, - STATE(1501), 1, - sym_type_parameters, - STATE(1969), 1, - sym_ordered_field_declaration_list, - STATE(2134), 1, - sym_where_clause, + STATE(1460), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [57188] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3816), 1, + sym_crate, + ACTIONS(3822), 1, + sym_identifier, + ACTIONS(3898), 1, + anon_sym_RBRACE, + STATE(2104), 1, + sym_field_declaration, + STATE(2364), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57488] = 6, - ACTIONS(3568), 1, + STATE(1462), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [57218] = 6, + ACTIONS(3577), 1, anon_sym_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3581), 1, anon_sym_COLON, - ACTIONS(3637), 1, + ACTIONS(3652), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3627), 2, + ACTIONS(3640), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3566), 4, + ACTIONS(3575), 4, anon_sym_EQ_GT, anon_sym_if, anon_sym_COMMA, anon_sym_PIPE, - [57512] = 9, + [57242] = 4, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(3900), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3800), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + [57262] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3803), 1, - sym_crate, - ACTIONS(3821), 1, + ACTIONS(3810), 1, sym_identifier, - ACTIONS(3877), 1, + ACTIONS(3816), 1, + sym_crate, + ACTIONS(3902), 1, anon_sym_RBRACE, - STATE(2040), 1, - sym_field_declaration, - STATE(2194), 1, + STATE(2023), 1, + sym_enum_variant, + STATE(2278), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1469), 2, + STATE(1460), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57542] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - sym_crate, - ACTIONS(3821), 1, - sym_identifier, - ACTIONS(3879), 1, + [57292] = 4, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(3904), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3800), 7, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2040), 1, - sym_field_declaration, - STATE(2194), 1, - sym_visibility_modifier, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + [57312] = 10, + ACTIONS(3888), 1, + anon_sym_LPAREN, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(3906), 1, + anon_sym_SEMI, + ACTIONS(3908), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym_field_declaration_list, + STATE(1513), 1, + sym_type_parameters, + STATE(1909), 1, + sym_ordered_field_declaration_list, + STATE(2105), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1469), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57572] = 9, + [57344] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3797), 1, + ACTIONS(3810), 1, sym_identifier, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3881), 1, + ACTIONS(3910), 1, anon_sym_RBRACE, - STATE(2041), 1, + STATE(2023), 1, sym_enum_variant, - STATE(2247), 1, + STATE(2278), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1441), 2, + STATE(1460), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57602] = 5, - ACTIONS(3883), 1, - anon_sym_SEMI, - ACTIONS(3885), 1, + [57374] = 5, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(278), 1, + ACTIONS(3912), 1, + anon_sym_SEMI, + STATE(934), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2747), 6, + ACTIONS(2784), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57624] = 7, - ACTIONS(2280), 1, + [57396] = 7, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3807), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(3813), 1, + ACTIONS(3838), 1, anon_sym_DOT_DOT, - ACTIONS(3887), 1, + ACTIONS(3914), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1698), 2, + STATE(1675), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2098), 3, + STATE(2072), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [57650] = 5, - ACTIONS(3889), 1, - anon_sym_SEMI, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2747), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57672] = 9, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(3849), 1, + [57422] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3816), 1, + sym_crate, + ACTIONS(3822), 1, sym_identifier, - ACTIONS(3851), 1, - anon_sym_const, - ACTIONS(3855), 1, - sym_metavariable, - ACTIONS(3893), 1, - anon_sym_GT, - STATE(1693), 1, - sym_lifetime, - STATE(1804), 1, - sym_constrained_type_parameter, + ACTIONS(3916), 1, + anon_sym_RBRACE, + STATE(2104), 1, + sym_field_declaration, + STATE(2364), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, - sym_const_parameter, - sym_optional_type_parameter, - [57702] = 4, - ACTIONS(3781), 1, + STATE(1462), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [57452] = 4, + ACTIONS(3802), 1, anon_sym_COLON, - ACTIONS(3895), 1, + ACTIONS(3918), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3779), 7, + ACTIONS(3800), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102048,313 +102437,326 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_in, - [57722] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3797), 1, - sym_identifier, - ACTIONS(3803), 1, - sym_crate, - ACTIONS(3897), 1, - anon_sym_RBRACE, - STATE(2041), 1, - sym_enum_variant, - STATE(2247), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1441), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57752] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3899), 1, - anon_sym_move, - STATE(40), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2747), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57774] = 9, + [57472] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3797), 1, + ACTIONS(3810), 1, sym_identifier, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3901), 1, + ACTIONS(3920), 1, anon_sym_RBRACE, - STATE(2041), 1, + STATE(2023), 1, sym_enum_variant, - STATE(2247), 1, + STATE(2278), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1441), 2, + STATE(1460), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57804] = 10, - ACTIONS(3863), 1, + [57502] = 10, + ACTIONS(3888), 1, anon_sym_LPAREN, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3869), 1, + ACTIONS(3894), 1, anon_sym_LT, - ACTIONS(3875), 1, + ACTIONS(3908), 1, anon_sym_LBRACE, - ACTIONS(3903), 1, + ACTIONS(3922), 1, anon_sym_SEMI, - STATE(349), 1, + STATE(949), 1, sym_field_declaration_list, - STATE(1512), 1, + STATE(1510), 1, sym_type_parameters, - STATE(1931), 1, + STATE(1985), 1, sym_ordered_field_declaration_list, - STATE(2020), 1, + STATE(2004), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57836] = 9, + [57534] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3803), 1, - sym_crate, - ACTIONS(3821), 1, + ACTIONS(3810), 1, sym_identifier, - ACTIONS(3905), 1, + ACTIONS(3816), 1, + sym_crate, + ACTIONS(3924), 1, anon_sym_RBRACE, - STATE(2040), 1, - sym_field_declaration, - STATE(2194), 1, + STATE(2023), 1, + sym_enum_variant, + STATE(2278), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1469), 2, + STATE(1460), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57866] = 4, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3779), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - [57886] = 9, + [57564] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3797), 1, - sym_identifier, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3909), 1, + ACTIONS(3822), 1, + sym_identifier, + ACTIONS(3926), 1, anon_sym_RBRACE, - STATE(2041), 1, - sym_enum_variant, - STATE(2247), 1, + STATE(2104), 1, + sym_field_declaration, + STATE(2364), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1441), 2, + STATE(1462), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57916] = 9, + [57594] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3821), 1, + ACTIONS(3822), 1, sym_identifier, - ACTIONS(3911), 1, + ACTIONS(3928), 1, anon_sym_RBRACE, - STATE(2040), 1, + STATE(2104), 1, sym_field_declaration, - STATE(2194), 1, + STATE(2364), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1469), 2, + STATE(1462), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57946] = 4, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(3913), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3779), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - [57966] = 5, - ACTIONS(3891), 1, - anon_sym_LBRACE, - ACTIONS(3915), 1, - anon_sym_SEMI, - STATE(943), 1, - sym_declaration_list, + [57624] = 9, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(3864), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_const, + ACTIONS(3870), 1, + sym_metavariable, + ACTIONS(3930), 1, + anon_sym_GT, + STATE(1663), 1, + sym_lifetime, + STATE(1810), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2747), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57988] = 9, + STATE(2125), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57654] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3797), 1, - sym_identifier, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3917), 1, + ACTIONS(3822), 1, + sym_identifier, + ACTIONS(3932), 1, anon_sym_RBRACE, - STATE(2041), 1, - sym_enum_variant, - STATE(2247), 1, + STATE(2104), 1, + sym_field_declaration, + STATE(2364), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1441), 2, + STATE(1462), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58018] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2280), 1, + [57684] = 9, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(3864), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_const, + ACTIONS(3870), 1, + sym_metavariable, + ACTIONS(3934), 1, + anon_sym_GT, + STATE(1727), 1, + sym_lifetime, + STATE(1810), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2125), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57714] = 7, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3803), 1, - sym_crate, - ACTIONS(3821), 1, + ACTIONS(3832), 1, sym_identifier, - ACTIONS(3919), 1, + ACTIONS(3838), 1, + anon_sym_DOT_DOT, + ACTIONS(3936), 1, anon_sym_RBRACE, - STATE(2040), 1, - sym_field_declaration, - STATE(2194), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1469), 2, + STATE(1675), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58048] = 9, - ACTIONS(2276), 1, + STATE(2072), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [57740] = 9, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(3849), 1, + ACTIONS(3864), 1, sym_identifier, - ACTIONS(3851), 1, + ACTIONS(3866), 1, anon_sym_const, - ACTIONS(3855), 1, + ACTIONS(3870), 1, sym_metavariable, - ACTIONS(3921), 1, + ACTIONS(3938), 1, anon_sym_GT, - STATE(1693), 1, + STATE(1727), 1, sym_lifetime, - STATE(1804), 1, + STATE(1810), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, + STATE(2125), 2, sym_const_parameter, sym_optional_type_parameter, - [58078] = 9, - ACTIONS(2276), 1, + [57770] = 9, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(3849), 1, + ACTIONS(3864), 1, sym_identifier, - ACTIONS(3851), 1, + ACTIONS(3866), 1, anon_sym_const, - ACTIONS(3855), 1, + ACTIONS(3870), 1, sym_metavariable, - ACTIONS(3923), 1, + ACTIONS(3940), 1, anon_sym_GT, - STATE(1693), 1, + STATE(1727), 1, sym_lifetime, - STATE(1804), 1, + STATE(1810), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, + STATE(2125), 2, sym_const_parameter, sym_optional_type_parameter, - [58108] = 9, - ACTIONS(2276), 1, + [57800] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + sym_identifier, + ACTIONS(3816), 1, + sym_crate, + ACTIONS(3942), 1, + anon_sym_RBRACE, + STATE(2023), 1, + sym_enum_variant, + STATE(2278), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1460), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [57830] = 10, + ACTIONS(3888), 1, + anon_sym_LPAREN, + ACTIONS(3890), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(3944), 1, + anon_sym_SEMI, + STATE(245), 1, + sym_field_declaration_list, + STATE(1516), 1, + sym_type_parameters, + STATE(1879), 1, + sym_ordered_field_declaration_list, + STATE(2137), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57862] = 5, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + anon_sym_SEMI, + STATE(450), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2784), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [57884] = 9, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(3849), 1, + ACTIONS(3864), 1, sym_identifier, - ACTIONS(3851), 1, + ACTIONS(3866), 1, anon_sym_const, - ACTIONS(3855), 1, + ACTIONS(3870), 1, sym_metavariable, - ACTIONS(3925), 1, + ACTIONS(3948), 1, anon_sym_GT, - STATE(1693), 1, + STATE(1727), 1, sym_lifetime, - STATE(1804), 1, + STATE(1810), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, + STATE(2125), 2, sym_const_parameter, sym_optional_type_parameter, - [58138] = 4, - ACTIONS(3707), 1, + [57914] = 4, + ACTIONS(3756), 1, anon_sym_COLON, - ACTIONS(3895), 1, + ACTIONS(3900), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3705), 7, + ACTIONS(3754), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102362,15 +102764,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_in, - [58158] = 4, - ACTIONS(3707), 1, + [57934] = 4, + ACTIONS(3756), 1, anon_sym_COLON, - ACTIONS(3907), 1, + ACTIONS(3904), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3705), 7, + ACTIONS(3754), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102378,15 +102780,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_in, - [58178] = 4, - ACTIONS(3707), 1, + [57954] = 4, + ACTIONS(3756), 1, anon_sym_COLON, - ACTIONS(3913), 1, + ACTIONS(3918), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3705), 7, + ACTIONS(3754), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102394,980 +102796,917 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_in, - [58198] = 9, - ACTIONS(2276), 1, + [57974] = 9, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(3849), 1, + ACTIONS(3864), 1, sym_identifier, - ACTIONS(3851), 1, + ACTIONS(3866), 1, anon_sym_const, - ACTIONS(3855), 1, + ACTIONS(3870), 1, sym_metavariable, - ACTIONS(3927), 1, + ACTIONS(3950), 1, anon_sym_GT, - STATE(1693), 1, + STATE(1727), 1, sym_lifetime, - STATE(1804), 1, + STATE(1810), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, + STATE(2125), 2, sym_const_parameter, sym_optional_type_parameter, - [58228] = 9, - ACTIONS(2276), 1, + [58004] = 8, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(3849), 1, - sym_identifier, - ACTIONS(3851), 1, + ACTIONS(3866), 1, anon_sym_const, - ACTIONS(3855), 1, + ACTIONS(3952), 1, + sym_identifier, + ACTIONS(3954), 1, sym_metavariable, - ACTIONS(3929), 1, - anon_sym_GT, - STATE(1693), 1, + STATE(1611), 1, sym_lifetime, - STATE(1804), 1, + STATE(1711), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, + STATE(1896), 2, sym_const_parameter, sym_optional_type_parameter, - [58258] = 10, - ACTIONS(3863), 1, - anon_sym_LPAREN, - ACTIONS(3865), 1, - anon_sym_LBRACE, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(3931), 1, - anon_sym_SEMI, - STATE(811), 1, - sym_field_declaration_list, - STATE(1496), 1, - sym_type_parameters, - STATE(1974), 1, - sym_ordered_field_declaration_list, - STATE(2001), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58290] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3797), 1, + [58031] = 8, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(3866), 1, + anon_sym_const, + ACTIONS(3956), 1, sym_identifier, - ACTIONS(3803), 1, - sym_crate, - ACTIONS(3933), 1, - anon_sym_RBRACE, - STATE(2041), 1, - sym_enum_variant, - STATE(2247), 1, - sym_visibility_modifier, + ACTIONS(3958), 1, + sym_metavariable, + STATE(1536), 1, + sym_lifetime, + STATE(1660), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1441), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [58320] = 5, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(3935), 1, - anon_sym_SEMI, - STATE(442), 1, - sym_declaration_list, + STATE(1806), 2, + sym_const_parameter, + sym_optional_type_parameter, + [58058] = 4, + ACTIONS(1095), 1, + aux_sym_string_literal_token1, + STATE(1436), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2747), 6, + ACTIONS(3666), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [58342] = 9, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(3849), 1, - sym_identifier, - ACTIONS(3851), 1, - anon_sym_const, - ACTIONS(3855), 1, - sym_metavariable, - ACTIONS(3937), 1, - anon_sym_GT, - STATE(1693), 1, - sym_lifetime, - STATE(1804), 1, - sym_constrained_type_parameter, + [58077] = 4, + ACTIONS(3962), 1, + anon_sym_PLUS, + STATE(1433), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, - sym_const_parameter, - sym_optional_type_parameter, - [58372] = 7, - ACTIONS(3506), 1, + ACTIONS(3960), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [58096] = 7, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3939), 1, + ACTIONS(3965), 1, anon_sym_for, - STATE(1266), 1, + STATE(1272), 1, sym_type_arguments, - STATE(1279), 1, + STATE(1287), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, + ACTIONS(2682), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58397] = 7, - ACTIONS(3508), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(3572), 1, - anon_sym_COLON, - ACTIONS(3941), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3566), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58422] = 8, - ACTIONS(3943), 1, - anon_sym_LPAREN, - ACTIONS(3948), 1, + [58121] = 9, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3951), 1, - anon_sym_LBRACK, - STATE(1429), 1, - aux_sym_macro_definition_repeat1, - STATE(2264), 1, - sym_token_tree_pattern, - STATE(2328), 1, - sym_macro_rule, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3946), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [58449] = 8, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(3851), 1, - anon_sym_const, - ACTIONS(3954), 1, - sym_identifier, - ACTIONS(3956), 1, - sym_metavariable, - STATE(1578), 1, - sym_lifetime, - STATE(1662), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1907), 2, - sym_const_parameter, - sym_optional_type_parameter, - [58476] = 9, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3967), 1, anon_sym_COLON, - ACTIONS(3960), 1, + ACTIONS(3969), 1, anon_sym_LT, - STATE(828), 1, + STATE(356), 1, sym_declaration_list, - STATE(1556), 1, + STATE(1575), 1, sym_type_parameters, - STATE(1714), 1, + STATE(1665), 1, sym_trait_bounds, - STATE(1990), 1, + STATE(2142), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58505] = 7, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3962), 1, - anon_sym_for, - STATE(1266), 1, - sym_type_arguments, - STATE(1279), 1, - sym_parameters, + [58150] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58530] = 9, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + ACTIONS(3971), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3958), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [58165] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2395), 8, + anon_sym_EQ_GT, anon_sym_COLON, - ACTIONS(3960), 1, - anon_sym_LT, - STATE(316), 1, - sym_declaration_list, - STATE(1560), 1, - sym_type_parameters, - STATE(1710), 1, - sym_trait_bounds, - STATE(2081), 1, - sym_where_clause, + anon_sym_if, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [58180] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3816), 1, + sym_crate, + ACTIONS(3822), 1, + sym_identifier, + STATE(1951), 1, + sym_field_declaration, + STATE(2364), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1065), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [58207] = 6, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3832), 1, + sym_identifier, + ACTIONS(3838), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58559] = 7, - ACTIONS(3506), 1, + STATE(1675), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2072), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [58230] = 7, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3964), 1, + ACTIONS(3973), 1, anon_sym_for, - STATE(1266), 1, + STATE(1272), 1, sym_type_arguments, - STATE(1279), 1, + STATE(1287), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, + ACTIONS(2682), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58584] = 7, - ACTIONS(3506), 1, + [58255] = 7, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(3577), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3966), 1, - anon_sym_for, - STATE(1266), 1, - sym_type_arguments, - STATE(1279), 1, - sym_parameters, + ACTIONS(3581), 1, + anon_sym_COLON, + ACTIONS(3975), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58609] = 4, - ACTIONS(3528), 1, - anon_sym_trait, - ACTIONS(3968), 1, - anon_sym_impl, + ACTIONS(3575), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58280] = 5, + ACTIONS(3980), 1, + anon_sym_fn, + ACTIONS(3982), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2747), 6, + STATE(1442), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3977), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [58628] = 7, - ACTIONS(3506), 1, + [58301] = 8, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(3864), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_const, + ACTIONS(3870), 1, + sym_metavariable, + STATE(1727), 1, + sym_lifetime, + STATE(1810), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2125), 2, + sym_const_parameter, + sym_optional_type_parameter, + [58328] = 7, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3970), 1, + ACTIONS(3985), 1, anon_sym_for, - STATE(1266), 1, + STATE(1272), 1, sym_type_arguments, - STATE(1279), 1, + STATE(1287), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, + ACTIONS(2682), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58653] = 8, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(3972), 1, - sym_identifier, - ACTIONS(3974), 1, - anon_sym_RBRACE, - ACTIONS(3976), 1, - anon_sym_COMMA, - ACTIONS(3978), 1, - anon_sym_ref, - ACTIONS(3980), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1811), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [58680] = 6, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(3635), 1, - anon_sym_BANG, - ACTIONS(3637), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3627), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3566), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [58703] = 6, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3807), 1, - sym_identifier, - ACTIONS(3813), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1698), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2098), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [58726] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3797), 1, - sym_identifier, - ACTIONS(3803), 1, - sym_crate, - STATE(2022), 1, - sym_enum_variant, - STATE(2247), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1062), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [58753] = 8, - ACTIONS(2276), 1, + [58353] = 8, + ACTIONS(2284), 1, anon_sym_SQUOTE, - ACTIONS(3851), 1, + ACTIONS(3866), 1, anon_sym_const, - ACTIONS(3982), 1, + ACTIONS(3956), 1, sym_identifier, - ACTIONS(3984), 1, + ACTIONS(3958), 1, sym_metavariable, - STATE(1612), 1, + STATE(1642), 1, sym_lifetime, - STATE(1650), 1, + STATE(1660), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1893), 2, + STATE(1806), 2, sym_const_parameter, sym_optional_type_parameter, - [58780] = 8, + [58380] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3803), 1, - sym_crate, - ACTIONS(3821), 1, + ACTIONS(3810), 1, sym_identifier, - STATE(2040), 1, - sym_field_declaration, - STATE(2194), 1, + ACTIONS(3816), 1, + sym_crate, + STATE(1979), 1, + sym_enum_variant, + STATE(2278), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1469), 2, + STATE(1065), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58807] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3797), 1, - sym_identifier, - ACTIONS(3803), 1, - sym_crate, - STATE(1810), 1, - sym_enum_variant, - STATE(2247), 1, - sym_visibility_modifier, + [58407] = 5, + ACTIONS(3738), 1, + anon_sym_COLON, + ACTIONS(3740), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1062), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [58834] = 8, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(3849), 1, + ACTIONS(3987), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3736), 4, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_COMMA, + anon_sym_PIPE, + [58428] = 8, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(3989), 1, sym_identifier, - ACTIONS(3851), 1, - anon_sym_const, - ACTIONS(3855), 1, - sym_metavariable, - STATE(1693), 1, - sym_lifetime, - STATE(1804), 1, - sym_constrained_type_parameter, + ACTIONS(3991), 1, + anon_sym_RBRACE, + ACTIONS(3993), 1, + anon_sym_COMMA, + ACTIONS(3995), 1, + anon_sym_ref, + ACTIONS(3997), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2122), 2, - sym_const_parameter, - sym_optional_type_parameter, - [58861] = 7, - ACTIONS(3506), 1, + STATE(1949), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [58455] = 7, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(3986), 1, + ACTIONS(3999), 1, anon_sym_for, - STATE(1266), 1, + STATE(1272), 1, sym_type_arguments, - STATE(1279), 1, + STATE(1287), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, + ACTIONS(2682), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58886] = 5, - ACTIONS(3990), 1, - anon_sym_fn, - ACTIONS(3992), 1, - anon_sym_extern, + [58480] = 8, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3995), 1, + anon_sym_ref, + ACTIONS(3997), 1, + sym_mutable_specifier, + ACTIONS(4001), 1, + anon_sym_RBRACE, + ACTIONS(4003), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1466), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3988), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [58907] = 9, - ACTIONS(3867), 1, + STATE(1961), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [58507] = 9, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3891), 1, + ACTIONS(3967), 1, + anon_sym_COLON, + ACTIONS(3969), 1, + anon_sym_LT, + STATE(961), 1, + sym_declaration_list, + STATE(1532), 1, + sym_type_parameters, + STATE(1706), 1, + sym_trait_bounds, + STATE(2103), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58536] = 9, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3967), 1, anon_sym_COLON, - ACTIONS(3960), 1, + ACTIONS(3969), 1, anon_sym_LT, - STATE(921), 1, + STATE(941), 1, sym_declaration_list, - STATE(1548), 1, + STATE(1561), 1, sym_type_parameters, - STATE(1673), 1, + STATE(1685), 1, sym_trait_bounds, - STATE(2064), 1, + STATE(2067), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58936] = 2, + [58565] = 4, + ACTIONS(3561), 1, + anon_sym_trait, + ACTIONS(4005), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3994), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2784), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [58951] = 9, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + [58584] = 9, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3967), 1, anon_sym_COLON, - ACTIONS(3960), 1, + ACTIONS(3969), 1, anon_sym_LT, - STATE(304), 1, + STATE(293), 1, sym_declaration_list, - STATE(1561), 1, + STATE(1533), 1, sym_type_parameters, - STATE(1661), 1, + STATE(1734), 1, sym_trait_bounds, - STATE(2145), 1, + STATE(2045), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58980] = 4, - ACTIONS(3998), 1, - anon_sym_PLUS, - STATE(1451), 1, - aux_sym_trait_bounds_repeat1, + [58613] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + sym_identifier, + ACTIONS(3816), 1, + sym_crate, + STATE(2023), 1, + sym_enum_variant, + STATE(2278), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3996), 6, - anon_sym_SEMI, + STATE(1460), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [58640] = 8, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4015), 1, + anon_sym_LBRACK, + STATE(1456), 1, + aux_sym_macro_definition_repeat1, + STATE(2238), 1, + sym_token_tree_pattern, + STATE(2372), 1, + sym_macro_rule, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4010), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [58667] = 6, + ACTIONS(3577), 1, + anon_sym_LPAREN, + ACTIONS(3644), 1, + anon_sym_BANG, + ACTIONS(3652), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3575), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [58690] = 9, + ACTIONS(3884), 1, anon_sym_LBRACE, + ACTIONS(3892), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58999] = 7, - ACTIONS(3506), 1, + ACTIONS(3967), 1, + anon_sym_COLON, + ACTIONS(3969), 1, + anon_sym_LT, + STATE(792), 1, + sym_declaration_list, + STATE(1528), 1, + sym_type_parameters, + STATE(1695), 1, + sym_trait_bounds, + STATE(1993), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58719] = 5, + ACTIONS(4020), 1, + anon_sym_fn, + ACTIONS(4022), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1442), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(4018), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [58740] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + sym_identifier, + ACTIONS(3816), 1, + sym_crate, + STATE(2026), 1, + sym_enum_variant, + STATE(2278), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1065), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [58767] = 7, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(4001), 1, + ACTIONS(4024), 1, anon_sym_for, - STATE(1266), 1, + STATE(1272), 1, sym_type_arguments, - STATE(1279), 1, + STATE(1287), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, + ACTIONS(2682), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [59024] = 8, + [58792] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3797), 1, - sym_identifier, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - STATE(2041), 1, - sym_enum_variant, - STATE(2247), 1, + ACTIONS(3822), 1, + sym_identifier, + STATE(2077), 1, + sym_field_declaration, + STATE(2364), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1441), 2, + STATE(1065), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [59051] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2322), 8, - anon_sym_EQ_GT, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [59066] = 4, - ACTIONS(4005), 1, + [58819] = 4, + ACTIONS(4028), 1, anon_sym_PLUS, - STATE(1462), 1, + STATE(1468), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4003), 6, + ACTIONS(4026), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59085] = 8, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(3972), 1, - sym_identifier, - ACTIONS(3978), 1, - anon_sym_ref, - ACTIONS(3980), 1, - sym_mutable_specifier, - ACTIONS(4007), 1, - anon_sym_RBRACE, - ACTIONS(4009), 1, - anon_sym_COMMA, + [58838] = 4, + ACTIONS(4030), 1, + anon_sym_PLUS, + STATE(1468), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1746), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [59112] = 9, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + ACTIONS(4026), 6, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3958), 1, - anon_sym_COLON, - ACTIONS(3960), 1, - anon_sym_LT, - STATE(354), 1, - sym_declaration_list, - STATE(1519), 1, - sym_type_parameters, - STATE(1675), 1, - sym_trait_bounds, - STATE(2023), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59141] = 5, - ACTIONS(3747), 1, - anon_sym_COLON, - ACTIONS(3749), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3745), 4, - anon_sym_EQ_GT, - anon_sym_if, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - [59162] = 4, - ACTIONS(4013), 1, + anon_sym_GT, + [58857] = 4, + ACTIONS(4032), 1, anon_sym_PLUS, - STATE(1462), 1, + STATE(1468), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4003), 6, + ACTIONS(4026), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59181] = 7, - ACTIONS(3506), 1, + [58876] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(3810), 1, + sym_identifier, + ACTIONS(3816), 1, + sym_crate, + STATE(1848), 1, + sym_enum_variant, + STATE(2278), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1065), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [58903] = 7, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(4015), 1, + ACTIONS(4034), 1, anon_sym_for, - STATE(1266), 1, + STATE(1272), 1, sym_type_arguments, - STATE(1279), 1, + STATE(1287), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, + ACTIONS(2682), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [59206] = 8, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(3851), 1, - anon_sym_const, - ACTIONS(3954), 1, - sym_identifier, - ACTIONS(3956), 1, - sym_metavariable, - STATE(1538), 1, - sym_lifetime, - STATE(1662), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1907), 2, - sym_const_parameter, - sym_optional_type_parameter, - [59233] = 4, - ACTIONS(4019), 1, + [58928] = 4, + ACTIONS(4028), 1, anon_sym_PLUS, - STATE(1451), 1, + STATE(1433), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4017), 6, + ACTIONS(4036), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59252] = 4, - ACTIONS(1091), 1, - aux_sym_string_literal_token1, - STATE(1449), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3652), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [59271] = 9, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, + [58947] = 9, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3967), 1, anon_sym_COLON, - ACTIONS(3960), 1, + ACTIONS(3969), 1, anon_sym_LT, - STATE(937), 1, + STATE(286), 1, sym_declaration_list, - STATE(1516), 1, + STATE(1556), 1, sym_type_parameters, - STATE(1657), 1, + STATE(1704), 1, sym_trait_bounds, - STATE(2017), 1, + STATE(2050), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59300] = 4, - ACTIONS(4019), 1, - anon_sym_PLUS, - STATE(1462), 1, - aux_sym_trait_bounds_repeat1, + [58976] = 7, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4038), 1, + anon_sym_for, + STATE(1272), 1, + sym_type_arguments, + STATE(1287), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4003), 6, - anon_sym_SEMI, + ACTIONS(2682), 3, anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [59319] = 5, - ACTIONS(4024), 1, - anon_sym_fn, - ACTIONS(4026), 1, - anon_sym_extern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1466), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(4021), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [59340] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - sym_crate, - ACTIONS(3821), 1, - sym_identifier, - STATE(1880), 1, - sym_field_declaration, - STATE(2194), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1062), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [59367] = 8, + [59001] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3821), 1, + ACTIONS(3822), 1, sym_identifier, - STATE(1755), 1, + STATE(2104), 1, sym_field_declaration, - STATE(2194), 1, + STATE(2364), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1062), 2, + STATE(1462), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [59394] = 8, + [59028] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2280), 1, + ACTIONS(2288), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3816), 1, sym_crate, - ACTIONS(3821), 1, + ACTIONS(3822), 1, sym_identifier, - STATE(2005), 1, + STATE(1794), 1, sym_field_declaration, - STATE(2194), 1, + STATE(2364), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1062), 2, + STATE(1065), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [59421] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(3797), 1, - sym_identifier, - ACTIONS(3803), 1, - sym_crate, - STATE(1780), 1, - sym_enum_variant, - STATE(2247), 1, - sym_visibility_modifier, + [59055] = 7, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4040), 1, + anon_sym_for, + STATE(1272), 1, + sym_type_arguments, + STATE(1287), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1062), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [59448] = 2, + ACTIONS(2682), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [59080] = 5, + ACTIONS(3738), 1, + anon_sym_COLON, + ACTIONS(4042), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4029), 7, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3742), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2772), 3, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [59462] = 3, - ACTIONS(4031), 1, - anon_sym_trait, + [59100] = 3, + ACTIONS(4044), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2747), 6, + ACTIONS(4046), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59478] = 5, - ACTIONS(3747), 1, - anon_sym_COLON, - ACTIONS(4033), 1, + [59116] = 6, + ACTIONS(3918), 1, anon_sym_COLON_COLON, + ACTIONS(4048), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_EQ, + STATE(1923), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3751), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2815), 3, + ACTIONS(4050), 3, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_COMMA, - [59498] = 3, - ACTIONS(4035), 1, - anon_sym_trait, + [59138] = 6, + ACTIONS(3904), 1, + anon_sym_COLON_COLON, + ACTIONS(4048), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_EQ, + STATE(1923), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2747), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [59514] = 3, - ACTIONS(4037), 1, + ACTIONS(4050), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [59160] = 6, + ACTIONS(3900), 1, + anon_sym_COLON_COLON, + ACTIONS(4048), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_EQ, + STATE(1923), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4050), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [59182] = 6, + ACTIONS(3650), 1, + anon_sym_COLON_COLON, + ACTIONS(4048), 1, + anon_sym_LPAREN, + ACTIONS(4056), 1, + anon_sym_EQ, + STATE(1925), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4054), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [59204] = 3, + ACTIONS(4058), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4039), 6, + ACTIONS(4046), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59530] = 2, + [59220] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3996), 7, + ACTIONS(3960), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -103375,161 +103714,250 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59544] = 7, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(3972), 1, - sym_identifier, - ACTIONS(3978), 1, - anon_sym_ref, - ACTIONS(3980), 1, - sym_mutable_specifier, - ACTIONS(4041), 1, - anon_sym_RBRACE, + [59234] = 6, + ACTIONS(3888), 1, + anon_sym_LPAREN, + ACTIONS(3908), 1, + anon_sym_LBRACE, + ACTIONS(4062), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2055), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [59568] = 3, - ACTIONS(4043), 1, - sym_identifier, + ACTIONS(4060), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1850), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [59256] = 3, + ACTIONS(4064), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4039), 6, + ACTIONS(2784), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59584] = 3, - ACTIONS(4045), 1, - sym_identifier, + [59272] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3960), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [59286] = 8, + ACTIONS(3888), 1, + anon_sym_LPAREN, + ACTIONS(3890), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4066), 1, + anon_sym_SEMI, + STATE(320), 1, + sym_field_declaration_list, + STATE(1962), 1, + sym_ordered_field_declaration_list, + STATE(2033), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59312] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3960), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [59326] = 3, + ACTIONS(4068), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4039), 6, + ACTIONS(2784), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59600] = 6, - ACTIONS(3863), 1, - anon_sym_LPAREN, - ACTIONS(3865), 1, - anon_sym_LBRACE, - ACTIONS(4049), 1, - anon_sym_EQ, + [59342] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4047), 2, - anon_sym_RBRACE, + ACTIONS(4070), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(1980), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [59622] = 7, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(3972), 1, + anon_sym_GT, + [59356] = 3, + ACTIONS(4072), 1, sym_identifier, - ACTIONS(3978), 1, - anon_sym_ref, - ACTIONS(3980), 1, - sym_mutable_specifier, - ACTIONS(4051), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2055), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [59646] = 8, - ACTIONS(4053), 1, + ACTIONS(4046), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [59372] = 8, + ACTIONS(4074), 1, anon_sym_LPAREN, - ACTIONS(4055), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - ACTIONS(4057), 1, + ACTIONS(4078), 1, anon_sym_RBRACE, - ACTIONS(4059), 1, + ACTIONS(4080), 1, anon_sym_LBRACK, - STATE(1429), 1, + STATE(1456), 1, aux_sym_macro_definition_repeat1, - STATE(1984), 1, + STATE(2164), 1, sym_macro_rule, - STATE(2264), 1, + STATE(2238), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59672] = 3, - ACTIONS(4061), 1, - sym_identifier, + [59398] = 3, + ACTIONS(4082), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4039), 6, + ACTIONS(2784), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59688] = 2, + [59414] = 8, + ACTIONS(4074), 1, + anon_sym_LPAREN, + ACTIONS(4076), 1, + anon_sym_LBRACE, + ACTIONS(4080), 1, + anon_sym_LBRACK, + ACTIONS(4084), 1, + anon_sym_RPAREN, + STATE(1456), 1, + aux_sym_macro_definition_repeat1, + STATE(2163), 1, + sym_macro_rule, + STATE(2238), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59440] = 6, + ACTIONS(3736), 1, + anon_sym_COMMA, + ACTIONS(4086), 1, + anon_sym_RBRACK, + ACTIONS(4089), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3996), 7, + ACTIONS(2772), 2, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [59702] = 3, - ACTIONS(2659), 1, + ACTIONS(3742), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59462] = 7, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3995), 1, + anon_sym_ref, + ACTIONS(3997), 1, + sym_mutable_specifier, + ACTIONS(4091), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2116), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [59486] = 3, + ACTIONS(2668), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2657), 6, + ACTIONS(2666), 6, anon_sym_EQ_GT, anon_sym_if, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, - [59718] = 8, - ACTIONS(4053), 1, + [59502] = 7, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3995), 1, + anon_sym_ref, + ACTIONS(3997), 1, + sym_mutable_specifier, + ACTIONS(4093), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2116), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [59526] = 8, + ACTIONS(4074), 1, anon_sym_LPAREN, - ACTIONS(4055), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - ACTIONS(4059), 1, + ACTIONS(4080), 1, anon_sym_LBRACK, - ACTIONS(4063), 1, + ACTIONS(4095), 1, anon_sym_RPAREN, - STATE(1490), 1, + STATE(1492), 1, aux_sym_macro_definition_repeat1, - STATE(2123), 1, + STATE(2131), 1, sym_macro_rule, - STATE(2264), 1, + STATE(2238), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59744] = 2, + [59552] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3996), 7, + ACTIONS(4097), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -103537,149 +103965,204 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59758] = 8, - ACTIONS(4053), 1, + [59566] = 8, + ACTIONS(4074), 1, anon_sym_LPAREN, - ACTIONS(4055), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - ACTIONS(4059), 1, + ACTIONS(4080), 1, anon_sym_LBRACK, - ACTIONS(4065), 1, + ACTIONS(4099), 1, anon_sym_RBRACE, - STATE(1429), 1, + STATE(1490), 1, aux_sym_macro_definition_repeat1, - STATE(2012), 1, + STATE(2127), 1, sym_macro_rule, - STATE(2264), 1, + STATE(2238), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59784] = 3, + [59592] = 7, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3995), 1, + anon_sym_ref, + ACTIONS(3997), 1, + sym_mutable_specifier, + ACTIONS(4101), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3627), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3566), 5, - anon_sym_EQ_GT, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_PIPE, - [59800] = 8, - ACTIONS(4053), 1, + STATE(2116), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [59616] = 8, + ACTIONS(4074), 1, anon_sym_LPAREN, - ACTIONS(4055), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - ACTIONS(4059), 1, + ACTIONS(4080), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, - anon_sym_RPAREN, - STATE(1429), 1, + ACTIONS(4103), 1, + anon_sym_RBRACE, + STATE(1456), 1, aux_sym_macro_definition_repeat1, - STATE(2128), 1, + STATE(2015), 1, sym_macro_rule, - STATE(2264), 1, + STATE(2238), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59826] = 3, - ACTIONS(4069), 1, - anon_sym_COLON, + [59642] = 6, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(3577), 1, + anon_sym_LPAREN, + ACTIONS(4105), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3575), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59664] = 3, + ACTIONS(4107), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2747), 6, + ACTIONS(4046), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59842] = 2, + [59680] = 8, + ACTIONS(4074), 1, + anon_sym_LPAREN, + ACTIONS(4076), 1, + anon_sym_LBRACE, + ACTIONS(4080), 1, + anon_sym_LBRACK, + ACTIONS(4109), 1, + anon_sym_RPAREN, + STATE(1456), 1, + aux_sym_macro_definition_repeat1, + STATE(2078), 1, + sym_macro_rule, + STATE(2238), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4071), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [59856] = 2, + [59706] = 7, + ACTIONS(1027), 1, + anon_sym_DOT_DOT, + ACTIONS(3989), 1, + sym_identifier, + ACTIONS(3995), 1, + anon_sym_ref, + ACTIONS(3997), 1, + sym_mutable_specifier, + ACTIONS(4111), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3996), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [59870] = 8, - ACTIONS(4053), 1, + STATE(2116), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [59730] = 6, + ACTIONS(3888), 1, anon_sym_LPAREN, - ACTIONS(4055), 1, + ACTIONS(3908), 1, anon_sym_LBRACE, - ACTIONS(4059), 1, - anon_sym_LBRACK, - ACTIONS(4073), 1, + ACTIONS(4115), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4113), 2, anon_sym_RBRACE, - STATE(1482), 1, - aux_sym_macro_definition_repeat1, - STATE(2126), 1, - sym_macro_rule, - STATE(2264), 1, - sym_token_tree_pattern, + anon_sym_COMMA, + STATE(1749), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [59752] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59896] = 6, - ACTIONS(3745), 1, + ACTIONS(3640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3575), 5, + anon_sym_EQ_GT, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - ACTIONS(4075), 1, - anon_sym_RBRACK, - ACTIONS(4078), 1, + anon_sym_PIPE, + [59768] = 6, + ACTIONS(2772), 1, + anon_sym_PLUS, + ACTIONS(3738), 1, + anon_sym_COLON, + ACTIONS(4117), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2815), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3751), 2, + ACTIONS(3742), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59918] = 8, - ACTIONS(3863), 1, + ACTIONS(4086), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59790] = 3, + ACTIONS(4119), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4046), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [59806] = 8, + ACTIONS(3888), 1, anon_sym_LPAREN, - ACTIONS(3865), 1, - anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(3908), 1, + anon_sym_LBRACE, + ACTIONS(4121), 1, anon_sym_SEMI, - STATE(902), 1, + STATE(920), 1, sym_field_declaration_list, - STATE(1850), 1, + STATE(1943), 1, sym_ordered_field_declaration_list, - STATE(2061), 1, + STATE(2064), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59944] = 2, + [59832] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3996), 7, + ACTIONS(3960), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -103687,8405 +104170,8222 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59958] = 6, - ACTIONS(3863), 1, - anon_sym_LPAREN, - ACTIONS(3865), 1, - anon_sym_LBRACE, - ACTIONS(4084), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4082), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1789), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [59980] = 6, - ACTIONS(3913), 1, - anon_sym_COLON_COLON, - ACTIONS(4086), 1, - anon_sym_LPAREN, - ACTIONS(4090), 1, - anon_sym_EQ, - STATE(1939), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4088), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60002] = 8, - ACTIONS(4053), 1, + [59846] = 8, + ACTIONS(4074), 1, anon_sym_LPAREN, - ACTIONS(4055), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - ACTIONS(4059), 1, + ACTIONS(4080), 1, anon_sym_LBRACK, - ACTIONS(4092), 1, + ACTIONS(4123), 1, anon_sym_RBRACE, - STATE(1488), 1, + STATE(1501), 1, aux_sym_macro_definition_repeat1, - STATE(2018), 1, + STATE(2070), 1, sym_macro_rule, - STATE(2264), 1, + STATE(2238), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60028] = 8, - ACTIONS(3863), 1, + [59872] = 8, + ACTIONS(3888), 1, anon_sym_LPAREN, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3875), 1, + ACTIONS(3908), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(4125), 1, anon_sym_SEMI, - STATE(324), 1, + STATE(860), 1, sym_field_declaration_list, - STATE(1768), 1, + STATE(1984), 1, sym_ordered_field_declaration_list, - STATE(2087), 1, + STATE(2003), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60054] = 8, - ACTIONS(4053), 1, + [59898] = 8, + ACTIONS(4074), 1, anon_sym_LPAREN, - ACTIONS(4055), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - ACTIONS(4059), 1, + ACTIONS(4080), 1, anon_sym_LBRACK, - ACTIONS(4096), 1, + ACTIONS(4127), 1, anon_sym_RPAREN, - STATE(1429), 1, + STATE(1504), 1, aux_sym_macro_definition_repeat1, - STATE(2097), 1, + STATE(2115), 1, sym_macro_rule, - STATE(2264), 1, + STATE(2238), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60080] = 6, - ACTIONS(2815), 1, - anon_sym_PLUS, - ACTIONS(3747), 1, - anon_sym_COLON, - ACTIONS(4098), 1, - anon_sym_COLON_COLON, + [59924] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3751), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4075), 2, - anon_sym_RPAREN, + ACTIONS(3960), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [60102] = 6, - ACTIONS(3643), 1, - anon_sym_COLON_COLON, - ACTIONS(4086), 1, + anon_sym_GT, + [59938] = 8, + ACTIONS(3888), 1, anon_sym_LPAREN, - ACTIONS(4102), 1, + ACTIONS(3890), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4129), 1, + anon_sym_SEMI, + STATE(306), 1, + sym_field_declaration_list, + STATE(1765), 1, + sym_ordered_field_declaration_list, + STATE(2060), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59964] = 7, + ACTIONS(3622), 1, anon_sym_EQ, - STATE(1928), 1, - sym_meta_arguments, + ACTIONS(3624), 1, + anon_sym_COMMA, + ACTIONS(3626), 1, + anon_sym_GT, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(1969), 1, + sym_trait_bounds, + STATE(1975), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59987] = 5, + ACTIONS(4133), 1, + anon_sym_COLON, + ACTIONS(4135), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4100), 3, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4131), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [60124] = 7, - ACTIONS(1017), 1, + [60006] = 6, + ACTIONS(1027), 1, anon_sym_DOT_DOT, - ACTIONS(3972), 1, + ACTIONS(3989), 1, sym_identifier, - ACTIONS(3978), 1, + ACTIONS(3995), 1, anon_sym_ref, - ACTIONS(3980), 1, + ACTIONS(3997), 1, sym_mutable_specifier, - ACTIONS(4104), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2055), 2, + STATE(2116), 2, sym_field_pattern, sym_remaining_field_pattern, - [60148] = 6, - ACTIONS(3895), 1, + [60027] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4137), 1, + anon_sym_SEMI, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4141), 1, + anon_sym_DASH_GT, + STATE(263), 1, + sym_block, + STATE(1974), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60050] = 7, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4143), 1, + anon_sym_SEMI, + ACTIONS(4145), 1, + anon_sym_DASH_GT, + STATE(763), 1, + sym_block, + STATE(1887), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60073] = 7, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4147), 1, + anon_sym_SEMI, + ACTIONS(4149), 1, + anon_sym_DASH_GT, + STATE(904), 1, + sym_block, + STATE(1950), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60096] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_SEMI, + ACTIONS(4153), 1, + anon_sym_DASH_GT, + STATE(318), 1, + sym_block, + STATE(1770), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60119] = 6, + ACTIONS(3417), 1, anon_sym_COLON_COLON, - ACTIONS(4086), 1, - anon_sym_LPAREN, - ACTIONS(4090), 1, - anon_sym_EQ, - STATE(1939), 1, - sym_meta_arguments, + ACTIONS(4155), 1, + anon_sym_COMMA, + ACTIONS(4157), 1, + anon_sym_GT, + STATE(1977), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4088), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2682), 2, + anon_sym_PLUS, + anon_sym_as, + [60140] = 7, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4159), 1, + anon_sym_SEMI, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(945), 1, + sym_block, + STATE(1891), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60163] = 7, + ACTIONS(2506), 1, + anon_sym_PLUS, + ACTIONS(3967), 1, + anon_sym_COLON, + ACTIONS(4155), 1, anon_sym_COMMA, - [60170] = 3, - ACTIONS(4106), 1, + ACTIONS(4157), 1, + anon_sym_GT, + STATE(1977), 1, + aux_sym_type_parameters_repeat1, + STATE(1978), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60186] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(3908), 1, + anon_sym_LBRACE, + STATE(850), 1, + sym_field_declaration_list, + STATE(1705), 1, + sym_type_parameters, + STATE(2086), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60209] = 7, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(859), 1, + sym_declaration_list, + STATE(1686), 1, + sym_trait_bounds, + STATE(2054), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60232] = 7, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4163), 1, + anon_sym_SEMI, + ACTIONS(4165), 1, + anon_sym_DASH_GT, + STATE(901), 1, + sym_block, + STATE(1945), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60255] = 7, + ACTIONS(3467), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4167), 1, sym_identifier, + ACTIONS(4169), 1, + anon_sym_STAR, + STATE(1928), 1, + sym_use_list, + STATE(2352), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4039), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [60186] = 6, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(4086), 1, - anon_sym_LPAREN, - ACTIONS(4090), 1, + [60278] = 7, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(3967), 1, + anon_sym_COLON, + ACTIONS(4171), 1, + anon_sym_SEMI, + ACTIONS(4173), 1, anon_sym_EQ, - STATE(1939), 1, - sym_meta_arguments, + STATE(2292), 1, + sym_trait_bounds, + STATE(2371), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4088), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + [60301] = 7, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(823), 1, + sym_declaration_list, + STATE(1696), 1, + sym_trait_bounds, + STATE(2150), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60324] = 7, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(406), 1, + sym_declaration_list, + STATE(1645), 1, + sym_trait_bounds, + STATE(2007), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60347] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4175), 1, + anon_sym_SEMI, + STATE(260), 1, + sym_block, + STATE(1919), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60370] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(4177), 1, + anon_sym_LBRACE, + STATE(249), 1, + sym_enum_variant_list, + STATE(1714), 1, + sym_type_parameters, + STATE(2124), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60393] = 7, + ACTIONS(3967), 1, + anon_sym_COLON, + ACTIONS(4179), 1, anon_sym_COMMA, - [60208] = 8, - ACTIONS(3863), 1, - anon_sym_LPAREN, - ACTIONS(3865), 1, + ACTIONS(4181), 1, + anon_sym_GT, + STATE(1813), 1, + aux_sym_for_lifetimes_repeat1, + STATE(1977), 1, + aux_sym_type_parameters_repeat1, + STATE(1978), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60416] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4183), 1, + anon_sym_SEMI, + ACTIONS(4185), 1, + anon_sym_DASH_GT, + STATE(347), 1, + sym_block, + STATE(1825), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60439] = 7, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4108), 1, + ACTIONS(4187), 1, anon_sym_SEMI, - STATE(842), 1, - sym_field_declaration_list, - STATE(1966), 1, - sym_ordered_field_declaration_list, - STATE(2013), 1, + ACTIONS(4189), 1, + anon_sym_DASH_GT, + STATE(737), 1, + sym_block, + STATE(1931), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60234] = 8, - ACTIONS(4053), 1, - anon_sym_LPAREN, - ACTIONS(4055), 1, + [60462] = 7, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(4059), 1, - anon_sym_LBRACK, - ACTIONS(4110), 1, - anon_sym_RPAREN, - STATE(1502), 1, - aux_sym_macro_definition_repeat1, - STATE(2117), 1, - sym_macro_rule, - STATE(2264), 1, - sym_token_tree_pattern, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4191), 1, + anon_sym_SEMI, + STATE(809), 1, + sym_block, + STATE(1885), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60260] = 7, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(3972), 1, - sym_identifier, - ACTIONS(3978), 1, - anon_sym_ref, - ACTIONS(3980), 1, - sym_mutable_specifier, - ACTIONS(4112), 1, - anon_sym_RBRACE, + [60485] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4193), 1, + anon_sym_SEMI, + ACTIONS(4195), 1, + anon_sym_DASH_GT, + STATE(363), 1, + sym_block, + STATE(1836), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2055), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [60284] = 8, - ACTIONS(3863), 1, - anon_sym_LPAREN, - ACTIONS(3867), 1, + [60508] = 7, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3875), 1, + ACTIONS(4139), 1, anon_sym_LBRACE, - ACTIONS(4114), 1, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4197), 1, anon_sym_SEMI, - STATE(269), 1, - sym_field_declaration_list, - STATE(1895), 1, - sym_ordered_field_declaration_list, - STATE(2154), 1, + STATE(435), 1, + sym_block, + STATE(1795), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60310] = 6, - ACTIONS(3508), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(4116), 1, + [60531] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(775), 1, + sym_enum_variant_list, + STATE(1694), 1, + sym_type_parameters, + STATE(2001), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60554] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(923), 1, + sym_enum_variant_list, + STATE(1713), 1, + sym_type_parameters, + STATE(2123), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60577] = 5, + ACTIONS(4203), 1, + anon_sym_COLON, + ACTIONS(4205), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60332] = 7, - ACTIONS(3867), 1, + ACTIONS(4201), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60596] = 7, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4207), 1, + anon_sym_SEMI, + ACTIONS(4209), 1, + anon_sym_DASH_GT, + STATE(241), 1, + sym_block, + STATE(1956), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60619] = 7, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4118), 1, + ACTIONS(4211), 1, anon_sym_SEMI, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(291), 1, + ACTIONS(4213), 1, + anon_sym_DASH_GT, + STATE(753), 1, sym_block, - STATE(1860), 1, + STATE(1912), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60355] = 7, - ACTIONS(3867), 1, + [60642] = 7, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4120), 1, + ACTIONS(4139), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4124), 1, + ACTIONS(4215), 1, anon_sym_SEMI, - STATE(259), 1, + ACTIONS(4217), 1, + anon_sym_DASH_GT, + STATE(399), 1, sym_block, STATE(1972), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60378] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - ACTIONS(3958), 1, + [60665] = 6, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(3577), 1, + anon_sym_LPAREN, + ACTIONS(3581), 1, anon_sym_COLON, - STATE(837), 1, - sym_declaration_list, - STATE(1705), 1, - sym_trait_bounds, - STATE(2015), 1, - sym_where_clause, + ACTIONS(4219), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60401] = 7, - ACTIONS(1077), 1, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60686] = 7, + ACTIONS(3890), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4126), 1, - anon_sym_SEMI, - STATE(933), 1, - sym_block, - STATE(1829), 1, + ACTIONS(3894), 1, + anon_sym_LT, + STATE(276), 1, + sym_field_declaration_list, + STATE(1718), 1, + sym_type_parameters, + STATE(2154), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60424] = 5, - ACTIONS(4130), 1, - anon_sym_COLON, - ACTIONS(4132), 1, + [60709] = 4, + ACTIONS(4221), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4128), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60443] = 7, - ACTIONS(3867), 1, + ACTIONS(2682), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [60726] = 7, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3885), 1, + ACTIONS(4139), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(280), 1, - sym_declaration_list, - STATE(1644), 1, - sym_trait_bounds, - STATE(2151), 1, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4223), 1, + anon_sym_SEMI, + STATE(253), 1, + sym_block, + STATE(1930), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60466] = 7, - ACTIONS(3867), 1, + [60749] = 4, + ACTIONS(4135), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2682), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [60766] = 7, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4120), 1, + ACTIONS(4139), 1, anon_sym_LBRACE, - ACTIONS(4134), 1, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4225), 1, anon_sym_SEMI, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - STATE(251), 1, + STATE(334), 1, sym_block, - STATE(1747), 1, + STATE(1854), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60489] = 7, - ACTIONS(3867), 1, + [60789] = 7, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4120), 1, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(3908), 1, anon_sym_LBRACE, - ACTIONS(4138), 1, - anon_sym_SEMI, - ACTIONS(4140), 1, - anon_sym_DASH_GT, - STATE(416), 1, - sym_block, - STATE(1945), 1, + STATE(944), 1, + sym_field_declaration_list, + STATE(1693), 1, + sym_type_parameters, + STATE(2006), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60512] = 6, - ACTIONS(3424), 1, - anon_sym_COLON_COLON, - ACTIONS(4142), 1, + [60812] = 7, + ACTIONS(3622), 1, + anon_sym_EQ, + ACTIONS(3967), 1, + anon_sym_COLON, + ACTIONS(4227), 1, anon_sym_COMMA, - ACTIONS(4144), 1, + ACTIONS(4229), 1, anon_sym_GT, - STATE(1845), 1, + STATE(1965), 1, aux_sym_type_parameters_repeat1, + STATE(1969), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 2, - anon_sym_PLUS, - anon_sym_as, - [60533] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(4146), 1, + [60835] = 7, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(821), 1, - sym_enum_variant_list, - STATE(1722), 1, - sym_type_parameters, - STATE(1998), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(365), 1, + sym_declaration_list, + STATE(1730), 1, + sym_trait_bounds, + STATE(2088), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60556] = 7, - ACTIONS(3865), 1, + [60858] = 7, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4231), 1, + anon_sym_SEMI, + STATE(898), 1, + sym_block, + STATE(1921), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60881] = 7, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3869), 1, + ACTIONS(3894), 1, anon_sym_LT, - STATE(809), 1, - sym_field_declaration_list, - STATE(1723), 1, + ACTIONS(4177), 1, + anon_sym_LBRACE, + STATE(256), 1, + sym_enum_variant_list, + STATE(1657), 1, sym_type_parameters, - STATE(2003), 1, + STATE(2074), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60579] = 7, - ACTIONS(1077), 1, + [60904] = 5, + ACTIONS(4133), 1, + anon_sym_COLON, + ACTIONS(4233), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4131), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60923] = 7, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4148), 1, + ACTIONS(4235), 1, anon_sym_SEMI, - ACTIONS(4150), 1, + ACTIONS(4237), 1, anon_sym_DASH_GT, - STATE(886), 1, + STATE(842), 1, sym_block, - STATE(1943), 1, + STATE(1970), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60602] = 7, - ACTIONS(2432), 1, - anon_sym_PLUS, - ACTIONS(3958), 1, + [60946] = 7, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3967), 1, anon_sym_COLON, - ACTIONS(4142), 1, - anon_sym_COMMA, - ACTIONS(4144), 1, - anon_sym_GT, - STATE(1845), 1, - aux_sym_type_parameters_repeat1, - STATE(1848), 1, + STATE(745), 1, + sym_declaration_list, + STATE(1682), 1, sym_trait_bounds, + STATE(2099), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60625] = 7, - ACTIONS(1077), 1, + [60969] = 7, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4122), 1, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4152), 1, + ACTIONS(4239), 1, anon_sym_SEMI, - STATE(767), 1, + STATE(819), 1, sym_block, - STATE(1778), 1, + STATE(1907), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60648] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(4154), 1, - anon_sym_SEMI, - ACTIONS(4156), 1, - anon_sym_DASH_GT, - STATE(335), 1, - sym_block, - STATE(1759), 1, - sym_where_clause, + [60992] = 4, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(4241), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3800), 4, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_COMMA, + anon_sym_PIPE, + [61009] = 4, + ACTIONS(3589), 1, + anon_sym_COLON_COLON, + ACTIONS(3802), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60671] = 4, - ACTIONS(4132), 1, + ACTIONS(3800), 4, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_COMMA, + anon_sym_PIPE, + [61026] = 4, + ACTIONS(4233), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2689), 3, + ACTIONS(2682), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [60688] = 7, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3958), 1, - anon_sym_COLON, - ACTIONS(4158), 1, - anon_sym_COMMA, - ACTIONS(4160), 1, - anon_sym_GT, - STATE(1839), 1, - sym_trait_bounds, - STATE(1956), 1, - aux_sym_type_parameters_repeat1, + [61043] = 7, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4243), 1, + anon_sym_SEMI, + STATE(878), 1, + sym_block, + STATE(1877), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60711] = 7, - ACTIONS(1077), 1, - anon_sym_LBRACE, - ACTIONS(3867), 1, + [61066] = 7, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4162), 1, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4245), 1, anon_sym_SEMI, - ACTIONS(4164), 1, - anon_sym_DASH_GT, - STATE(783), 1, + STATE(441), 1, sym_block, - STATE(1917), 1, + STATE(1782), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60734] = 7, - ACTIONS(3865), 1, + [61089] = 7, + ACTIONS(3890), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3869), 1, + ACTIONS(3894), 1, anon_sym_LT, - STATE(736), 1, + STATE(364), 1, sym_field_declaration_list, - STATE(1670), 1, + STATE(1667), 1, sym_type_parameters, - STATE(2026), 1, + STATE(2144), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60757] = 7, - ACTIONS(3869), 1, + [61112] = 7, + ACTIONS(3894), 1, anon_sym_LT, - ACTIONS(3958), 1, + ACTIONS(3967), 1, anon_sym_COLON, - ACTIONS(4166), 1, + ACTIONS(4247), 1, anon_sym_SEMI, - ACTIONS(4168), 1, + ACTIONS(4249), 1, anon_sym_EQ, - STATE(2368), 1, + STATE(2211), 1, sym_type_parameters, - STATE(2375), 1, + STATE(2212), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60780] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4120), 1, + [61135] = 4, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(4251), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3800), 4, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_COMMA, + anon_sym_PIPE, + [61152] = 4, + ACTIONS(3756), 1, + anon_sym_COLON, + ACTIONS(4241), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3754), 4, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_COMMA, + anon_sym_PIPE, + [61169] = 4, + ACTIONS(3589), 1, + anon_sym_COLON_COLON, + ACTIONS(3756), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3754), 4, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_COMMA, + anon_sym_PIPE, + [61186] = 7, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4170), 1, + ACTIONS(4253), 1, anon_sym_SEMI, - STATE(299), 1, + STATE(847), 1, sym_block, - STATE(1871), 1, + STATE(1882), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61209] = 4, + ACTIONS(3756), 1, + anon_sym_COLON, + ACTIONS(4251), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3754), 4, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_COMMA, + anon_sym_PIPE, + [61226] = 7, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(305), 1, + sym_declaration_list, + STATE(1701), 1, + sym_trait_bounds, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60803] = 7, - ACTIONS(3867), 1, + [61249] = 7, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4120), 1, + ACTIONS(4139), 1, anon_sym_LBRACE, - ACTIONS(4172), 1, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4255), 1, anon_sym_SEMI, - ACTIONS(4174), 1, - anon_sym_DASH_GT, - STATE(443), 1, + STATE(416), 1, sym_block, - STATE(1961), 1, + STATE(1876), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60826] = 6, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, - ACTIONS(3972), 1, + [61272] = 7, + ACTIONS(3467), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4167), 1, sym_identifier, - ACTIONS(3978), 1, - anon_sym_ref, - ACTIONS(3980), 1, - sym_mutable_specifier, + ACTIONS(4169), 1, + anon_sym_STAR, + STATE(1928), 1, + sym_use_list, + STATE(2341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2055), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [60847] = 4, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, + [61295] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3779), 4, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(4257), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - [60864] = 7, - ACTIONS(3958), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + [61307] = 4, + ACTIONS(4261), 1, + anon_sym_as, + ACTIONS(4263), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4259), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4180), 1, - anon_sym_GT, - STATE(1815), 1, - aux_sym_for_lifetimes_repeat1, - STATE(1845), 1, - aux_sym_type_parameters_repeat1, - STATE(1848), 1, - sym_trait_bounds, + [61323] = 4, + ACTIONS(4261), 1, + anon_sym_as, + ACTIONS(4265), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60887] = 6, - ACTIONS(3508), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_LPAREN, - ACTIONS(3572), 1, - anon_sym_COLON, - ACTIONS(4182), 1, + ACTIONS(4259), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61339] = 4, + ACTIONS(4135), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60908] = 4, - ACTIONS(3580), 1, + ACTIONS(4267), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61355] = 4, + ACTIONS(4271), 1, + anon_sym_as, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(3781), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3779), 4, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(4269), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [60925] = 4, - ACTIONS(3781), 1, - anon_sym_COLON, - ACTIONS(4184), 1, - anon_sym_COLON_COLON, + [61371] = 6, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(418), 1, + sym_declaration_list, + STATE(2073), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3779), 4, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_COMMA, - anon_sym_PIPE, - [60942] = 4, - ACTIONS(4186), 1, + [61391] = 4, + ACTIONS(4233), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2689), 3, + ACTIONS(4201), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [60959] = 5, - ACTIONS(4130), 1, + [61407] = 3, + ACTIONS(3698), 1, anon_sym_COLON, - ACTIONS(4186), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4128), 2, + ACTIONS(2796), 4, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [60978] = 4, - ACTIONS(3707), 1, + anon_sym_DASH_GT, + [61421] = 5, + ACTIONS(3622), 1, + anon_sym_EQ, + ACTIONS(3967), 1, anon_sym_COLON, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, + STATE(1969), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3705), 4, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(4275), 2, anon_sym_COMMA, - anon_sym_PIPE, - [60995] = 4, - ACTIONS(3580), 1, + anon_sym_GT, + [61439] = 4, + ACTIONS(4135), 1, anon_sym_COLON_COLON, - ACTIONS(3707), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4201), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61455] = 4, + ACTIONS(3698), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3705), 4, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(2796), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4277), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [61012] = 7, - ACTIONS(1077), 1, + [61471] = 6, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4188), 1, - anon_sym_SEMI, - ACTIONS(4190), 1, - anon_sym_DASH_GT, - STATE(856), 1, - sym_block, - STATE(1809), 1, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(951), 1, + sym_declaration_list, + STATE(2108), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61035] = 7, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3588), 1, - anon_sym_COMMA, - ACTIONS(3590), 1, - anon_sym_GT, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(1839), 1, - sym_trait_bounds, - STATE(1841), 1, - aux_sym_type_parameters_repeat1, + [61491] = 4, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, + ACTIONS(3965), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61058] = 7, - ACTIONS(3867), 1, + ACTIONS(2682), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3891), 1, + [61507] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(807), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(304), 1, sym_declaration_list, - STATE(1695), 1, - sym_trait_bounds, - STATE(2096), 1, + STATE(2159), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61081] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4120), 1, + [61527] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4192), 1, - anon_sym_SEMI, - STATE(273), 1, - sym_block, - STATE(1818), 1, + STATE(327), 1, + sym_declaration_list, + STATE(2129), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61104] = 7, - ACTIONS(1077), 1, + [61547] = 4, + ACTIONS(4233), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4267), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61563] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4194), 1, - anon_sym_SEMI, - ACTIONS(4196), 1, - anon_sym_DASH_GT, - STATE(805), 1, - sym_block, - STATE(1792), 1, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(303), 1, + sym_declaration_list, + STATE(2139), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61127] = 7, - ACTIONS(3458), 1, + [61583] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3512), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(243), 1, + sym_declaration_list, + STATE(2152), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61603] = 4, + ACTIONS(4261), 1, + anon_sym_as, + ACTIONS(4280), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4259), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61619] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4282), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [61631] = 6, + ACTIONS(2656), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, + anon_sym_COLON_COLON, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(4198), 1, - sym_identifier, - ACTIONS(4200), 1, - anon_sym_STAR, - STATE(1927), 1, - sym_use_list, - STATE(2204), 1, + STATE(889), 1, + sym_parameters, + STATE(1259), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61150] = 7, - ACTIONS(3867), 1, + [61651] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4010), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [61663] = 6, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4120), 1, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(793), 1, + sym_declaration_list, + STATE(1992), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61683] = 6, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(4202), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(807), 1, + sym_declaration_list, + STATE(2036), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61703] = 4, + ACTIONS(3698), 1, + anon_sym_COMMA, + ACTIONS(4277), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2796), 3, anon_sym_SEMI, - ACTIONS(4204), 1, + anon_sym_PLUS, anon_sym_DASH_GT, - STATE(389), 1, - sym_block, - STATE(1904), 1, + [61719] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4284), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [61731] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4286), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [61743] = 6, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(382), 1, + sym_declaration_list, + STATE(2019), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61173] = 4, - ACTIONS(3707), 1, - anon_sym_COLON, - ACTIONS(4184), 1, + [61763] = 4, + ACTIONS(3605), 1, anon_sym_COLON_COLON, + ACTIONS(4034), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3705), 4, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_COMMA, - anon_sym_PIPE, - [61190] = 7, - ACTIONS(1077), 1, + ACTIONS(2682), 3, anon_sym_LBRACE, - ACTIONS(3867), 1, + anon_sym_PLUS, + anon_sym_where, + [61779] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4288), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(4122), 1, + anon_sym_EQ, + anon_sym_COMMA, + [61791] = 4, + ACTIONS(3792), 1, + anon_sym_COMMA, + ACTIONS(4290), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2842), 3, + anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(4206), 1, + anon_sym_DASH_GT, + [61807] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4293), 5, anon_sym_SEMI, - STATE(748), 1, - sym_block, - STATE(1762), 1, - sym_where_clause, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [61819] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4295), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [61831] = 6, + ACTIONS(3967), 1, + anon_sym_COLON, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_GT, + STATE(1967), 1, + aux_sym_type_parameters_repeat1, + STATE(1978), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61851] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4301), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [61863] = 4, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, + ACTIONS(4024), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61213] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(4146), 1, + ACTIONS(2682), 3, anon_sym_LBRACE, - STATE(909), 1, - sym_enum_variant_list, - STATE(1653), 1, - sym_type_parameters, - STATE(2047), 1, - sym_where_clause, + anon_sym_PLUS, + anon_sym_where, + [61879] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61236] = 7, - ACTIONS(3867), 1, + ACTIONS(4303), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3891), 1, + anon_sym_EQ, + anon_sym_COMMA, + [61891] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(867), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(366), 1, sym_declaration_list, - STATE(1665), 1, - sym_trait_bounds, - STATE(2051), 1, + STATE(2055), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61259] = 7, - ACTIONS(1077), 1, + [61911] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4208), 1, - anon_sym_SEMI, - ACTIONS(4210), 1, - anon_sym_DASH_GT, - STATE(890), 1, - sym_block, - STATE(1855), 1, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(380), 1, + sym_declaration_list, + STATE(2101), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61282] = 5, - ACTIONS(4214), 1, - anon_sym_COLON, - ACTIONS(4216), 1, + [61931] = 4, + ACTIONS(3605), 1, anon_sym_COLON_COLON, + ACTIONS(4040), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4212), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61301] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(4218), 1, + ACTIONS(2682), 3, anon_sym_LBRACE, - STATE(256), 1, - sym_enum_variant_list, - STATE(1707), 1, - sym_type_parameters, - STATE(2153), 1, - sym_where_clause, + anon_sym_PLUS, + anon_sym_where, + [61947] = 6, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, + anon_sym_COLON_COLON, + ACTIONS(3521), 1, + anon_sym_LT2, + STATE(1259), 1, + sym_type_arguments, + STATE(1277), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61324] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + [61967] = 4, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(425), 1, - sym_declaration_list, - STATE(1669), 1, - sym_trait_bounds, - STATE(2027), 1, - sym_where_clause, + ACTIONS(4305), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61347] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + STATE(1042), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [61983] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(365), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(290), 1, sym_declaration_list, - STATE(1727), 1, - sym_trait_bounds, - STATE(2124), 1, + STATE(2046), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61370] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4220), 1, - anon_sym_SEMI, - STATE(368), 1, - sym_block, - STATE(1897), 1, - sym_where_clause, + [62003] = 4, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, + ACTIONS(4038), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61393] = 7, - ACTIONS(1077), 1, + ACTIONS(2682), 3, anon_sym_LBRACE, - ACTIONS(3867), 1, + anon_sym_PLUS, + anon_sym_where, + [62019] = 6, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4122), 1, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4222), 1, - anon_sym_SEMI, - STATE(847), 1, - sym_block, - STATE(1764), 1, + STATE(749), 1, + sym_declaration_list, + STATE(2039), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61416] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(4224), 1, - anon_sym_SEMI, - ACTIONS(4226), 1, - anon_sym_DASH_GT, - STATE(430), 1, - sym_block, - STATE(1925), 1, - sym_where_clause, + [62039] = 4, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, + ACTIONS(3999), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61439] = 7, - ACTIONS(3867), 1, + ACTIONS(2682), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(3875), 1, + [62055] = 6, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(357), 1, - sym_field_declaration_list, - STATE(1716), 1, - sym_type_parameters, - STATE(2133), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(760), 1, + sym_declaration_list, + STATE(2051), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61462] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(3875), 1, + [62075] = 4, + ACTIONS(907), 1, anon_sym_LBRACE, - STATE(362), 1, - sym_field_declaration_list, - STATE(1651), 1, - sym_type_parameters, - STATE(2037), 1, - sym_where_clause, + ACTIONS(4307), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61485] = 7, - ACTIONS(3458), 1, + STATE(230), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [62091] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4198), 1, - sym_identifier, - ACTIONS(4200), 1, - anon_sym_STAR, - STATE(1927), 1, - sym_use_list, - STATE(2198), 1, - sym_type_arguments, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(428), 1, + sym_declaration_list, + STATE(2120), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61508] = 7, - ACTIONS(1077), 1, + [62111] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4122), 1, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4228), 1, - anon_sym_SEMI, - STATE(935), 1, - sym_block, - STATE(1766), 1, + STATE(400), 1, + sym_declaration_list, + STATE(2002), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61531] = 7, - ACTIONS(1077), 1, + [62131] = 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4122), 1, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4230), 1, - anon_sym_SEMI, - STATE(795), 1, - sym_block, - STATE(1785), 1, + STATE(397), 1, + sym_declaration_list, + STATE(2121), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61554] = 7, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(4218), 1, - anon_sym_LBRACE, - STATE(333), 1, - sym_enum_variant_list, - STATE(1709), 1, - sym_type_parameters, - STATE(2137), 1, - sym_where_clause, + [62151] = 4, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, + ACTIONS(3985), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61577] = 7, - ACTIONS(1077), 1, + ACTIONS(2682), 3, anon_sym_LBRACE, - ACTIONS(3867), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4232), 1, - anon_sym_SEMI, - ACTIONS(4234), 1, - anon_sym_DASH_GT, - STATE(752), 1, - sym_block, - STATE(1773), 1, - sym_where_clause, + [62167] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61600] = 7, - ACTIONS(3867), 1, + ACTIONS(4309), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(4120), 1, + anon_sym_EQ, + anon_sym_COMMA, + [62179] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4236), 1, - anon_sym_SEMI, - STATE(439), 1, + ACTIONS(4311), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(47), 3, + sym_if_expression, + sym_if_let_expression, sym_block, - STATE(1944), 1, + [62195] = 6, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(896), 1, + sym_declaration_list, + STATE(2027), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61623] = 4, - ACTIONS(4238), 1, + [62215] = 4, + ACTIONS(3605), 1, anon_sym_COLON_COLON, + ACTIONS(3973), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2689), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2682), 3, + anon_sym_LBRACE, anon_sym_PLUS, - [61640] = 7, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(3958), 1, - anon_sym_COLON, - ACTIONS(4240), 1, - anon_sym_SEMI, - ACTIONS(4242), 1, - anon_sym_EQ, - STATE(2305), 1, - sym_trait_bounds, - STATE(2370), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61663] = 6, - ACTIONS(3867), 1, anon_sym_where, - ACTIONS(3891), 1, + [62231] = 6, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, anon_sym_PLUS, - STATE(777), 1, + STATE(784), 1, sym_declaration_list, - STATE(2109), 1, + STATE(2082), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61683] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, + [62251] = 6, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, anon_sym_PLUS, - STATE(958), 1, + STATE(787), 1, sym_declaration_list, - STATE(2080), 1, + STATE(2083), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61703] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + [62271] = 6, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, anon_sym_PLUS, - STATE(261), 1, + STATE(791), 1, sym_declaration_list, - STATE(2158), 1, + STATE(2089), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61723] = 6, - ACTIONS(3958), 1, + [62291] = 3, + ACTIONS(3792), 1, anon_sym_COLON, - ACTIONS(4142), 1, - anon_sym_COMMA, - ACTIONS(4144), 1, - anon_sym_GT, - STATE(1845), 1, - aux_sym_type_parameters_repeat1, - STATE(1848), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61743] = 4, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - ACTIONS(3966), 1, - anon_sym_for, + ACTIONS(2842), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [62305] = 4, + ACTIONS(3792), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, - anon_sym_LBRACE, + ACTIONS(2842), 2, anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4290), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62321] = 6, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, anon_sym_where, - [61759] = 2, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(788), 1, + sym_declaration_list, + STATE(2092), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62341] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4244), 5, + ACTIONS(4313), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61771] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + [62353] = 6, + ACTIONS(3519), 1, + anon_sym_COLON_COLON, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(3620), 1, + anon_sym_COLON, + STATE(1259), 1, + sym_type_arguments, + STATE(1845), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62373] = 6, + ACTIONS(3967), 1, + anon_sym_COLON, + ACTIONS(4155), 1, + anon_sym_COMMA, + ACTIONS(4157), 1, + anon_sym_GT, + STATE(1977), 1, + aux_sym_type_parameters_repeat1, + STATE(1978), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62393] = 6, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, anon_sym_PLUS, - STATE(308), 1, + STATE(916), 1, sym_declaration_list, - STATE(2039), 1, + STATE(2112), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61791] = 2, + [62413] = 6, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(913), 1, + sym_declaration_list, + STATE(2111), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3946), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + [62433] = 5, + ACTIONS(3880), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [61803] = 6, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(325), 1, + STATE(354), 1, sym_declaration_list, - STATE(1996), 1, + STATE(2156), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61823] = 6, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3584), 1, - anon_sym_COLON, - STATE(1263), 1, - sym_type_arguments, - STATE(1933), 1, - sym_trait_bounds, + [62450] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61843] = 4, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - ACTIONS(3970), 1, - anon_sym_for, + ACTIONS(4315), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [62463] = 4, + ACTIONS(4317), 1, + anon_sym_DQUOTE, + STATE(1654), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [61859] = 6, - ACTIONS(3506), 1, + ACTIONS(4319), 2, + sym__string_content, + sym_escape_sequence, + [62478] = 5, + ACTIONS(3515), 1, anon_sym_LPAREN, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, - anon_sym_LT2, - STATE(1263), 1, - sym_type_arguments, - STATE(1288), 1, + ACTIONS(3894), 1, + anon_sym_LT, + STATE(1545), 1, sym_parameters, + STATE(2166), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61879] = 2, + [62495] = 3, + ACTIONS(4321), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4246), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61891] = 2, + ACTIONS(4323), 3, + sym_self, + sym_super, + sym_crate, + [62508] = 4, + ACTIONS(4133), 1, + anon_sym_COLON, + ACTIONS(4205), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4248), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61903] = 2, + ACTIONS(3640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62523] = 4, + ACTIONS(2958), 1, + anon_sym_PLUS, + ACTIONS(3720), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4250), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4325), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [61915] = 4, - ACTIONS(4254), 1, - anon_sym_as, - ACTIONS(4256), 1, - anon_sym_COLON_COLON, + [62538] = 5, + ACTIONS(4328), 1, + anon_sym_COLON, + ACTIONS(4330), 1, + anon_sym_COMMA, + ACTIONS(4332), 1, + anon_sym_PIPE, + STATE(1862), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4252), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [62555] = 5, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(4334), 1, + anon_sym_RPAREN, + ACTIONS(4337), 1, anon_sym_COMMA, - [61931] = 4, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, + STATE(1838), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4212), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61947] = 4, - ACTIONS(4260), 1, - anon_sym_as, - ACTIONS(4262), 1, - anon_sym_COLON_COLON, + [62572] = 4, + ACTIONS(4340), 1, + anon_sym_DQUOTE, + STATE(1674), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4258), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61963] = 6, - ACTIONS(3867), 1, + ACTIONS(4342), 2, + sym__string_content, + sym_escape_sequence, + [62587] = 5, + ACTIONS(4344), 1, + anon_sym_LPAREN, + ACTIONS(4346), 1, + anon_sym_LBRACE, + ACTIONS(4348), 1, + anon_sym_LBRACK, + STATE(36), 1, + sym_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62604] = 5, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3894), 1, + anon_sym_LT, + STATE(1546), 1, + sym_parameters, + STATE(2071), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62621] = 5, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3891), 1, + ACTIONS(4177), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(848), 1, - sym_declaration_list, - STATE(2048), 1, + STATE(271), 1, + sym_enum_variant_list, + STATE(2032), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61983] = 4, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, + [62638] = 5, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3894), 1, + anon_sym_LT, + STATE(1529), 1, + sym_parameters, + STATE(2084), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4264), 2, + [62655] = 5, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4350), 1, anon_sym_RPAREN, + ACTIONS(4352), 1, anon_sym_COMMA, - [61999] = 4, - ACTIONS(3759), 1, + STATE(1986), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62672] = 5, + ACTIONS(4155), 1, anon_sym_COMMA, - ACTIONS(4266), 1, - anon_sym_RBRACK, + ACTIONS(4157), 1, + anon_sym_GT, + ACTIONS(4354), 1, + anon_sym_EQ, + STATE(1977), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2827), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [62015] = 4, - ACTIONS(4260), 1, - anon_sym_as, - ACTIONS(4269), 1, - anon_sym_COLON_COLON, + [62689] = 3, + ACTIONS(4356), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4258), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62031] = 4, - ACTIONS(4260), 1, - anon_sym_as, - ACTIONS(4271), 1, - anon_sym_COLON_COLON, + ACTIONS(4358), 3, + sym_self, + sym_super, + sym_crate, + [62702] = 5, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3521), 1, + anon_sym_LT2, + STATE(1272), 1, + sym_type_arguments, + STATE(1278), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4258), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [62719] = 4, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(1978), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4360), 2, anon_sym_COMMA, - [62047] = 4, - ACTIONS(801), 1, - anon_sym_LBRACE, - ACTIONS(4273), 1, - anon_sym_if, + anon_sym_GT, + [62734] = 5, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3894), 1, + anon_sym_LT, + STATE(1522), 1, + sym_parameters, + STATE(2118), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(221), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [62063] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + [62751] = 5, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(252), 1, + ACTIONS(3892), 1, + anon_sym_where, + STATE(309), 1, sym_declaration_list, - STATE(2043), 1, + STATE(2038), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62083] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, + [62768] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1198), 1, + sym_line_comment, + ACTIONS(4363), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4365), 3, anon_sym_PLUS, - STATE(755), 1, - sym_declaration_list, - STATE(2036), 1, + anon_sym_STAR, + anon_sym_QMARK, + [62783] = 5, + ACTIONS(3890), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + STATE(300), 1, + sym_field_declaration_list, + STATE(2149), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62103] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, + [62800] = 5, + ACTIONS(3467), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(762), 1, - sym_declaration_list, - STATE(2033), 1, - sym_where_clause, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4369), 1, + anon_sym_STAR, + STATE(1934), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62817] = 5, + ACTIONS(3467), 1, + anon_sym_LBRACE, + ACTIONS(4167), 1, + sym_identifier, + ACTIONS(4169), 1, + anon_sym_STAR, + STATE(1928), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62123] = 2, + [62834] = 4, + ACTIONS(4203), 1, + anon_sym_COLON, + ACTIONS(4205), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4275), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62849] = 3, + ACTIONS(4371), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3762), 3, + anon_sym_RPAREN, anon_sym_COMMA, - [62135] = 4, - ACTIONS(295), 1, + anon_sym_PIPE, + [62862] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1198), 1, + sym_line_comment, + ACTIONS(4373), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4375), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62877] = 5, + ACTIONS(4377), 1, + anon_sym_LPAREN, + ACTIONS(4379), 1, anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_if, + ACTIONS(4381), 1, + anon_sym_LBRACK, + STATE(883), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(982), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [62151] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(253), 1, - sym_declaration_list, - STATE(2044), 1, - sym_where_clause, + [62894] = 4, + ACTIONS(4383), 1, + anon_sym_DQUOTE, + STATE(1674), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62171] = 4, - ACTIONS(3673), 1, - anon_sym_COMMA, - ACTIONS(4279), 1, - anon_sym_RBRACK, + ACTIONS(4385), 2, + sym__string_content, + sym_escape_sequence, + [62909] = 4, + ACTIONS(2288), 1, + anon_sym_POUND, + ACTIONS(4388), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1065), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [62924] = 5, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3894), 1, + anon_sym_LT, + STATE(1523), 1, + sym_parameters, + STATE(2122), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2775), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [62187] = 4, - ACTIONS(3673), 1, - anon_sym_COLON, + [62941] = 5, + ACTIONS(4390), 1, + anon_sym_LPAREN, + ACTIONS(4392), 1, + anon_sym_LBRACE, + ACTIONS(4394), 1, + anon_sym_LBRACK, + STATE(1295), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2775), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4279), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62203] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4282), 1, - anon_sym_if, + [62958] = 4, + ACTIONS(4396), 1, + anon_sym_DQUOTE, + STATE(1674), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(54), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [62219] = 5, - ACTIONS(3586), 1, - anon_sym_EQ, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(1839), 1, - sym_trait_bounds, + ACTIONS(4342), 2, + sym__string_content, + sym_escape_sequence, + [62973] = 4, + ACTIONS(4398), 1, + anon_sym_DQUOTE, + STATE(1678), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4284), 2, + ACTIONS(4400), 2, + sym__string_content, + sym_escape_sequence, + [62988] = 4, + ACTIONS(4404), 1, anon_sym_COMMA, - anon_sym_GT, - [62237] = 3, - ACTIONS(3673), 1, - anon_sym_COLON, + STATE(1721), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2775), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [62251] = 4, - ACTIONS(4186), 1, - anon_sym_COLON_COLON, + ACTIONS(4402), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [63003] = 5, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(1272), 1, + sym_type_arguments, + STATE(1842), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4264), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62267] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, + [63020] = 5, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(778), 1, + ACTIONS(3892), 1, + anon_sym_where, + STATE(755), 1, sym_declaration_list, - STATE(2108), 1, + STATE(2117), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62287] = 6, - ACTIONS(3958), 1, + [63037] = 5, + ACTIONS(3575), 1, anon_sym_COLON, - ACTIONS(4286), 1, + ACTIONS(4406), 1, + anon_sym_RPAREN, + ACTIONS(4408), 1, anon_sym_COMMA, - ACTIONS(4288), 1, - anon_sym_GT, - STATE(1848), 1, - sym_trait_bounds, - STATE(1958), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62307] = 3, - ACTIONS(3759), 1, - anon_sym_COLON, + STATE(1838), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2827), 4, - anon_sym_RPAREN, + [63054] = 5, + ACTIONS(4161), 1, anon_sym_PLUS, + ACTIONS(4406), 1, + anon_sym_RPAREN, + ACTIONS(4408), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [62321] = 4, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - ACTIONS(3986), 1, - anon_sym_for, + STATE(1838), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, + [63071] = 5, + ACTIONS(3884), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3892), 1, anon_sym_where, - [62337] = 4, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - ACTIONS(4015), 1, - anon_sym_for, + STATE(739), 1, + sym_declaration_list, + STATE(2098), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, + [63088] = 5, + ACTIONS(3884), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3892), 1, anon_sym_where, - [62353] = 2, + STATE(779), 1, + sym_declaration_list, + STATE(2093), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + [63105] = 5, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4410), 1, anon_sym_COMMA, - [62365] = 2, + ACTIONS(4412), 1, + anon_sym_GT, + STATE(1818), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4292), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [62377] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, + [63122] = 5, + ACTIONS(2506), 1, anon_sym_PLUS, - STATE(420), 1, - sym_declaration_list, - STATE(2119), 1, - sym_where_clause, + ACTIONS(4410), 1, + anon_sym_COMMA, + ACTIONS(4412), 1, + anon_sym_GT, + STATE(1818), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62397] = 2, + [63139] = 5, + ACTIONS(747), 1, + anon_sym_RPAREN, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4414), 1, + anon_sym_COMMA, + STATE(1926), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4294), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + [63156] = 5, + ACTIONS(747), 1, + anon_sym_RPAREN, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(4414), 1, anon_sym_COMMA, - [62409] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(939), 1, - sym_declaration_list, - STATE(2032), 1, - sym_where_clause, + STATE(1926), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62429] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(409), 1, - sym_declaration_list, - STATE(2116), 1, - sym_where_clause, - ACTIONS(3), 2, + [63173] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1198), 1, sym_line_comment, - [62449] = 2, + ACTIONS(4416), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4418), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63188] = 5, + ACTIONS(4420), 1, + anon_sym_EQ_GT, + ACTIONS(4422), 1, + anon_sym_if, + ACTIONS(4424), 1, + anon_sym_PIPE, + STATE(1731), 1, + aux_sym_match_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4296), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [62461] = 6, - ACTIONS(3867), 1, + [63205] = 5, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3891), 1, + ACTIONS(3908), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(830), 1, - sym_declaration_list, - STATE(1989), 1, + STATE(927), 1, + sym_field_declaration_list, + STATE(2066), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62481] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4298), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [62493] = 6, - ACTIONS(3867), 1, + [63222] = 5, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3885), 1, + ACTIONS(4199), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(323), 1, - sym_declaration_list, - STATE(1991), 1, + STATE(906), 1, + sym_enum_variant_list, + STATE(2061), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62513] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, + [63239] = 5, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(872), 1, + ACTIONS(3892), 1, + anon_sym_where, + STATE(857), 1, sym_declaration_list, - STATE(2089), 1, + STATE(2053), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62533] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, + [63256] = 5, + ACTIONS(3884), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(875), 1, + ACTIONS(3892), 1, + anon_sym_where, + STATE(800), 1, sym_declaration_list, - STATE(2086), 1, + STATE(2048), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62553] = 4, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - ACTIONS(3962), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2689), 3, - anon_sym_LBRACE, + [63273] = 5, + ACTIONS(4161), 1, anon_sym_PLUS, - anon_sym_where, - [62569] = 4, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - ACTIONS(3939), 1, - anon_sym_for, + ACTIONS(4426), 1, + anon_sym_RPAREN, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(1797), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, - anon_sym_LBRACE, + [63290] = 5, + ACTIONS(2506), 1, anon_sym_PLUS, - anon_sym_where, - [62585] = 2, + ACTIONS(4430), 1, + anon_sym_COMMA, + ACTIONS(4432), 1, + anon_sym_GT, + STATE(1966), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4300), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [62597] = 4, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - ACTIONS(4001), 1, - anon_sym_for, - ACTIONS(3), 2, + [63307] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1198), 1, sym_line_comment, - ACTIONS(2689), 3, - anon_sym_LBRACE, + ACTIONS(4434), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4436), 3, anon_sym_PLUS, - anon_sym_where, - [62613] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, + anon_sym_STAR, + anon_sym_QMARK, + [63322] = 5, + ACTIONS(4161), 1, anon_sym_PLUS, - STATE(322), 1, - sym_declaration_list, - STATE(1993), 1, - sym_where_clause, + ACTIONS(4430), 1, + anon_sym_COMMA, + ACTIONS(4432), 1, + anon_sym_GT, + STATE(1966), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62633] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + [63339] = 5, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(371), 1, + ACTIONS(3892), 1, + anon_sym_where, + STATE(391), 1, sym_declaration_list, - STATE(2107), 1, + STATE(2114), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62653] = 4, - ACTIONS(4186), 1, - anon_sym_COLON_COLON, + [63356] = 5, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4438), 1, + anon_sym_RPAREN, + ACTIONS(4440), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4212), 2, + [63373] = 5, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(4438), 1, anon_sym_RPAREN, + ACTIONS(4440), 1, anon_sym_COMMA, - [62669] = 4, - ACTIONS(3759), 1, - anon_sym_COLON, + STATE(1976), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2827), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4266), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62685] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + [63390] = 5, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(298), 1, + ACTIONS(3892), 1, + anon_sym_where, + STATE(369), 1, sym_declaration_list, - STATE(2146), 1, + STATE(2096), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62705] = 4, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - ACTIONS(3964), 1, - anon_sym_for, + [63407] = 5, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(3908), 1, + anon_sym_LBRACE, + STATE(795), 1, + sym_field_declaration_list, + STATE(1990), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2689), 3, + [63424] = 5, + ACTIONS(3884), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [62721] = 6, - ACTIONS(3867), 1, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(866), 1, + STATE(845), 1, sym_declaration_list, - STATE(2092), 1, + STATE(1995), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62741] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, + [63441] = 3, + ACTIONS(4161), 1, anon_sym_PLUS, - STATE(923), 1, - sym_declaration_list, - STATE(2079), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62761] = 6, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(4122), 1, + ACTIONS(4442), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [63454] = 3, + ACTIONS(4161), 1, anon_sym_PLUS, - STATE(314), 1, - sym_declaration_list, - STATE(2038), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62781] = 6, - ACTIONS(2647), 1, + ACTIONS(4444), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [63467] = 5, + ACTIONS(2656), 1, anon_sym_LPAREN, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, - ACTIONS(3512), 1, + ACTIONS(3521), 1, anon_sym_LT2, - STATE(859), 1, + STATE(880), 1, sym_parameters, - STATE(1263), 1, + STATE(1272), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62801] = 5, - ACTIONS(987), 1, + [63484] = 5, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4446), 1, anon_sym_RPAREN, - ACTIONS(3566), 1, - anon_sym_COLON, - ACTIONS(4302), 1, + ACTIONS(4448), 1, anon_sym_COMMA, - STATE(1835), 1, - aux_sym_parameters_repeat1, + STATE(1902), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63501] = 5, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_GT, + ACTIONS(4354), 1, + anon_sym_EQ, + STATE(1967), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62818] = 5, - ACTIONS(4122), 1, + [63518] = 5, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4304), 1, + ACTIONS(4450), 1, anon_sym_RPAREN, - ACTIONS(4306), 1, + ACTIONS(4452), 1, anon_sym_COMMA, - STATE(1929), 1, - aux_sym_parameters_repeat1, + STATE(1963), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62835] = 5, - ACTIONS(3867), 1, + [63535] = 5, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3885), 1, + ACTIONS(4199), 1, anon_sym_LBRACE, - STATE(375), 1, - sym_declaration_list, - STATE(2115), 1, + STATE(914), 1, + sym_enum_variant_list, + STATE(2063), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62852] = 4, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(1848), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4308), 2, - anon_sym_COMMA, - anon_sym_GT, - [62867] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3512), 1, - anon_sym_LT2, - STATE(858), 1, - sym_parameters, - STATE(1266), 1, - sym_type_arguments, + [63552] = 5, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4177), 1, + anon_sym_LBRACE, + STATE(315), 1, + sym_enum_variant_list, + STATE(2068), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62884] = 5, - ACTIONS(995), 1, - anon_sym_RPAREN, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4311), 1, - anon_sym_COMMA, - STATE(1816), 1, - aux_sym_parameters_repeat1, + [63569] = 4, + ACTIONS(4456), 1, + anon_sym_PIPE, + STATE(1715), 1, + aux_sym_match_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62901] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1186), 1, - sym_line_comment, - ACTIONS(4313), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4315), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62916] = 5, - ACTIONS(4317), 1, + ACTIONS(4454), 2, + anon_sym_EQ_GT, + anon_sym_if, + [63584] = 5, + ACTIONS(4459), 1, anon_sym_LPAREN, - ACTIONS(4319), 1, + ACTIONS(4461), 1, anon_sym_LBRACE, - ACTIONS(4321), 1, + ACTIONS(4463), 1, anon_sym_LBRACK, - STATE(53), 1, + STATE(973), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62933] = 5, - ACTIONS(4286), 1, - anon_sym_COMMA, - ACTIONS(4288), 1, - anon_sym_GT, - ACTIONS(4323), 1, - anon_sym_EQ, - STATE(1958), 1, - aux_sym_type_parameters_repeat1, + [63601] = 4, + ACTIONS(4465), 1, + anon_sym_DQUOTE, + STATE(1674), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62950] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3875), 1, + ACTIONS(4342), 2, + sym__string_content, + sym_escape_sequence, + [63616] = 5, + ACTIONS(3890), 1, anon_sym_LBRACE, - STATE(283), 1, + ACTIONS(3892), 1, + anon_sym_where, + STATE(295), 1, sym_field_declaration_list, - STATE(2147), 1, + STATE(2056), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62967] = 5, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4325), 1, - anon_sym_RPAREN, - ACTIONS(4327), 1, - anon_sym_COMMA, - STATE(1954), 1, - aux_sym_tuple_type_repeat1, + [63633] = 5, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3894), 1, + anon_sym_LT, + STATE(1547), 1, + sym_parameters, + STATE(2042), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62984] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4146), 1, + [63650] = 5, + ACTIONS(4459), 1, + anon_sym_LPAREN, + ACTIONS(4461), 1, anon_sym_LBRACE, - STATE(904), 1, - sym_enum_variant_list, - STATE(1992), 1, - sym_where_clause, + ACTIONS(4463), 1, + anon_sym_LBRACK, + STATE(1754), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63001] = 4, - ACTIONS(2869), 1, - anon_sym_PLUS, - ACTIONS(3669), 1, + [63667] = 4, + ACTIONS(4467), 1, + anon_sym_COMMA, + STATE(1733), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3187), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [63682] = 3, + ACTIONS(3720), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4329), 2, + ACTIONS(2958), 3, anon_sym_RPAREN, - anon_sym_COMMA, - [63016] = 5, - ACTIONS(4122), 1, anon_sym_PLUS, - ACTIONS(4332), 1, + anon_sym_COMMA, + [63695] = 5, + ACTIONS(781), 1, anon_sym_RPAREN, - ACTIONS(4334), 1, + ACTIONS(3575), 1, + anon_sym_COLON, + ACTIONS(4469), 1, anon_sym_COMMA, - STATE(1763), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1739), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63033] = 4, - ACTIONS(4336), 1, + [63712] = 4, + ACTIONS(4471), 1, anon_sym_DQUOTE, - STATE(1694), 1, + STATE(1717), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4338), 2, + ACTIONS(4473), 2, sym__string_content, sym_escape_sequence, - [63048] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(839), 1, - sym_declaration_list, - STATE(2014), 1, - sym_where_clause, + [63727] = 5, + ACTIONS(781), 1, + anon_sym_RPAREN, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4469), 1, + anon_sym_COMMA, + STATE(1739), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63065] = 3, - ACTIONS(3669), 1, - anon_sym_COLON, + [63744] = 4, + ACTIONS(4477), 1, + anon_sym_COMMA, + STATE(1726), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2869), 3, + ACTIONS(4475), 2, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_RBRACK, + [63759] = 4, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(1978), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4480), 2, anon_sym_COMMA, - [63078] = 4, - ACTIONS(4342), 1, + anon_sym_GT, + [63774] = 5, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4482), 1, + anon_sym_RPAREN, + ACTIONS(4484), 1, anon_sym_COMMA, - STATE(1659), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1893), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4340), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [63093] = 5, - ACTIONS(4345), 1, - anon_sym_COLON, - ACTIONS(4347), 1, + [63791] = 4, + ACTIONS(3720), 1, anon_sym_COMMA, - ACTIONS(4349), 1, - anon_sym_PIPE, - STATE(1802), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4325), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63110] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + ACTIONS(2958), 2, + anon_sym_SEMI, + anon_sym_PLUS, + [63806] = 5, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(366), 1, + ACTIONS(3892), 1, + anon_sym_where, + STATE(292), 1, sym_declaration_list, - STATE(2106), 1, + STATE(2052), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63127] = 5, - ACTIONS(4142), 1, - anon_sym_COMMA, - ACTIONS(4144), 1, - anon_sym_GT, - ACTIONS(4323), 1, - anon_sym_EQ, - STATE(1845), 1, - aux_sym_type_parameters_repeat1, + [63823] = 5, + ACTIONS(4424), 1, + anon_sym_PIPE, + ACTIONS(4486), 1, + anon_sym_EQ_GT, + ACTIONS(4488), 1, + anon_sym_if, + STATE(1715), 1, + aux_sym_match_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63144] = 5, - ACTIONS(4351), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LBRACE, - ACTIONS(4355), 1, - anon_sym_LBRACK, - STATE(907), 1, - sym_token_tree, + [63840] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63161] = 5, - ACTIONS(4357), 1, - anon_sym_EQ_GT, - ACTIONS(4359), 1, - anon_sym_if, - ACTIONS(4361), 1, + ACTIONS(4490), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - STATE(1706), 1, - aux_sym_match_pattern_repeat1, + [63853] = 4, + ACTIONS(4494), 1, + anon_sym_COMMA, + STATE(1733), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63178] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, + ACTIONS(4492), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(864), 1, + [63868] = 5, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(3892), 1, + anon_sym_where, + STATE(410), 1, sym_declaration_list, - STATE(2090), 1, + STATE(2145), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63195] = 5, - ACTIONS(4363), 1, - anon_sym_LPAREN, - ACTIONS(4365), 1, - anon_sym_LBRACE, - ACTIONS(4367), 1, - anon_sym_LBRACK, - STATE(976), 1, - sym_token_tree, + [63885] = 5, + ACTIONS(4328), 1, + anon_sym_COLON, + ACTIONS(4497), 1, + anon_sym_RPAREN, + ACTIONS(4499), 1, + anon_sym_COMMA, + STATE(1822), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63212] = 4, - ACTIONS(4369), 1, - anon_sym_DQUOTE, - STATE(1694), 1, - aux_sym_string_literal_repeat1, + [63902] = 4, + ACTIONS(4501), 1, + anon_sym_COMMA, + ACTIONS(4503), 1, + anon_sym_GT, + STATE(1813), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4338), 2, - sym__string_content, - sym_escape_sequence, - [63227] = 3, - ACTIONS(4371), 1, - anon_sym_in, + [63916] = 3, + ACTIONS(3575), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4373), 3, - sym_self, - sym_super, - sym_crate, - [63240] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_declaration_list, - STATE(2007), 1, - sym_where_clause, + ACTIONS(4505), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63928] = 4, + ACTIONS(4507), 1, + sym_identifier, + ACTIONS(4509), 1, + anon_sym_ref, + ACTIONS(4511), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63942] = 4, + ACTIONS(821), 1, + anon_sym_RPAREN, + ACTIONS(4513), 1, + anon_sym_COMMA, + STATE(1742), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63956] = 4, + ACTIONS(4515), 1, + sym_identifier, + ACTIONS(4517), 1, + anon_sym_ref, + ACTIONS(4519), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63257] = 5, - ACTIONS(3865), 1, - anon_sym_LBRACE, - ACTIONS(3867), 1, - anon_sym_where, - STATE(833), 1, - sym_field_declaration_list, - STATE(1987), 1, - sym_where_clause, + [63970] = 3, + ACTIONS(3417), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63274] = 5, - ACTIONS(987), 1, + ACTIONS(4267), 2, anon_sym_RPAREN, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4302), 1, anon_sym_COMMA, - STATE(1835), 1, + [63982] = 4, + ACTIONS(4521), 1, + anon_sym_RPAREN, + ACTIONS(4523), 1, + anon_sym_COMMA, + STATE(1742), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63291] = 5, - ACTIONS(3458), 1, - anon_sym_LBRACE, - ACTIONS(4375), 1, + [63996] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4521), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64008] = 4, + ACTIONS(4526), 1, sym_identifier, - ACTIONS(4377), 1, - anon_sym_STAR, - STATE(1920), 1, - sym_use_list, + ACTIONS(4528), 1, + anon_sym_ref, + ACTIONS(4530), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63308] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(810), 1, - sym_declaration_list, - STATE(2095), 1, - sym_where_clause, + [64022] = 3, + ACTIONS(3575), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63325] = 5, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4379), 1, + ACTIONS(4521), 2, anon_sym_RPAREN, - ACTIONS(4381), 1, anon_sym_COMMA, - STATE(1949), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [64034] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63342] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + ACTIONS(4492), 3, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(274), 1, - sym_declaration_list, - STATE(2152), 1, - sym_where_clause, + anon_sym_COMMA, + [64044] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63359] = 4, - ACTIONS(3), 1, + ACTIONS(3156), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [64054] = 4, + ACTIONS(3924), 1, + anon_sym_RBRACE, + ACTIONS(4532), 1, + anon_sym_COMMA, + STATE(1750), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1186), 1, sym_line_comment, - ACTIONS(4383), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4385), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63374] = 4, - ACTIONS(4387), 1, - anon_sym_COMMA, - STATE(1691), 1, - aux_sym_where_clause_repeat1, + [64068] = 3, + ACTIONS(4536), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3186), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [63389] = 4, - ACTIONS(4391), 1, - anon_sym_PIPE, - STATE(1678), 1, - aux_sym_match_pattern_repeat1, + ACTIONS(4534), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64080] = 4, + ACTIONS(4538), 1, + anon_sym_RBRACE, + ACTIONS(4540), 1, + anon_sym_COMMA, + STATE(1750), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4389), 2, - anon_sym_EQ_GT, - anon_sym_if, - [63404] = 4, - ACTIONS(4130), 1, - anon_sym_COLON, - ACTIONS(4216), 1, - anon_sym_COLON_COLON, + [64094] = 4, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(4543), 1, + anon_sym_EQ, + STATE(2383), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3627), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63419] = 5, - ACTIONS(3458), 1, + [64108] = 4, + ACTIONS(2694), 1, anon_sym_LBRACE, - ACTIONS(4198), 1, - sym_identifier, - ACTIONS(4200), 1, - anon_sym_STAR, - STATE(1927), 1, - sym_use_list, + ACTIONS(4545), 1, + anon_sym_COLON_COLON, + STATE(1026), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63436] = 4, - ACTIONS(4394), 1, - anon_sym_DQUOTE, - STATE(1667), 1, - aux_sym_string_literal_repeat1, + [64122] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4396), 2, - sym__string_content, - sym_escape_sequence, - [63451] = 5, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4398), 1, + ACTIONS(4547), 3, anon_sym_RPAREN, - ACTIONS(4400), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1813), 1, - aux_sym_tuple_type_repeat1, + [64132] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63468] = 5, - ACTIONS(4345), 1, - anon_sym_COLON, - ACTIONS(4402), 1, + ACTIONS(4549), 3, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4404), 1, - anon_sym_COMMA, - STATE(1876), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_RBRACE, + [64142] = 4, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, + anon_sym_move, + STATE(1040), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63485] = 4, - ACTIONS(4406), 1, - anon_sym_DQUOTE, - STATE(1694), 1, - aux_sym_string_literal_repeat1, + [64156] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4553), 1, + sym_identifier, + STATE(2341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4338), 2, - sym__string_content, - sym_escape_sequence, - [63500] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1186), 1, - sym_line_comment, - ACTIONS(4408), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4410), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63515] = 5, - ACTIONS(3566), 1, - anon_sym_COLON, - ACTIONS(4304), 1, + [64170] = 4, + ACTIONS(483), 1, anon_sym_RPAREN, - ACTIONS(4306), 1, + ACTIONS(4555), 1, anon_sym_COMMA, - STATE(1929), 1, - aux_sym_parameters_repeat1, + STATE(1758), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63532] = 5, - ACTIONS(995), 1, + [64184] = 4, + ACTIONS(3307), 1, anon_sym_RPAREN, - ACTIONS(3566), 1, - anon_sym_COLON, - ACTIONS(4311), 1, + ACTIONS(4557), 1, anon_sym_COMMA, - STATE(1816), 1, - aux_sym_parameters_repeat1, + STATE(1758), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63549] = 5, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4412), 1, - anon_sym_COMMA, - ACTIONS(4414), 1, - anon_sym_GT, - STATE(1909), 1, - aux_sym_type_arguments_repeat1, + [64198] = 3, + ACTIONS(4221), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63566] = 4, - ACTIONS(4214), 1, - anon_sym_COLON, - ACTIONS(4216), 1, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [64210] = 3, + ACTIONS(4205), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3627), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [63581] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + [64222] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(1272), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4416), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [63594] = 4, - ACTIONS(4420), 1, - anon_sym_COMMA, - STATE(1691), 1, - aux_sym_where_clause_repeat1, + [64236] = 4, + ACTIONS(4560), 1, + anon_sym_for, + ACTIONS(4562), 1, + anon_sym_loop, + ACTIONS(4564), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4418), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [63609] = 3, - ACTIONS(4423), 1, - anon_sym_COLON, + [64250] = 3, + ACTIONS(4135), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3689), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [63622] = 4, - ACTIONS(3958), 1, + ACTIONS(3585), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [64262] = 4, + ACTIONS(4566), 1, + anon_sym_SEMI, + ACTIONS(4568), 1, anon_sym_COLON, - STATE(1848), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4425), 2, - anon_sym_COMMA, - anon_sym_GT, - [63637] = 4, - ACTIONS(4427), 1, - anon_sym_DQUOTE, - STATE(1694), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4570), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4429), 2, - sym__string_content, - sym_escape_sequence, - [63652] = 5, - ACTIONS(3867), 1, + [64276] = 4, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(761), 1, - sym_declaration_list, - STATE(2114), 1, + ACTIONS(4572), 1, + anon_sym_SEMI, + STATE(2288), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63669] = 5, - ACTIONS(2432), 1, - anon_sym_PLUS, - ACTIONS(4432), 1, - anon_sym_COMMA, - ACTIONS(4434), 1, - anon_sym_GT, - STATE(1852), 1, - aux_sym_type_arguments_repeat1, + [64290] = 4, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4574), 1, + anon_sym_SEMI, + STATE(342), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63686] = 5, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4432), 1, - anon_sym_COMMA, - ACTIONS(4434), 1, - anon_sym_GT, - STATE(1852), 1, - aux_sym_type_arguments_repeat1, + [64304] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63703] = 4, - ACTIONS(2280), 1, - anon_sym_POUND, - ACTIONS(4436), 1, - sym_identifier, + ACTIONS(3173), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [64314] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1062), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [63718] = 3, - ACTIONS(4122), 1, + ACTIONS(4576), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [64324] = 4, + ACTIONS(4161), 1, anon_sym_PLUS, + ACTIONS(4578), 1, + anon_sym_SEMI, + ACTIONS(4580), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4438), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [63731] = 5, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3869), 1, - anon_sym_LT, - STATE(1528), 1, - sym_parameters, - STATE(2138), 1, - sym_type_parameters, + [64338] = 4, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4582), 1, + anon_sym_SEMI, + STATE(284), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63748] = 5, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3869), 1, - anon_sym_LT, - STATE(1557), 1, - sym_parameters, - STATE(2099), 1, - sym_type_parameters, + [64352] = 4, + ACTIONS(3467), 1, + anon_sym_LBRACE, + ACTIONS(4584), 1, + sym_identifier, + STATE(1844), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63765] = 5, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3869), 1, - anon_sym_LT, - STATE(1525), 1, - sym_parameters, - STATE(2130), 1, - sym_type_parameters, + [64366] = 4, + ACTIONS(4586), 1, + anon_sym_RBRACE, + ACTIONS(4588), 1, + anon_sym_COMMA, + STATE(1772), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63782] = 5, - ACTIONS(2432), 1, + [64380] = 4, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4412), 1, - anon_sym_COMMA, - ACTIONS(4414), 1, + ACTIONS(4591), 1, + anon_sym_as, + ACTIONS(4593), 1, anon_sym_GT, - STATE(1909), 1, - aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63799] = 5, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3512), 1, + [64394] = 4, + ACTIONS(3521), 1, anon_sym_LT2, - STATE(1266), 1, + ACTIONS(4553), 1, + sym_identifier, + STATE(2352), 1, sym_type_arguments, - STATE(1283), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63816] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(838), 1, - sym_declaration_list, - STATE(2045), 1, - sym_where_clause, + [64408] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63833] = 5, - ACTIONS(4361), 1, + ACTIONS(4595), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64418] = 4, + ACTIONS(4330), 1, + anon_sym_COMMA, + ACTIONS(4332), 1, anon_sym_PIPE, - ACTIONS(4440), 1, - anon_sym_EQ_GT, - ACTIONS(4442), 1, - anon_sym_if, - STATE(1678), 1, - aux_sym_match_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63850] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4218), 1, - anon_sym_LBRACE, - STATE(288), 1, - sym_enum_variant_list, - STATE(1985), 1, - sym_where_clause, + STATE(1862), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63867] = 4, - ACTIONS(3669), 1, + [64432] = 4, + ACTIONS(4597), 1, + anon_sym_RPAREN, + ACTIONS(4599), 1, anon_sym_COMMA, - ACTIONS(4329), 1, - anon_sym_RBRACK, + STATE(1958), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2869), 2, - anon_sym_SEMI, - anon_sym_PLUS, - [63882] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4218), 1, - anon_sym_LBRACE, - STATE(331), 1, - sym_enum_variant_list, - STATE(2093), 1, - sym_where_clause, + [64446] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63899] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, + ACTIONS(3169), 3, anon_sym_LBRACE, - STATE(423), 1, - sym_declaration_list, - STATE(2028), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63916] = 5, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3869), 1, - anon_sym_LT, - STATE(1520), 1, - sym_parameters, - STATE(2029), 1, - sym_type_parameters, + anon_sym_COLON, + anon_sym_where, + [64456] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63933] = 5, - ACTIONS(3566), 1, - anon_sym_COLON, - ACTIONS(4444), 1, + ACTIONS(4601), 3, anon_sym_RPAREN, - ACTIONS(4447), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1911), 1, - aux_sym_parameters_repeat1, + [64466] = 4, + ACTIONS(4603), 1, + anon_sym_RBRACE, + ACTIONS(4605), 1, + anon_sym_COMMA, + STATE(1780), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63950] = 3, - ACTIONS(4450), 1, - anon_sym_in, + [64480] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 3, - sym_self, - sym_super, - sym_crate, - [63963] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3891), 1, + ACTIONS(3152), 3, anon_sym_LBRACE, - STATE(857), 1, - sym_declaration_list, - STATE(2050), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63980] = 5, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4454), 1, - anon_sym_RPAREN, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(1844), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63997] = 5, - ACTIONS(3867), 1, + anon_sym_COLON, anon_sym_where, - ACTIONS(3875), 1, + [64490] = 4, + ACTIONS(4139), 1, anon_sym_LBRACE, - STATE(317), 1, - sym_field_declaration_list, - STATE(2083), 1, - sym_where_clause, + ACTIONS(4608), 1, + anon_sym_SEMI, + STATE(389), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64014] = 5, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3869), 1, - anon_sym_LT, - STATE(1550), 1, - sym_parameters, - STATE(2084), 1, - sym_type_parameters, + [64504] = 4, + ACTIONS(2664), 1, + anon_sym_LT2, + ACTIONS(4610), 1, + sym_identifier, + STATE(929), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64031] = 4, - ACTIONS(4458), 1, - anon_sym_DQUOTE, - STATE(1684), 1, - aux_sym_string_literal_repeat1, + [64518] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4460), 2, - sym__string_content, - sym_escape_sequence, - [64046] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + ACTIONS(4612), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [64528] = 3, + ACTIONS(4616), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4462), 3, - anon_sym_RPAREN, + ACTIONS(4614), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [64059] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + [64540] = 4, + ACTIONS(4618), 1, + sym_identifier, + ACTIONS(4620), 1, + anon_sym_ref, + ACTIONS(4622), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4464), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [64072] = 5, - ACTIONS(3506), 1, - anon_sym_LPAREN, - ACTIONS(3869), 1, - anon_sym_LT, - STATE(1564), 1, - sym_parameters, - STATE(2071), 1, - sym_type_parameters, + [64554] = 4, + ACTIONS(4624), 1, + sym_identifier, + ACTIONS(4626), 1, + anon_sym_await, + ACTIONS(4628), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64089] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4146), 1, - anon_sym_LBRACE, - STATE(896), 1, - sym_enum_variant_list, - STATE(2058), 1, - sym_where_clause, + [64568] = 4, + ACTIONS(2664), 1, + anon_sym_LT2, + ACTIONS(4610), 1, + sym_identifier, + STATE(884), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64106] = 5, - ACTIONS(3865), 1, - anon_sym_LBRACE, - ACTIONS(3867), 1, - anon_sym_where, - STATE(919), 1, - sym_field_declaration_list, - STATE(2063), 1, - sym_where_clause, + [64582] = 4, + ACTIONS(4630), 1, + anon_sym_for, + ACTIONS(4632), 1, + anon_sym_loop, + ACTIONS(4634), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64123] = 4, - ACTIONS(4468), 1, + [64596] = 4, + ACTIONS(803), 1, + anon_sym_RBRACK, + ACTIONS(3183), 1, anon_sym_COMMA, - STATE(1677), 1, - aux_sym_where_clause_repeat1, + STATE(1880), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4466), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [64138] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1186), 1, - sym_line_comment, - ACTIONS(4470), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4472), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64153] = 4, - ACTIONS(4474), 1, - anon_sym_DQUOTE, - STATE(1656), 1, - aux_sym_string_literal_repeat1, + [64610] = 4, + ACTIONS(3896), 1, + anon_sym_RBRACE, + ACTIONS(4636), 1, + anon_sym_COMMA, + STATE(1750), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4476), 2, - sym__string_content, - sym_escape_sequence, - [64168] = 5, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(351), 1, - sym_declaration_list, - STATE(2035), 1, - sym_where_clause, + [64624] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64185] = 5, - ACTIONS(4122), 1, + ACTIONS(4638), 3, anon_sym_PLUS, - ACTIONS(4478), 1, + anon_sym_STAR, + anon_sym_QMARK, + [64634] = 4, + ACTIONS(4640), 1, anon_sym_RPAREN, - ACTIONS(4480), 1, + ACTIONS(4642), 1, anon_sym_COMMA, - STATE(1911), 1, - aux_sym_parameters_repeat1, + STATE(1914), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64202] = 5, - ACTIONS(3566), 1, - anon_sym_COLON, - ACTIONS(4478), 1, - anon_sym_RPAREN, - ACTIONS(4480), 1, + [64648] = 4, + ACTIONS(3926), 1, + anon_sym_RBRACE, + ACTIONS(4644), 1, anon_sym_COMMA, - STATE(1911), 1, - aux_sym_parameters_repeat1, + STATE(1917), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64219] = 5, - ACTIONS(4363), 1, - anon_sym_LPAREN, - ACTIONS(4365), 1, + [64662] = 4, + ACTIONS(4139), 1, anon_sym_LBRACE, - ACTIONS(4367), 1, - anon_sym_LBRACK, - STATE(1782), 1, - sym_token_tree, + ACTIONS(4646), 1, + anon_sym_SEMI, + STATE(430), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64236] = 5, - ACTIONS(4482), 1, - anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_LBRACE, - ACTIONS(4486), 1, - anon_sym_LBRACK, - STATE(1302), 1, - sym_token_tree, + [64676] = 4, + ACTIONS(3926), 1, + anon_sym_RBRACE, + ACTIONS(4644), 1, + anon_sym_COMMA, + STATE(1913), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64253] = 5, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(1266), 1, - sym_type_arguments, - STATE(1913), 1, - sym_trait_bounds, + [64690] = 4, + ACTIONS(2351), 1, + anon_sym_RPAREN, + ACTIONS(4648), 1, + anon_sym_COMMA, + STATE(1904), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64270] = 4, - ACTIONS(2669), 1, - anon_sym_LBRACE, - ACTIONS(4488), 1, - anon_sym_COLON_COLON, - STATE(1038), 1, - sym_field_initializer_list, + [64704] = 4, + ACTIONS(4650), 1, + anon_sym_RBRACK, + ACTIONS(4652), 1, + anon_sym_COMMA, + STATE(1933), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64284] = 4, - ACTIONS(3891), 1, - anon_sym_LBRACE, - ACTIONS(4490), 1, + [64718] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4654), 1, anon_sym_SEMI, - STATE(941), 1, - sym_declaration_list, + ACTIONS(4656), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64298] = 4, - ACTIONS(2432), 1, - anon_sym_PLUS, - ACTIONS(4492), 1, - sym_mutable_specifier, - ACTIONS(4494), 1, - sym_self, + [64732] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4658), 1, + sym_identifier, + STATE(2341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64312] = 4, - ACTIONS(3512), 1, + [64746] = 4, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(4496), 1, + ACTIONS(4658), 1, sym_identifier, - STATE(2204), 1, + STATE(2352), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64326] = 2, + [64760] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4498), 3, - anon_sym_RPAREN, + ACTIONS(3160), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [64770] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4660), 1, + anon_sym_SEMI, + ACTIONS(4662), 1, anon_sym_RBRACK, - anon_sym_COMMA, - [64336] = 4, - ACTIONS(4500), 1, - anon_sym_RPAREN, - ACTIONS(4502), 1, - anon_sym_COMMA, - STATE(1886), 1, - aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64350] = 2, + [64784] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4664), 1, + anon_sym_SEMI, + ACTIONS(4666), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64798] = 4, + ACTIONS(4668), 1, + anon_sym_for, + ACTIONS(4670), 1, + anon_sym_loop, + ACTIONS(4672), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4504), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64360] = 4, - ACTIONS(4506), 1, - anon_sym_RPAREN, - ACTIONS(4508), 1, + [64812] = 4, + ACTIONS(4155), 1, anon_sym_COMMA, - STATE(1751), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4157), 1, + anon_sym_GT, + STATE(1977), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64374] = 2, + [64826] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4510), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4674), 2, anon_sym_COMMA, - [64384] = 4, - ACTIONS(4478), 1, - anon_sym_RPAREN, + anon_sym_GT, + [64838] = 4, ACTIONS(4480), 1, + anon_sym_GT, + ACTIONS(4676), 1, anon_sym_COMMA, - STATE(1911), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64398] = 2, + STATE(1808), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4512), 3, - anon_sym_SEMI, + [64852] = 4, + ACTIONS(4679), 1, anon_sym_RBRACE, + ACTIONS(4681), 1, anon_sym_COMMA, - [64408] = 4, - ACTIONS(3584), 1, - anon_sym_COLON, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - STATE(1913), 1, - sym_trait_bounds, + STATE(1809), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64422] = 4, - ACTIONS(4514), 1, - anon_sym_RBRACE, - ACTIONS(4516), 1, - anon_sym_COMMA, - STATE(1745), 1, - aux_sym_use_list_repeat1, + [64866] = 3, + ACTIONS(4354), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64436] = 4, - ACTIONS(4519), 1, - anon_sym_RBRACE, - ACTIONS(4521), 1, + ACTIONS(4480), 2, anon_sym_COMMA, - STATE(1794), 1, - aux_sym_struct_pattern_repeat1, + anon_sym_GT, + [64878] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64450] = 4, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(4523), 1, - anon_sym_SEMI, - STATE(436), 1, - sym_block, + ACTIONS(4684), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [64888] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64464] = 4, - ACTIONS(4525), 1, - anon_sym_RBRACK, - ACTIONS(4527), 1, + ACTIONS(4686), 2, anon_sym_COMMA, - STATE(1753), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64478] = 4, - ACTIONS(3584), 1, - anon_sym_COLON, - ACTIONS(3600), 1, - anon_sym_COLON_COLON, - STATE(1950), 1, - sym_trait_bounds, + anon_sym_GT, + [64900] = 4, + ACTIONS(4688), 1, + anon_sym_COMMA, + ACTIONS(4690), 1, + anon_sym_GT, + STATE(1865), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64492] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(3815), 1, - anon_sym_LBRACE, - STATE(1266), 1, - sym_type_arguments, + [64914] = 4, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(4690), 1, + anon_sym_GT, + STATE(2155), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64506] = 4, - ACTIONS(2561), 1, + [64928] = 4, + ACTIONS(4692), 1, anon_sym_RPAREN, - ACTIONS(4529), 1, + ACTIONS(4694), 1, anon_sym_COMMA, - STATE(1659), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1815), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64520] = 4, - ACTIONS(4531), 1, - anon_sym_RBRACE, - ACTIONS(4533), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_enum_variant_list_repeat2, + [64942] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64534] = 4, - ACTIONS(2563), 1, - anon_sym_RBRACK, - ACTIONS(4535), 1, + ACTIONS(4692), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1659), 1, - aux_sym_tuple_pattern_repeat1, + [64954] = 4, + ACTIONS(4091), 1, + anon_sym_RBRACE, + ACTIONS(4697), 1, + anon_sym_COMMA, + STATE(1809), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64548] = 4, - ACTIONS(4537), 1, - anon_sym_RBRACE, - ACTIONS(4539), 1, + [64968] = 4, + ACTIONS(1103), 1, + anon_sym_GT, + ACTIONS(4699), 1, anon_sym_COMMA, - STATE(1754), 1, - aux_sym_field_initializer_list_repeat1, + STATE(1841), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64562] = 4, - ACTIONS(3911), 1, + [64982] = 4, + ACTIONS(4101), 1, anon_sym_RBRACE, - ACTIONS(4542), 1, + ACTIONS(4701), 1, anon_sym_COMMA, - STATE(1862), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1809), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64576] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4544), 1, - anon_sym_SEMI, - ACTIONS(4546), 1, - anon_sym_EQ, + [64996] = 3, + ACTIONS(4705), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64590] = 4, - ACTIONS(683), 1, - anon_sym_RBRACK, - ACTIONS(4548), 1, + ACTIONS(4703), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1758), 1, - aux_sym_array_expression_repeat1, + [65008] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64604] = 4, - ACTIONS(3256), 1, + ACTIONS(4707), 3, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(4550), 1, anon_sym_COMMA, - STATE(1758), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64618] = 4, - ACTIONS(4120), 1, - anon_sym_LBRACE, - ACTIONS(4553), 1, - anon_sym_SEMI, - STATE(397), 1, - sym_block, + [65018] = 4, + ACTIONS(2548), 1, + anon_sym_RPAREN, + ACTIONS(4709), 1, + anon_sym_COMMA, + STATE(1726), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64632] = 4, - ACTIONS(4122), 1, + [65032] = 3, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4555), 1, - anon_sym_SEMI, - ACTIONS(4557), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64646] = 4, - ACTIONS(3911), 1, - anon_sym_RBRACE, - ACTIONS(4542), 1, + ACTIONS(4711), 2, anon_sym_COMMA, - STATE(1861), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_GT, + [65044] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64660] = 4, - ACTIONS(1077), 1, + ACTIONS(4475), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [65054] = 4, + ACTIONS(4139), 1, anon_sym_LBRACE, - ACTIONS(4559), 1, + ACTIONS(4713), 1, anon_sym_SEMI, - STATE(756), 1, + STATE(257), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64674] = 4, - ACTIONS(2296), 1, + [65068] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4715), 2, anon_sym_RPAREN, - ACTIONS(4561), 1, anon_sym_COMMA, - STATE(1847), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [65080] = 4, + ACTIONS(4717), 1, + anon_sym_SEMI, + ACTIONS(4719), 1, + anon_sym_COLON, + ACTIONS(4721), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64688] = 4, - ACTIONS(1077), 1, - anon_sym_LBRACE, - ACTIONS(4563), 1, - anon_sym_SEMI, - STATE(750), 1, - sym_block, + [65094] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64702] = 3, - ACTIONS(4216), 1, + ACTIONS(4723), 2, + anon_sym_COMMA, + anon_sym_GT, + [65106] = 3, + ACTIONS(4233), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3585), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [64714] = 4, - ACTIONS(1077), 1, - anon_sym_LBRACE, - ACTIONS(4565), 1, - anon_sym_SEMI, - STATE(744), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64728] = 4, - ACTIONS(295), 1, + [65118] = 4, + ACTIONS(2694), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(981), 1, - sym_block, + ACTIONS(4725), 1, + anon_sym_COLON_COLON, + STATE(1026), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64742] = 4, - ACTIONS(3867), 1, + [65132] = 4, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4567), 1, + ACTIONS(4727), 1, anon_sym_SEMI, - STATE(2369), 1, + STATE(2363), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64756] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4569), 1, - sym_identifier, - STATE(2204), 1, - sym_type_arguments, + [65146] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64770] = 4, - ACTIONS(4122), 1, + ACTIONS(4729), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [65156] = 3, + ACTIONS(2506), 1, anon_sym_PLUS, - ACTIONS(4571), 1, - anon_sym_SEMI, - ACTIONS(4573), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64784] = 4, - ACTIONS(4402), 1, + ACTIONS(4723), 2, + anon_sym_COMMA, + anon_sym_GT, + [65168] = 4, + ACTIONS(781), 1, anon_sym_RPAREN, - ACTIONS(4404), 1, + ACTIONS(4469), 1, anon_sym_COMMA, - STATE(1876), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1739), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64798] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + [65182] = 4, + ACTIONS(907), 1, + anon_sym_LBRACE, + ACTIONS(4731), 1, + anon_sym_move, + STATE(221), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4575), 2, - anon_sym_COMMA, - anon_sym_GT, - [64810] = 4, - ACTIONS(1077), 1, + [65196] = 4, + ACTIONS(4139), 1, anon_sym_LBRACE, - ACTIONS(4577), 1, + ACTIONS(4733), 1, anon_sym_SEMI, - STATE(887), 1, + STATE(432), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64824] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4579), 1, - anon_sym_SEMI, - ACTIONS(4581), 1, - anon_sym_EQ, + [65210] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4735), 1, + sym_identifier, + STATE(2352), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64838] = 4, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(4583), 1, - anon_sym_move, - STATE(1057), 1, - sym_block, + [65224] = 4, + ACTIONS(781), 1, + anon_sym_RPAREN, + ACTIONS(4469), 1, + anon_sym_COMMA, + STATE(1742), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64852] = 4, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_EQ, - STATE(2245), 1, - sym_type_parameters, + [65238] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4735), 1, + sym_identifier, + STATE(2341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64866] = 4, - ACTIONS(3308), 1, - anon_sym_RPAREN, - ACTIONS(4587), 1, - anon_sym_COMMA, - STATE(1777), 1, - aux_sym_arguments_repeat1, + [65252] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64880] = 4, - ACTIONS(1077), 1, - anon_sym_LBRACE, - ACTIONS(4590), 1, + ACTIONS(4737), 3, anon_sym_SEMI, - STATE(960), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [65262] = 4, + ACTIONS(4723), 1, + anon_sym_GT, + ACTIONS(4739), 1, + anon_sym_COMMA, + STATE(1841), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64894] = 4, - ACTIONS(455), 1, - anon_sym_RPAREN, - ACTIONS(4592), 1, - anon_sym_COMMA, - STATE(1777), 1, - aux_sym_arguments_repeat1, + [65276] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64908] = 4, - ACTIONS(3897), 1, + ACTIONS(4742), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [65286] = 4, + ACTIONS(4744), 1, anon_sym_RBRACE, - ACTIONS(4594), 1, + ACTIONS(4746), 1, anon_sym_COMMA, - STATE(1790), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1941), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64922] = 4, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(4596), 1, - anon_sym_SEMI, - STATE(345), 1, - sym_declaration_list, + [65300] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64936] = 2, + ACTIONS(4748), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [65310] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4598), 3, + ACTIONS(4750), 3, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [64946] = 3, - ACTIONS(4132), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + [65320] = 3, + ACTIONS(4205), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, + ACTIONS(3640), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [64958] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4600), 1, - anon_sym_SEMI, - ACTIONS(4602), 1, - anon_sym_EQ, + [65332] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64972] = 4, - ACTIONS(1077), 1, - anon_sym_LBRACE, - ACTIONS(4604), 1, + ACTIONS(4752), 3, anon_sym_SEMI, - STATE(920), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64986] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4569), 1, - sym_identifier, - STATE(2198), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65000] = 4, - ACTIONS(681), 1, - anon_sym_RBRACK, - ACTIONS(3190), 1, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1758), 1, - aux_sym_array_expression_repeat1, + [65342] = 4, + ACTIONS(3902), 1, + anon_sym_RBRACE, + ACTIONS(4754), 1, + anon_sym_COMMA, + STATE(1748), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65014] = 4, - ACTIONS(4606), 1, + [65356] = 4, + ACTIONS(3902), 1, anon_sym_RBRACE, - ACTIONS(4608), 1, + ACTIONS(4754), 1, anon_sym_COMMA, - STATE(1788), 1, + STATE(1750), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65028] = 3, - ACTIONS(4613), 1, + [65370] = 3, + ACTIONS(4758), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4611), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65040] = 4, - ACTIONS(3901), 1, + ACTIONS(4756), 2, anon_sym_RBRACE, - ACTIONS(4615), 1, anon_sym_COMMA, - STATE(1788), 1, - aux_sym_enum_variant_list_repeat2, + [65382] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4760), 1, + sym_identifier, + STATE(2352), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65054] = 3, - ACTIONS(4619), 1, - anon_sym_COLON, + [65396] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4760), 1, + sym_identifier, + STATE(2341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4617), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65066] = 4, - ACTIONS(1077), 1, - anon_sym_LBRACE, - ACTIONS(4621), 1, + [65410] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4762), 1, anon_sym_SEMI, - STATE(740), 1, - sym_block, + ACTIONS(4764), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65080] = 4, - ACTIONS(4623), 1, - anon_sym_for, - ACTIONS(4625), 1, - anon_sym_loop, - ACTIONS(4627), 1, - anon_sym_while, + [65424] = 4, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4766), 1, + anon_sym_SEMI, + STATE(421), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65094] = 4, - ACTIONS(4041), 1, - anon_sym_RBRACE, - ACTIONS(4629), 1, - anon_sym_COMMA, - STATE(1822), 1, - aux_sym_struct_pattern_repeat1, + [65438] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4768), 1, + sym_identifier, + STATE(2352), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65108] = 4, - ACTIONS(4631), 1, - anon_sym_SEMI, - ACTIONS(4633), 1, - anon_sym_COLON, - ACTIONS(4635), 1, - anon_sym_EQ, + [65452] = 4, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + ACTIONS(4770), 1, + anon_sym_GT, + STATE(2155), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65122] = 4, - ACTIONS(4425), 1, - anon_sym_GT, - ACTIONS(4637), 1, - anon_sym_COMMA, - STATE(1796), 1, - aux_sym_type_parameters_repeat1, + [65466] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4768), 1, + sym_identifier, + STATE(2341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65136] = 4, - ACTIONS(4640), 1, - anon_sym_RBRACE, - ACTIONS(4642), 1, - anon_sym_COMMA, - STATE(1963), 1, - aux_sym_field_initializer_list_repeat1, + [65480] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65150] = 3, - ACTIONS(4646), 1, + ACTIONS(4772), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [65490] = 4, + ACTIONS(4774), 1, + anon_sym_SEMI, + ACTIONS(4776), 1, anon_sym_COLON, + ACTIONS(4778), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4644), 2, - anon_sym_RBRACE, + [65504] = 4, + ACTIONS(4780), 1, + anon_sym_RPAREN, + ACTIONS(4782), 1, anon_sym_COMMA, - [65162] = 2, + STATE(1860), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3162), 3, + [65518] = 4, + ACTIONS(3884), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [65172] = 4, - ACTIONS(4432), 1, - anon_sym_COMMA, - ACTIONS(4434), 1, - anon_sym_GT, - STATE(1852), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65186] = 2, + ACTIONS(4785), 1, + anon_sym_SEMI, + STATE(952), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4418), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [65196] = 4, - ACTIONS(4347), 1, + [65532] = 4, + ACTIONS(4330), 1, anon_sym_COMMA, - ACTIONS(4648), 1, + ACTIONS(4787), 1, anon_sym_PIPE, - STATE(1957), 1, + STATE(1901), 1, aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65210] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3158), 3, - anon_sym_LBRACE, + [65546] = 3, + ACTIONS(4791), 1, anon_sym_COLON, - anon_sym_where, - [65220] = 3, - ACTIONS(4323), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4425), 2, + ACTIONS(4789), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [65232] = 3, - ACTIONS(3566), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4650), 2, + [65558] = 4, + ACTIONS(463), 1, anon_sym_RPAREN, + ACTIONS(3213), 1, anon_sym_COMMA, - [65244] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + STATE(1758), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4650), 2, - anon_sym_RPAREN, + [65572] = 4, + ACTIONS(4793), 1, anon_sym_COMMA, - [65256] = 4, - ACTIONS(3885), 1, - anon_sym_LBRACE, - ACTIONS(4652), 1, - anon_sym_SEMI, - STATE(340), 1, - sym_declaration_list, + ACTIONS(4796), 1, + anon_sym_GT, + STATE(1865), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65270] = 4, - ACTIONS(4650), 1, - anon_sym_RPAREN, - ACTIONS(4654), 1, + [65586] = 4, + ACTIONS(4798), 1, + anon_sym_RBRACE, + ACTIONS(4800), 1, anon_sym_COMMA, - STATE(1808), 1, - aux_sym_parameters_repeat1, + STATE(1898), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65284] = 4, - ACTIONS(1077), 1, - anon_sym_LBRACE, - ACTIONS(4657), 1, - anon_sym_SEMI, - STATE(770), 1, - sym_block, + [65600] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65298] = 4, - ACTIONS(3917), 1, - anon_sym_RBRACE, - ACTIONS(4659), 1, + ACTIONS(4802), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1837), 1, - aux_sym_enum_variant_list_repeat2, + [65610] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65312] = 4, - ACTIONS(4661), 1, - anon_sym_RBRACE, - ACTIONS(4663), 1, + ACTIONS(4804), 2, anon_sym_COMMA, - STATE(1849), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65326] = 3, - ACTIONS(3424), 1, - anon_sym_COLON_COLON, + anon_sym_GT, + [65622] = 4, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4806), 1, + anon_sym_SEMI, + STATE(247), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4264), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65338] = 4, - ACTIONS(2498), 1, - anon_sym_RPAREN, - ACTIONS(4665), 1, - anon_sym_COMMA, - STATE(1838), 1, - aux_sym_tuple_type_repeat1, + [65636] = 4, + ACTIONS(3894), 1, + anon_sym_LT, + ACTIONS(4808), 1, + anon_sym_EQ, + STATE(2228), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65352] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + [65650] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4810), 1, + sym_identifier, + STATE(2352), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4667), 2, - anon_sym_COMMA, - anon_sym_GT, - [65364] = 4, - ACTIONS(4669), 1, - anon_sym_COMMA, - ACTIONS(4671), 1, - anon_sym_GT, - STATE(1833), 1, - aux_sym_for_lifetimes_repeat1, + [65664] = 4, + ACTIONS(2664), 1, + anon_sym_LT2, + ACTIONS(4812), 1, + sym_identifier, + STATE(1167), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65378] = 4, - ACTIONS(993), 1, - anon_sym_RPAREN, - ACTIONS(4673), 1, - anon_sym_COMMA, - STATE(1808), 1, - aux_sym_parameters_repeat1, + [65678] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4810), 1, + sym_identifier, + STATE(2341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65392] = 3, - ACTIONS(4122), 1, + [65692] = 3, + ACTIONS(4161), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4675), 2, + ACTIONS(4814), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65404] = 4, - ACTIONS(4120), 1, + [65704] = 4, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_SEMI, - STATE(427), 1, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(1044), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65418] = 4, - ACTIONS(3905), 1, - anon_sym_RBRACE, - ACTIONS(4679), 1, - anon_sym_COMMA, - STATE(1861), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65432] = 3, - ACTIONS(4683), 1, - anon_sym_COLON, + [65718] = 4, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4816), 1, + anon_sym_SEMI, + STATE(448), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4681), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65444] = 3, - ACTIONS(4238), 1, - anon_sym_COLON_COLON, + [65732] = 4, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(4818), 1, + anon_sym_SEMI, + STATE(895), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [65456] = 4, - ACTIONS(4685), 1, - anon_sym_RBRACE, - ACTIONS(4687), 1, - anon_sym_COMMA, - STATE(1822), 1, - aux_sym_struct_pattern_repeat1, + [65746] = 4, + ACTIONS(2664), 1, + anon_sym_LT2, + ACTIONS(4812), 1, + sym_identifier, + STATE(1209), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65470] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + [65760] = 4, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4820), 1, + anon_sym_SEMI, + STATE(2320), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4690), 2, + [65774] = 4, + ACTIONS(3319), 1, + anon_sym_RBRACK, + ACTIONS(4822), 1, anon_sym_COMMA, - anon_sym_GT, - [65482] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + STATE(1880), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4692), 2, - anon_sym_COMMA, - anon_sym_GT, - [65494] = 3, - ACTIONS(2432), 1, - anon_sym_PLUS, + [65788] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4692), 2, - anon_sym_COMMA, - anon_sym_GT, - [65506] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4694), 1, + ACTIONS(4454), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [65798] = 4, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(4825), 1, anon_sym_SEMI, - ACTIONS(4696), 1, - anon_sym_EQ, + STATE(887), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65520] = 4, - ACTIONS(4692), 1, - anon_sym_GT, - ACTIONS(4698), 1, + [65812] = 4, + ACTIONS(815), 1, + anon_sym_RBRACK, + ACTIONS(4827), 1, anon_sym_COMMA, - STATE(1827), 1, - aux_sym_type_arguments_repeat1, + STATE(1880), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65534] = 4, - ACTIONS(4701), 1, - anon_sym_COMMA, - ACTIONS(4703), 1, - anon_sym_GT, - STATE(1815), 1, - aux_sym_for_lifetimes_repeat1, + [65826] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4829), 1, + anon_sym_SEMI, + ACTIONS(4831), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65548] = 4, - ACTIONS(1077), 1, + [65840] = 4, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(4705), 1, + ACTIONS(4833), 1, anon_sym_SEMI, - STATE(793), 1, + STATE(867), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65562] = 4, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(4671), 1, - anon_sym_GT, - STATE(2049), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65576] = 4, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - ACTIONS(4707), 1, - anon_sym_GT, - STATE(2049), 1, - sym_lifetime, + [65854] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4835), 1, + anon_sym_SEMI, + ACTIONS(4837), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65590] = 4, - ACTIONS(801), 1, + [65868] = 4, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(4709), 1, - anon_sym_move, - STATE(233), 1, + ACTIONS(4839), 1, + anon_sym_SEMI, + STATE(834), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65604] = 4, - ACTIONS(4711), 1, - anon_sym_COMMA, - ACTIONS(4714), 1, - anon_sym_GT, - STATE(1833), 1, - aux_sym_for_lifetimes_repeat1, + [65882] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4841), 1, + sym_identifier, + STATE(2341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65618] = 3, - ACTIONS(4122), 1, + [65896] = 4, + ACTIONS(4161), 1, anon_sym_PLUS, + ACTIONS(4843), 1, + anon_sym_SEMI, + ACTIONS(4845), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4716), 2, - anon_sym_COMMA, - anon_sym_GT, - [65630] = 4, - ACTIONS(991), 1, - anon_sym_RPAREN, - ACTIONS(4718), 1, + [65910] = 4, + ACTIONS(4847), 1, + anon_sym_RBRACE, + ACTIONS(4849), 1, anon_sym_COMMA, - STATE(1808), 1, - aux_sym_parameters_repeat1, + STATE(1849), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65644] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4720), 1, + [65924] = 4, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(4851), 1, anon_sym_SEMI, - ACTIONS(4722), 1, - anon_sym_RBRACK, + STATE(822), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65658] = 4, - ACTIONS(3881), 1, - anon_sym_RBRACE, - ACTIONS(4724), 1, - anon_sym_COMMA, - STATE(1788), 1, - aux_sym_enum_variant_list_repeat2, + [65938] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4841), 1, + sym_identifier, + STATE(2352), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65672] = 4, - ACTIONS(4726), 1, + [65952] = 4, + ACTIONS(2365), 1, anon_sym_RPAREN, - ACTIONS(4728), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - STATE(1838), 1, - aux_sym_tuple_type_repeat1, + STATE(1904), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65686] = 2, + [65966] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4855), 1, + anon_sym_SEMI, + ACTIONS(4857), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4731), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [65696] = 2, + [65980] = 3, + ACTIONS(4861), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4389), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [65706] = 4, - ACTIONS(3937), 1, - anon_sym_GT, - ACTIONS(4733), 1, + ACTIONS(4859), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1796), 1, + [65992] = 4, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_GT, + STATE(1967), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65720] = 3, - ACTIONS(4122), 1, + [66006] = 3, + ACTIONS(4161), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4726), 2, + ACTIONS(4863), 2, anon_sym_RPAREN, anon_sym_COMMA, - [65732] = 3, - ACTIONS(4216), 1, - anon_sym_COLON_COLON, + [66018] = 4, + ACTIONS(3914), 1, + anon_sym_RBRACE, + ACTIONS(4865), 1, + anon_sym_COMMA, + STATE(1772), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3627), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [65744] = 4, - ACTIONS(2292), 1, - anon_sym_RPAREN, - ACTIONS(4735), 1, - anon_sym_COMMA, - STATE(1847), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [66032] = 4, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(4161), 1, + anon_sym_PLUS, + STATE(972), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65758] = 4, - ACTIONS(3893), 1, - anon_sym_GT, - ACTIONS(4737), 1, - anon_sym_COMMA, - STATE(1796), 1, - aux_sym_type_parameters_repeat1, + [66046] = 4, + ACTIONS(3620), 1, + anon_sym_COLON, + ACTIONS(3628), 1, + anon_sym_COLON_COLON, + STATE(1847), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65772] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + [66060] = 4, + ACTIONS(4867), 1, + anon_sym_COMMA, + ACTIONS(4870), 1, + anon_sym_PIPE, + STATE(1901), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4739), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65784] = 4, - ACTIONS(4741), 1, + [66074] = 4, + ACTIONS(2359), 1, anon_sym_RPAREN, - ACTIONS(4743), 1, + ACTIONS(4872), 1, anon_sym_COMMA, - STATE(1847), 1, + STATE(1904), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65798] = 2, + [66088] = 3, + ACTIONS(4328), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4746), 3, - anon_sym_EQ, + ACTIONS(4870), 2, anon_sym_COMMA, - anon_sym_GT, - [65808] = 4, - ACTIONS(4051), 1, - anon_sym_RBRACE, - ACTIONS(4748), 1, + anon_sym_PIPE, + [66100] = 4, + ACTIONS(4874), 1, + anon_sym_RPAREN, + ACTIONS(4876), 1, anon_sym_COMMA, - STATE(1822), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65822] = 4, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4750), 1, - anon_sym_SEMI, - STATE(2301), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65836] = 2, + STATE(1904), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4752), 3, + [66114] = 4, + ACTIONS(4879), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65846] = 4, - ACTIONS(1101), 1, - anon_sym_GT, - ACTIONS(4754), 1, - anon_sym_COMMA, - STATE(1827), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4881), 1, + anon_sym_COLON, + ACTIONS(4883), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65860] = 4, - ACTIONS(4122), 1, + [66128] = 4, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4756), 1, + ACTIONS(4885), 1, anon_sym_SEMI, - ACTIONS(4758), 1, + ACTIONS(4887), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65874] = 4, - ACTIONS(3897), 1, - anon_sym_RBRACE, - ACTIONS(4594), 1, - anon_sym_COMMA, - STATE(1788), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65888] = 4, - ACTIONS(1077), 1, + [66142] = 4, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(4760), 1, + ACTIONS(4889), 1, anon_sym_SEMI, - STATE(850), 1, + STATE(783), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65902] = 4, - ACTIONS(4762), 1, - anon_sym_SEMI, - ACTIONS(4764), 1, - anon_sym_COLON, - ACTIONS(4766), 1, - anon_sym_EQ, + [66156] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65916] = 4, - ACTIONS(4768), 1, + ACTIONS(4891), 2, anon_sym_RBRACE, - ACTIONS(4770), 1, anon_sym_COMMA, - STATE(1915), 1, - aux_sym_use_list_repeat1, + [66168] = 4, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(4893), 1, + anon_sym_SEMI, + STATE(2394), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65930] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4496), 1, - sym_identifier, - STATE(2198), 1, - sym_type_arguments, + [66182] = 4, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, + ACTIONS(3620), 1, + anon_sym_COLON, + STATE(1842), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65944] = 2, + [66196] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4772), 3, + ACTIONS(4895), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [65954] = 4, - ACTIONS(4120), 1, + [66208] = 4, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(4774), 1, + ACTIONS(4897), 1, anon_sym_SEMI, - STATE(395), 1, + STATE(767), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65968] = 4, - ACTIONS(4776), 1, + [66222] = 4, + ACTIONS(4899), 1, anon_sym_RBRACE, - ACTIONS(4778), 1, + ACTIONS(4901), 1, anon_sym_COMMA, - STATE(1861), 1, + STATE(1913), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65982] = 4, - ACTIONS(3859), 1, - anon_sym_RBRACE, - ACTIONS(4781), 1, + [66236] = 4, + ACTIONS(2544), 1, + anon_sym_RPAREN, + ACTIONS(4904), 1, anon_sym_COMMA, - STATE(1861), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65996] = 3, - ACTIONS(4785), 1, - anon_sym_COLON, + STATE(1726), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4783), 2, + [66250] = 4, + ACTIONS(3898), 1, anon_sym_RBRACE, + ACTIONS(4906), 1, anon_sym_COMMA, - [66008] = 2, + STATE(1913), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4787), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [66018] = 2, + [66264] = 4, + ACTIONS(4406), 1, + anon_sym_RPAREN, + ACTIONS(4408), 1, + anon_sym_COMMA, + STATE(1838), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4789), 3, - anon_sym_SEMI, + [66278] = 4, + ACTIONS(3916), 1, anon_sym_RBRACE, + ACTIONS(4908), 1, anon_sym_COMMA, - [66028] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4791), 1, - anon_sym_SEMI, - ACTIONS(4793), 1, - anon_sym_EQ, + STATE(1913), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66042] = 4, - ACTIONS(4122), 1, + [66292] = 4, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4795), 1, + ACTIONS(4910), 1, anon_sym_SEMI, - ACTIONS(4797), 1, + ACTIONS(4912), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66056] = 4, - ACTIONS(4799), 1, - anon_sym_for, - ACTIONS(4801), 1, - anon_sym_loop, - ACTIONS(4803), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66070] = 4, - ACTIONS(2655), 1, - anon_sym_LT2, - ACTIONS(4805), 1, - sym_identifier, - STATE(1168), 1, - sym_type_arguments, + [66306] = 4, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4914), 1, + anon_sym_SEMI, + STATE(393), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66084] = 4, - ACTIONS(2655), 1, - anon_sym_LT2, - ACTIONS(4807), 1, - sym_identifier, - STATE(779), 1, - sym_type_arguments, + [66320] = 4, + ACTIONS(2506), 1, + anon_sym_PLUS, + ACTIONS(4916), 1, + sym_mutable_specifier, + ACTIONS(4918), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66098] = 4, - ACTIONS(4120), 1, + [66334] = 4, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(4809), 1, + ACTIONS(4920), 1, anon_sym_SEMI, - STATE(287), 1, + STATE(848), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66112] = 4, - ACTIONS(4811), 1, + [66348] = 4, + ACTIONS(3521), 1, + anon_sym_LT2, + ACTIONS(4167), 1, sym_identifier, - ACTIONS(4813), 1, - anon_sym_await, - ACTIONS(4815), 1, - sym_integer_literal, + STATE(2352), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66126] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4817), 1, - sym_identifier, - STATE(2204), 1, - sym_type_arguments, + [66362] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66140] = 4, - ACTIONS(3512), 1, + ACTIONS(4922), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [66372] = 4, + ACTIONS(3521), 1, anon_sym_LT2, - ACTIONS(4817), 1, + ACTIONS(4167), 1, sym_identifier, - STATE(2198), 1, + STATE(2341), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66154] = 4, - ACTIONS(2655), 1, - anon_sym_LT2, - ACTIONS(4805), 1, - sym_identifier, - STATE(1151), 1, - sym_type_arguments, + [66386] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66168] = 4, - ACTIONS(2569), 1, + ACTIONS(4924), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [66396] = 4, + ACTIONS(791), 1, anon_sym_RPAREN, - ACTIONS(4819), 1, + ACTIONS(4926), 1, anon_sym_COMMA, - STATE(1659), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1742), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66182] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4821), 1, + [66410] = 4, + ACTIONS(3884), 1, + anon_sym_LBRACE, + ACTIONS(4928), 1, anon_sym_SEMI, - ACTIONS(4823), 1, - anon_sym_EQ, + STATE(888), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66196] = 2, + [66424] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4340), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4930), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [66206] = 4, - ACTIONS(4825), 1, - sym_identifier, - ACTIONS(4827), 1, - anon_sym_ref, - ACTIONS(4829), 1, - sym_mutable_specifier, + [66434] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66220] = 4, - ACTIONS(3919), 1, + ACTIONS(4932), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4831), 1, anon_sym_COMMA, - STATE(1819), 1, - aux_sym_field_declaration_list_repeat1, + [66444] = 4, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4934), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66234] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4833), 1, - sym_identifier, - STATE(2204), 1, - sym_type_arguments, + [66458] = 4, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(4936), 1, + anon_sym_SEMI, + STATE(956), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66248] = 2, + [66472] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4835), 3, + ACTIONS(4938), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [66258] = 2, + [66482] = 4, + ACTIONS(2550), 1, + anon_sym_RBRACK, + ACTIONS(4940), 1, + anon_sym_COMMA, + STATE(1726), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4837), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [66268] = 4, - ACTIONS(3919), 1, - anon_sym_RBRACE, - ACTIONS(4831), 1, - anon_sym_COMMA, - STATE(1861), 1, - aux_sym_field_declaration_list_repeat1, + [66496] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66282] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4839), 1, - sym_identifier, - STATE(2204), 1, - sym_type_arguments, + ACTIONS(4942), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [66506] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66296] = 4, - ACTIONS(3394), 1, + ACTIONS(4944), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [66516] = 4, + ACTIONS(4497), 1, anon_sym_RPAREN, - ACTIONS(4841), 1, + ACTIONS(4499), 1, anon_sym_COMMA, - STATE(1982), 1, - aux_sym_meta_arguments_repeat1, + STATE(1822), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66310] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4843), 1, - anon_sym_SEMI, - ACTIONS(4845), 1, - anon_sym_EQ, + [66530] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66324] = 4, - ACTIONS(4122), 1, + ACTIONS(4946), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [66540] = 4, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4847), 1, + ACTIONS(4948), 1, anon_sym_SEMI, - ACTIONS(4849), 1, + ACTIONS(4950), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66338] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4839), 1, - sym_identifier, - STATE(2198), 1, - sym_type_arguments, + [66554] = 3, + ACTIONS(3417), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66352] = 4, - ACTIONS(4851), 1, + ACTIONS(4952), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66566] = 4, + ACTIONS(4954), 1, anon_sym_RBRACE, - ACTIONS(4853), 1, + ACTIONS(4956), 1, anon_sym_COMMA, - STATE(1761), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66366] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4855), 1, - anon_sym_SEMI, - ACTIONS(4857), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66380] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4833), 1, - sym_identifier, - STATE(2198), 1, - sym_type_arguments, + STATE(1981), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66394] = 4, - ACTIONS(4286), 1, + [66580] = 4, + ACTIONS(3485), 1, + anon_sym_RBRACE, + ACTIONS(4958), 1, anon_sym_COMMA, - ACTIONS(4288), 1, - anon_sym_GT, - STATE(1958), 1, - aux_sym_type_parameters_repeat1, + STATE(1780), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66408] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4859), 1, - sym_identifier, - STATE(2204), 1, - sym_type_arguments, + [66594] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66422] = 4, - ACTIONS(3867), 1, + ACTIONS(4960), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [66604] = 4, + ACTIONS(3892), 1, anon_sym_where, - ACTIONS(4861), 1, + ACTIONS(4962), 1, anon_sym_SEMI, - STATE(2276), 1, + STATE(2282), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66436] = 4, - ACTIONS(2655), 1, - anon_sym_LT2, - ACTIONS(4807), 1, - sym_identifier, - STATE(885), 1, - sym_type_arguments, + [66618] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4964), 1, + anon_sym_SEMI, + ACTIONS(4966), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66450] = 4, - ACTIONS(4120), 1, + [66632] = 4, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(4863), 1, + ACTIONS(4968), 1, anon_sym_SEMI, - STATE(293), 1, + STATE(772), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66464] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3143), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [66474] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3139), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [66484] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4859), 1, - sym_identifier, - STATE(2198), 1, - sym_type_arguments, + [66646] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66498] = 4, - ACTIONS(995), 1, + ACTIONS(4505), 2, anon_sym_RPAREN, - ACTIONS(4311), 1, anon_sym_COMMA, - STATE(1816), 1, + [66658] = 4, + ACTIONS(4438), 1, + anon_sym_RPAREN, + ACTIONS(4440), 1, + anon_sym_COMMA, + STATE(1976), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66512] = 4, - ACTIONS(4865), 1, - anon_sym_SEMI, - ACTIONS(4867), 1, + [66672] = 3, + ACTIONS(4972), 1, anon_sym_COLON, - ACTIONS(4869), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66526] = 2, + ACTIONS(4970), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66684] = 4, + ACTIONS(4974), 1, + anon_sym_RBRACE, + ACTIONS(4976), 1, + anon_sym_COMMA, + STATE(1819), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4871), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [66536] = 4, - ACTIONS(4120), 1, + [66698] = 4, + ACTIONS(1081), 1, anon_sym_LBRACE, - ACTIONS(4873), 1, + ACTIONS(4978), 1, anon_sym_SEMI, - STATE(264), 1, + STATE(839), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66550] = 2, + [66712] = 4, + ACTIONS(3862), 1, + anon_sym_RBRACE, + ACTIONS(4980), 1, + anon_sym_COMMA, + STATE(1915), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4875), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + [66726] = 4, + ACTIONS(3862), 1, + anon_sym_RBRACE, + ACTIONS(4980), 1, anon_sym_COMMA, - [66560] = 4, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4877), 1, - anon_sym_SEMI, - STATE(2398), 1, - sym_where_clause, + STATE(1913), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66574] = 4, - ACTIONS(4142), 1, - anon_sym_COMMA, - ACTIONS(4144), 1, - anon_sym_GT, - STATE(1845), 1, - aux_sym_type_parameters_repeat1, + [66740] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4982), 1, + anon_sym_SEMI, + ACTIONS(4984), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66588] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4879), 1, - sym_identifier, - STATE(2204), 1, - sym_type_arguments, + [66754] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66602] = 4, - ACTIONS(1099), 1, - anon_sym_GT, - ACTIONS(4881), 1, + ACTIONS(4986), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1827), 1, - aux_sym_type_arguments_repeat1, + [66764] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(4988), 1, + anon_sym_SEMI, + ACTIONS(4990), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66616] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4879), 1, - sym_identifier, - STATE(2198), 1, - sym_type_arguments, + [66778] = 4, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + anon_sym_SEMI, + STATE(328), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66630] = 4, - ACTIONS(995), 1, - anon_sym_RPAREN, - ACTIONS(4311), 1, - anon_sym_COMMA, - STATE(1808), 1, - aux_sym_parameters_repeat1, + [66792] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66644] = 4, - ACTIONS(4347), 1, + ACTIONS(4994), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(4349), 1, - anon_sym_PIPE, - STATE(1802), 1, - aux_sym_closure_parameters_repeat1, + [66802] = 4, + ACTIONS(3379), 1, + anon_sym_RPAREN, + ACTIONS(4996), 1, + anon_sym_COMMA, + STATE(1860), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66658] = 2, + [66816] = 4, + ACTIONS(4430), 1, + anon_sym_COMMA, + ACTIONS(4432), 1, + anon_sym_GT, + STATE(1966), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4883), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + [66830] = 4, + ACTIONS(4410), 1, anon_sym_COMMA, - [66668] = 2, + ACTIONS(4412), 1, + anon_sym_GT, + STATE(1818), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4885), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [66678] = 4, - ACTIONS(3476), 1, + [66844] = 4, + ACTIONS(4998), 1, anon_sym_RBRACE, - ACTIONS(4887), 1, + ACTIONS(5000), 1, anon_sym_COMMA, - STATE(1745), 1, - aux_sym_use_list_repeat1, + STATE(1817), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66692] = 2, + [66858] = 4, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(5002), 1, + anon_sym_SEMI, + STATE(2271), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4889), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [66872] = 4, + ACTIONS(2536), 1, + anon_sym_RPAREN, + ACTIONS(5004), 1, anon_sym_COMMA, - [66702] = 4, - ACTIONS(1077), 1, - anon_sym_LBRACE, - ACTIONS(4891), 1, - anon_sym_SEMI, - STATE(944), 1, - sym_block, + STATE(1815), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66716] = 2, + [66886] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4893), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3148), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [66896] = 4, + ACTIONS(3948), 1, + anon_sym_GT, + ACTIONS(5006), 1, + anon_sym_COMMA, + STATE(1808), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66910] = 4, + ACTIONS(1105), 1, + anon_sym_GT, + ACTIONS(5008), 1, anon_sym_COMMA, - [66726] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + STATE(1841), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4895), 2, - anon_sym_RPAREN, + [66924] = 4, + ACTIONS(3934), 1, + anon_sym_GT, + ACTIONS(5010), 1, anon_sym_COMMA, - [66738] = 2, + STATE(1808), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4897), 3, - anon_sym_SEMI, + [66938] = 4, + ACTIONS(5012), 1, anon_sym_RBRACE, + ACTIONS(5014), 1, anon_sym_COMMA, - [66748] = 4, - ACTIONS(987), 1, - anon_sym_RPAREN, - ACTIONS(4302), 1, - anon_sym_COMMA, - STATE(1835), 1, - aux_sym_parameters_repeat1, + STATE(1796), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66762] = 2, + [66952] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4899), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [66772] = 4, - ACTIONS(3869), 1, - anon_sym_LT, - ACTIONS(4901), 1, + ACTIONS(5016), 3, anon_sym_EQ, - STATE(2380), 1, - sym_type_parameters, + anon_sym_COMMA, + anon_sym_GT, + [66962] = 4, + ACTIONS(1081), 1, + anon_sym_LBRACE, + ACTIONS(5018), 1, + anon_sym_SEMI, + STATE(936), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66786] = 4, - ACTIONS(3891), 1, - anon_sym_LBRACE, - ACTIONS(4903), 1, - anon_sym_SEMI, - STATE(817), 1, - sym_declaration_list, + [66976] = 4, + ACTIONS(747), 1, + anon_sym_RPAREN, + ACTIONS(4414), 1, + anon_sym_COMMA, + STATE(1926), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66800] = 4, - ACTIONS(4120), 1, + [66990] = 4, + ACTIONS(4139), 1, anon_sym_LBRACE, - ACTIONS(4905), 1, + ACTIONS(5020), 1, anon_sym_SEMI, - STATE(418), 1, + STATE(381), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66814] = 2, + [67004] = 4, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(5022), 1, + anon_sym_SEMI, + ACTIONS(5024), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4907), 3, + [67018] = 4, + ACTIONS(4139), 1, + anon_sym_LBRACE, + ACTIONS(5026), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [66824] = 2, + STATE(330), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4909), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [67032] = 4, + ACTIONS(3950), 1, + anon_sym_GT, + ACTIONS(5028), 1, anon_sym_COMMA, - [66834] = 2, + STATE(1808), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4911), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [66844] = 4, - ACTIONS(987), 1, + [67046] = 4, + ACTIONS(747), 1, anon_sym_RPAREN, - ACTIONS(4302), 1, + ACTIONS(4414), 1, anon_sym_COMMA, - STATE(1808), 1, + STATE(1742), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66858] = 3, - ACTIONS(3566), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4913), 2, - anon_sym_RPAREN, + [67060] = 4, + ACTIONS(3868), 1, + anon_sym_GT, + ACTIONS(5030), 1, anon_sym_COMMA, - [66870] = 4, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_SEMI, - STATE(2197), 1, - sym_where_clause, + STATE(1808), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66884] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + [67074] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4913), 2, - anon_sym_RPAREN, + ACTIONS(5032), 3, + anon_sym_EQ, anon_sym_COMMA, - [66896] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4917), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_GT, + [67084] = 4, + ACTIONS(3942), 1, + anon_sym_RBRACE, + ACTIONS(5034), 1, anon_sym_COMMA, - [66906] = 3, - ACTIONS(3424), 1, - anon_sym_COLON_COLON, + STATE(1791), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4919), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66918] = 4, - ACTIONS(4122), 1, + [67098] = 4, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(4921), 1, + ACTIONS(5036), 1, anon_sym_SEMI, - ACTIONS(4923), 1, + ACTIONS(5038), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66932] = 4, - ACTIONS(4925), 1, + [67112] = 4, + ACTIONS(3942), 1, anon_sym_RBRACE, - ACTIONS(4927), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - STATE(1983), 1, + STATE(1750), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66946] = 2, + [67126] = 4, + ACTIONS(5040), 1, + anon_sym_RBRACE, + ACTIONS(5042), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4929), 3, + [67140] = 4, + ACTIONS(4161), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [66956] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4198), 1, - sym_identifier, - STATE(2204), 1, - sym_type_arguments, + ACTIONS(5044), 1, + anon_sym_SEMI, + ACTIONS(5046), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67154] = 4, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_SEMI, + STATE(2334), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66970] = 2, + [67168] = 4, + ACTIONS(3892), 1, + anon_sym_where, + ACTIONS(5050), 1, + anon_sym_SEMI, + STATE(2321), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4931), 3, + [67182] = 4, + ACTIONS(2546), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [66980] = 4, - ACTIONS(4304), 1, - anon_sym_RPAREN, - ACTIONS(4306), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - STATE(1929), 1, - aux_sym_parameters_repeat1, + STATE(1815), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66994] = 4, - ACTIONS(3512), 1, - anon_sym_LT2, - ACTIONS(4198), 1, - sym_identifier, - STATE(2198), 1, - sym_type_arguments, + [67196] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67008] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4933), 1, - anon_sym_as, - ACTIONS(4935), 1, - anon_sym_GT, + ACTIONS(5054), 2, + anon_sym_const, + sym_mutable_specifier, + [67205] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67022] = 4, - ACTIONS(1077), 1, - anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(5056), 2, + sym_identifier, + sym_metavariable, + [67214] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(5058), 1, anon_sym_SEMI, - STATE(781), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67036] = 4, - ACTIONS(4120), 1, + [67225] = 3, + ACTIONS(3908), 1, anon_sym_LBRACE, - ACTIONS(4939), 1, - anon_sym_SEMI, - STATE(445), 1, - sym_block, + STATE(816), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67050] = 4, - ACTIONS(4120), 1, + [67236] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4941), 1, - anon_sym_SEMI, - STATE(303), 1, + STATE(38), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67064] = 4, - ACTIONS(4943), 1, - sym_identifier, - ACTIONS(4945), 1, - anon_sym_ref, - ACTIONS(4947), 1, - sym_mutable_specifier, + [67247] = 3, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(836), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67078] = 4, - ACTIONS(4949), 1, - sym_identifier, - ACTIONS(4951), 1, - anon_sym_ref, - ACTIONS(4953), 1, - sym_mutable_specifier, + [67258] = 3, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(856), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67092] = 4, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4957), 1, - anon_sym_ref, - ACTIONS(4959), 1, - sym_mutable_specifier, + [67269] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(5060), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67106] = 4, - ACTIONS(2304), 1, - anon_sym_RPAREN, - ACTIONS(4961), 1, - anon_sym_COMMA, - STATE(1847), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [67280] = 3, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(785), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67120] = 2, + [67291] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4963), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4267), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [67130] = 4, - ACTIONS(2669), 1, - anon_sym_LBRACE, - ACTIONS(4965), 1, - anon_sym_COLON_COLON, - STATE(1038), 1, - sym_field_initializer_list, + [67300] = 3, + ACTIONS(5062), 1, + sym_identifier, + ACTIONS(5064), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67144] = 4, - ACTIONS(4412), 1, - anon_sym_COMMA, - ACTIONS(4414), 1, - anon_sym_GT, - STATE(1909), 1, - aux_sym_type_arguments_repeat1, + [67311] = 3, + ACTIONS(3918), 1, + anon_sym_COLON_COLON, + ACTIONS(5066), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67158] = 3, - ACTIONS(4345), 1, - anon_sym_COLON, + [67322] = 3, + ACTIONS(3904), 1, + anon_sym_COLON_COLON, + ACTIONS(5066), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4967), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [67170] = 4, - ACTIONS(2494), 1, + [67333] = 3, + ACTIONS(3900), 1, + anon_sym_COLON_COLON, + ACTIONS(5066), 1, anon_sym_RPAREN, - ACTIONS(4969), 1, - anon_sym_COMMA, - STATE(1838), 1, - aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67184] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_SEMI, - ACTIONS(4973), 1, - anon_sym_EQ, + [67344] = 3, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(903), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67198] = 4, - ACTIONS(3853), 1, - anon_sym_GT, - ACTIONS(4975), 1, - anon_sym_COMMA, - STATE(1796), 1, - aux_sym_type_parameters_repeat1, + [67355] = 3, + ACTIONS(3880), 1, + anon_sym_LBRACE, + STATE(299), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67212] = 4, - ACTIONS(4967), 1, - anon_sym_PIPE, - ACTIONS(4977), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_closure_parameters_repeat1, + [67366] = 3, + ACTIONS(3908), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67226] = 4, - ACTIONS(3925), 1, - anon_sym_GT, - ACTIONS(4980), 1, - anon_sym_COMMA, - STATE(1796), 1, - aux_sym_type_parameters_repeat1, + [67377] = 3, + ACTIONS(3908), 1, + anon_sym_LBRACE, + STATE(915), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67240] = 4, - ACTIONS(4982), 1, - anon_sym_SEMI, - ACTIONS(4984), 1, - anon_sym_COLON, - ACTIONS(4986), 1, - anon_sym_EQ, + [67388] = 3, + ACTIONS(3650), 1, + anon_sym_COLON_COLON, + ACTIONS(5068), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67254] = 4, - ACTIONS(295), 1, + [67399] = 3, + ACTIONS(3908), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, - anon_sym_PLUS, - STATE(983), 1, - sym_block, + STATE(925), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67268] = 4, - ACTIONS(4120), 1, + [67410] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4988), 1, - anon_sym_SEMI, - STATE(276), 1, - sym_block, + STATE(352), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67282] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4990), 1, + [67421] = 3, + ACTIONS(4515), 1, + sym_identifier, + ACTIONS(4519), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67432] = 3, + ACTIONS(5070), 1, anon_sym_SEMI, - ACTIONS(4992), 1, - anon_sym_EQ, + ACTIONS(5072), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67296] = 4, - ACTIONS(3887), 1, - anon_sym_RBRACE, - ACTIONS(4994), 1, - anon_sym_COMMA, - STATE(1754), 1, - aux_sym_field_initializer_list_repeat1, + [67443] = 3, + ACTIONS(5074), 1, + anon_sym_LBRACK, + ACTIONS(5076), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67310] = 4, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(4996), 1, - anon_sym_SEMI, - ACTIONS(4998), 1, - anon_sym_EQ, + [67454] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67324] = 4, - ACTIONS(5000), 1, - anon_sym_RBRACE, - ACTIONS(5002), 1, + ACTIONS(4521), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1884), 1, - aux_sym_field_declaration_list_repeat1, + [67463] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(86), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67338] = 4, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(5004), 1, - anon_sym_SEMI, - STATE(2357), 1, - sym_where_clause, + [67474] = 3, + ACTIONS(295), 1, + anon_sym_LBRACE, + STATE(986), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67352] = 3, - ACTIONS(5008), 1, + [67485] = 3, + ACTIONS(4070), 1, anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5006), 2, + [67496] = 3, + ACTIONS(5078), 1, + anon_sym_SEMI, + ACTIONS(5080), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [67364] = 3, - ACTIONS(4186), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [67376] = 4, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(5010), 1, - anon_sym_SEMI, - STATE(2302), 1, - sym_where_clause, + [67507] = 3, + ACTIONS(3515), 1, + anon_sym_LPAREN, + STATE(1285), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67390] = 4, - ACTIONS(3458), 1, - anon_sym_LBRACE, - ACTIONS(5012), 1, - sym_identifier, - STATE(1851), 1, - sym_use_list, + [67518] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67404] = 4, - ACTIONS(5014), 1, - anon_sym_for, - ACTIONS(5016), 1, - anon_sym_loop, - ACTIONS(5018), 1, - anon_sym_while, + ACTIONS(5082), 2, + sym_identifier, + sym_metavariable, + [67527] = 3, + ACTIONS(3918), 1, + anon_sym_COLON_COLON, + ACTIONS(5084), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67418] = 4, - ACTIONS(4120), 1, + [67538] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(5020), 1, - anon_sym_SEMI, - STATE(364), 1, - sym_block, + STATE(413), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67432] = 2, + [67549] = 3, + ACTIONS(3904), 1, + anon_sym_COLON_COLON, + ACTIONS(5084), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [67442] = 4, - ACTIONS(3867), 1, - anon_sym_where, - ACTIONS(5022), 1, - anon_sym_SEMI, - STATE(2337), 1, - sym_where_clause, + [67560] = 3, + ACTIONS(3900), 1, + anon_sym_COLON_COLON, + ACTIONS(5084), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67456] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + [67571] = 3, + ACTIONS(3650), 1, + anon_sym_COLON_COLON, + ACTIONS(5086), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5024), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [67468] = 2, + [67582] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3154), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [67478] = 4, - ACTIONS(505), 1, - anon_sym_RPAREN, - ACTIONS(3208), 1, + ACTIONS(4538), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1777), 1, - aux_sym_arguments_repeat1, + [67591] = 3, + ACTIONS(2694), 1, + anon_sym_LBRACE, + STATE(1026), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67492] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, + [67602] = 3, + ACTIONS(2656), 1, + anon_sym_LPAREN, + STATE(786), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5026), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67504] = 2, + [67613] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5028), 3, - anon_sym_SEMI, + ACTIONS(5088), 2, anon_sym_RBRACE, anon_sym_COMMA, - [67514] = 3, - ACTIONS(5032), 1, - anon_sym_EQ, + [67622] = 3, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(797), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5030), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67526] = 2, + [67633] = 3, + ACTIONS(5090), 1, + anon_sym_LPAREN, + ACTIONS(5092), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5034), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [67536] = 4, - ACTIONS(5036), 1, - anon_sym_RPAREN, - ACTIONS(5038), 1, - anon_sym_COMMA, - STATE(1982), 1, - aux_sym_meta_arguments_repeat1, + [67644] = 3, + ACTIONS(295), 1, + anon_sym_LBRACE, + STATE(1037), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67550] = 4, - ACTIONS(3917), 1, - anon_sym_RBRACE, - ACTIONS(4659), 1, - anon_sym_COMMA, - STATE(1788), 1, - aux_sym_enum_variant_list_repeat2, + [67655] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67564] = 3, - ACTIONS(5041), 1, - anon_sym_SEMI, - ACTIONS(5043), 1, - anon_sym_RBRACE, + ACTIONS(5094), 2, + sym_identifier, + sym_metavariable, + [67664] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(52), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67575] = 3, - ACTIONS(4218), 1, + [67675] = 3, + ACTIONS(4177), 1, anon_sym_LBRACE, - STATE(447), 1, + STATE(412), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67586] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, - anon_sym_SEMI, + [67686] = 3, + ACTIONS(3890), 1, + anon_sym_LBRACE, + STATE(414), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67597] = 3, - ACTIONS(3865), 1, - anon_sym_LBRACE, - STATE(845), 1, - sym_field_declaration_list, + [67697] = 3, + ACTIONS(5096), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67608] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(758), 1, - sym_parameters, + [67708] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67619] = 3, - ACTIONS(3891), 1, + ACTIONS(5100), 2, + sym_identifier, + sym_metavariable, + [67717] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(849), 1, + STATE(829), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67630] = 3, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(855), 1, - sym_declaration_list, + [67728] = 3, + ACTIONS(5102), 1, + anon_sym_LT, + STATE(606), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67641] = 3, - ACTIONS(3885), 1, + [67739] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(411), 1, + STATE(401), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67652] = 3, - ACTIONS(4146), 1, + [67750] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(800), 1, - sym_enum_variant_list, + STATE(821), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67663] = 3, - ACTIONS(3885), 1, + [67761] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(390), 1, + STATE(398), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67674] = 2, + [67772] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5047), 2, - sym_identifier, - sym_metavariable, - [67683] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(47), 1, - sym_block, + ACTIONS(4505), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [67781] = 3, + ACTIONS(3515), 1, + anon_sym_LPAREN, + STATE(1540), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67694] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(246), 1, - sym_declaration_list, + [67792] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(5104), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67705] = 3, - ACTIONS(5049), 1, - sym_identifier, - ACTIONS(5051), 1, - sym_mutable_specifier, + [67803] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67716] = 3, - ACTIONS(4146), 1, + ACTIONS(5106), 2, + sym_float_literal, + sym_integer_literal, + [67812] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(895), 1, - sym_enum_variant_list, + STATE(434), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67727] = 3, - ACTIONS(3643), 1, - anon_sym_COLON_COLON, - ACTIONS(5053), 1, - anon_sym_RPAREN, + [67823] = 3, + ACTIONS(3880), 1, + anon_sym_LBRACE, + STATE(378), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67738] = 3, - ACTIONS(3895), 1, - anon_sym_COLON_COLON, - ACTIONS(5055), 1, - anon_sym_RPAREN, + [67834] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67749] = 3, - ACTIONS(3865), 1, + ACTIONS(5108), 2, + anon_sym_const, + sym_mutable_specifier, + [67843] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(900), 1, - sym_field_declaration_list, + STATE(808), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67760] = 3, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(5055), 1, - anon_sym_RPAREN, + [67854] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(5110), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67771] = 3, - ACTIONS(3865), 1, + [67865] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(917), 1, - sym_field_declaration_list, + STATE(242), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67782] = 3, - ACTIONS(3913), 1, - anon_sym_COLON_COLON, - ACTIONS(5055), 1, - anon_sym_RPAREN, + [67876] = 3, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67793] = 2, + [67887] = 3, + ACTIONS(3880), 1, + anon_sym_LBRACE, + STATE(314), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5057), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67802] = 3, - ACTIONS(5059), 1, - anon_sym_SEMI, - ACTIONS(5061), 1, - anon_sym_as, + [67898] = 3, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67813] = 3, - ACTIONS(3885), 1, + [67909] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(310), 1, + STATE(780), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67824] = 3, - ACTIONS(2276), 1, - anon_sym_SQUOTE, - STATE(2049), 1, - sym_lifetime, + [67920] = 3, + ACTIONS(3880), 1, + anon_sym_LBRACE, + STATE(312), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67835] = 3, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4959), 1, - sym_mutable_specifier, + [67931] = 3, + ACTIONS(3890), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67846] = 2, + [67942] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(5112), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5063), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67855] = 2, + [67953] = 3, + ACTIONS(5114), 1, + sym_identifier, + ACTIONS(5116), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4913), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [67864] = 3, - ACTIONS(5041), 1, - anon_sym_SEMI, - ACTIONS(5065), 1, - anon_sym_RBRACE, + [67964] = 3, + ACTIONS(3515), 1, + anon_sym_LPAREN, + STATE(1293), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67875] = 3, - ACTIONS(3865), 1, + [67975] = 3, + ACTIONS(3890), 1, anon_sym_LBRACE, - STATE(829), 1, + STATE(386), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67886] = 3, - ACTIONS(3891), 1, + [67986] = 3, + ACTIONS(4199), 1, anon_sym_LBRACE, - STATE(831), 1, - sym_declaration_list, + STATE(769), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67897] = 3, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(835), 1, - sym_declaration_list, + [67997] = 3, + ACTIONS(4618), 1, + sym_identifier, + ACTIONS(4622), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67908] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, - STATE(1275), 1, - sym_parameters, + [68008] = 3, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(869), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67919] = 3, - ACTIONS(3891), 1, + [68019] = 3, + ACTIONS(3908), 1, anon_sym_LBRACE, - STATE(841), 1, - sym_declaration_list, + STATE(761), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67930] = 3, - ACTIONS(4065), 1, - anon_sym_RBRACE, - ACTIONS(5041), 1, + [68030] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(5118), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67941] = 2, + [68041] = 3, + ACTIONS(3908), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5067), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67950] = 3, - ACTIONS(3875), 1, + [68052] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(266), 1, - sym_field_declaration_list, + STATE(741), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67961] = 3, - ACTIONS(295), 1, + [68063] = 3, + ACTIONS(4177), 1, anon_sym_LBRACE, - STATE(1020), 1, - sym_block, + STATE(319), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68074] = 3, + ACTIONS(2912), 1, + anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68085] = 3, + ACTIONS(4103), 1, + anon_sym_RBRACE, + ACTIONS(5078), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68096] = 3, + ACTIONS(3515), 1, + anon_sym_LPAREN, + STATE(1521), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67972] = 2, + [68107] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5069), 2, + ACTIONS(4586), 2, anon_sym_RBRACE, anon_sym_COMMA, - [67981] = 3, - ACTIONS(3885), 1, + [68116] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(270), 1, + STATE(272), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67992] = 3, - ACTIONS(5071), 1, - anon_sym_SEMI, - ACTIONS(5073), 1, - anon_sym_as, + [68127] = 3, + ACTIONS(4177), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68003] = 2, + [68138] = 3, + ACTIONS(295), 1, + anon_sym_LBRACE, + STATE(982), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5075), 2, - sym_identifier, - sym_metavariable, - [68012] = 3, - ACTIONS(3865), 1, - anon_sym_LBRACE, - STATE(834), 1, - sym_field_declaration_list, + [68149] = 3, + ACTIONS(2998), 1, + anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68023] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(262), 1, - sym_declaration_list, + [68160] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68034] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(248), 1, - sym_declaration_list, + ACTIONS(5120), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [68169] = 3, + ACTIONS(5078), 1, + anon_sym_SEMI, + ACTIONS(5122), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68045] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, - STATE(1535), 1, - sym_parameters, + [68180] = 3, + ACTIONS(3006), 1, + anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68056] = 3, - ACTIONS(3865), 1, - anon_sym_LBRACE, - STATE(844), 1, - sym_field_declaration_list, + [68191] = 3, + ACTIONS(5124), 1, + anon_sym_SEMI, + ACTIONS(5126), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68067] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(5077), 1, - anon_sym_SEMI, + [68202] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68078] = 3, - ACTIONS(3891), 1, + ACTIONS(4603), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [68211] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, STATE(861), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68089] = 3, - ACTIONS(3891), 1, + [68222] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(865), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68100] = 3, - ACTIONS(2647), 1, + [68233] = 3, + ACTIONS(3515), 1, anon_sym_LPAREN, - STATE(868), 1, + STATE(1538), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68111] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym_declaration_list, + [68244] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68122] = 3, - ACTIONS(3891), 1, + ACTIONS(5128), 2, + sym_identifier, + sym_metavariable, + [68253] = 3, + ACTIONS(3908), 1, anon_sym_LBRACE, - STATE(899), 1, - sym_declaration_list, + STATE(798), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68133] = 3, - ACTIONS(3875), 1, - anon_sym_LBRACE, - STATE(282), 1, - sym_field_declaration_list, + [68264] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68144] = 3, - ACTIONS(3885), 1, + ACTIONS(5130), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68273] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(285), 1, + STATE(346), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68155] = 3, - ACTIONS(3885), 1, + [68284] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(328), 1, + STATE(910), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68166] = 2, + [68295] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4776), 2, + ACTIONS(5132), 2, anon_sym_RBRACE, anon_sym_COMMA, - [68175] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4606), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [68184] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5079), 2, - sym_identifier, - sym_metavariable, - [68193] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(242), 1, - sym_declaration_list, + [68304] = 3, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(5134), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68204] = 3, - ACTIONS(3885), 1, + [68315] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(396), 1, + STATE(918), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68215] = 3, - ACTIONS(3891), 1, + [68326] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(878), 1, + STATE(930), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68226] = 3, - ACTIONS(4122), 1, + [68337] = 3, + ACTIONS(4161), 1, anon_sym_PLUS, - ACTIONS(5081), 1, - anon_sym_SEMI, + ACTIONS(5136), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68237] = 3, - ACTIONS(4146), 1, - anon_sym_LBRACE, - STATE(905), 1, - sym_enum_variant_list, + [68348] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68248] = 3, - ACTIONS(3891), 1, + ACTIONS(5138), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [68357] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(874), 1, + STATE(349), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68259] = 2, + [68368] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(5140), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4714), 2, - anon_sym_COMMA, - anon_sym_GT, - [68268] = 3, - ACTIONS(3891), 1, + [68379] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(871), 1, + STATE(748), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68279] = 3, - ACTIONS(3891), 1, + [68390] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(869), 1, + STATE(750), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68290] = 2, + [68401] = 3, + ACTIONS(2284), 1, + anon_sym_SQUOTE, + STATE(2155), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4692), 2, - anon_sym_COMMA, - anon_sym_GT, - [68299] = 3, - ACTIONS(5083), 1, - anon_sym_LBRACK, - ACTIONS(5085), 1, - anon_sym_BANG, + [68412] = 3, + ACTIONS(3880), 1, + anon_sym_LBRACE, + STATE(377), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68310] = 2, + [68423] = 3, + ACTIONS(2664), 1, + anon_sym_LT2, + STATE(1019), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5087), 2, - sym_identifier, - sym_metavariable, - [68319] = 2, + [68434] = 3, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(849), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4685), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [68328] = 2, + [68445] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5089), 2, + ACTIONS(4899), 2, anon_sym_RBRACE, anon_sym_COMMA, - [68337] = 3, - ACTIONS(5091), 1, - anon_sym_LBRACK, - ACTIONS(5093), 1, - anon_sym_BANG, + [68454] = 3, + ACTIONS(3908), 1, + anon_sym_LBRACE, + STATE(870), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68348] = 3, - ACTIONS(4146), 1, - anon_sym_LBRACE, - STATE(826), 1, - sym_enum_variant_list, + [68465] = 3, + ACTIONS(3967), 1, + anon_sym_COLON, + STATE(1842), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68359] = 2, + [68476] = 3, + ACTIONS(2878), 1, + anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4264), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [68368] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(70), 1, - sym_closure_parameters, + [68487] = 3, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(891), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68379] = 3, - ACTIONS(3865), 1, - anon_sym_LBRACE, - STATE(818), 1, - sym_field_declaration_list, + [68498] = 3, + ACTIONS(3894), 1, + anon_sym_LT, + STATE(591), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68390] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(5095), 1, - anon_sym_SEMI, + [68509] = 3, + ACTIONS(2656), 1, + anon_sym_LPAREN, + STATE(897), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68401] = 3, - ACTIONS(3865), 1, + [68520] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(813), 1, - sym_field_declaration_list, + STATE(799), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68412] = 3, - ACTIONS(3891), 1, + [68531] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(812), 1, + STATE(803), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68423] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(927), 1, - sym_parameters, + [68542] = 3, + ACTIONS(4161), 1, + anon_sym_PLUS, + ACTIONS(5142), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68434] = 2, + [68553] = 3, + ACTIONS(3880), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5036), 2, + [68564] = 3, + ACTIONS(4109), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [68443] = 2, + ACTIONS(5078), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5097), 2, - anon_sym_const, - sym_mutable_specifier, - [68452] = 2, + [68575] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4650), 2, - anon_sym_RPAREN, + ACTIONS(4679), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [68461] = 3, - ACTIONS(4071), 1, - anon_sym_COLON, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68472] = 3, - ACTIONS(2669), 1, + [68584] = 3, + ACTIONS(3884), 1, anon_sym_LBRACE, - STATE(1038), 1, - sym_field_initializer_list, + STATE(832), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68483] = 3, - ACTIONS(3506), 1, + [68595] = 3, + ACTIONS(3515), 1, anon_sym_LPAREN, - STATE(1521), 1, + STATE(1560), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68494] = 3, - ACTIONS(2276), 1, + [68606] = 3, + ACTIONS(2284), 1, anon_sym_SQUOTE, - STATE(1828), 1, + STATE(1736), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68505] = 3, - ACTIONS(295), 1, + [68617] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(1040), 1, - sym_block, + STATE(273), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68516] = 3, - ACTIONS(5099), 1, - anon_sym_LPAREN, - ACTIONS(5101), 1, + [68628] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, + STATE(244), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68527] = 3, - ACTIONS(295), 1, - anon_sym_LBRACE, - STATE(1041), 1, - sym_block, + [68639] = 3, + ACTIONS(3515), 1, + anon_sym_LPAREN, + STATE(1520), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68538] = 3, - ACTIONS(15), 1, + [68650] = 3, + ACTIONS(4199), 1, anon_sym_LBRACE, - STATE(35), 1, - sym_block, + STATE(919), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68549] = 3, - ACTIONS(801), 1, + [68661] = 3, + ACTIONS(4177), 1, anon_sym_LBRACE, - STATE(224), 1, - sym_block, + STATE(316), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68560] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(80), 1, - sym_closure_parameters, + [68672] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68571] = 3, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(791), 1, - sym_declaration_list, + ACTIONS(4480), 2, + anon_sym_COMMA, + anon_sym_GT, + [68681] = 3, + ACTIONS(3515), 1, + anon_sym_LPAREN, + STATE(1280), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68692] = 3, + ACTIONS(4078), 1, + anon_sym_RBRACE, + ACTIONS(5078), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68582] = 3, - ACTIONS(3891), 1, + [68703] = 3, + ACTIONS(907), 1, anon_sym_LBRACE, - STATE(790), 1, - sym_declaration_list, + STATE(223), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68593] = 3, - ACTIONS(3885), 1, + [68714] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(421), 1, + STATE(379), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68604] = 3, - ACTIONS(295), 1, + [68725] = 3, + ACTIONS(3644), 1, + anon_sym_BANG, + ACTIONS(5144), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68736] = 3, + ACTIONS(4084), 1, + anon_sym_RPAREN, + ACTIONS(5078), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68747] = 3, + ACTIONS(907), 1, anon_sym_LBRACE, - STATE(1015), 1, + STATE(212), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68615] = 3, - ACTIONS(3875), 1, - anon_sym_LBRACE, - STATE(385), 1, - sym_field_declaration_list, + [68758] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68626] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, - STATE(1571), 1, - sym_parameters, + ACTIONS(4201), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68767] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68637] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(5103), 1, - anon_sym_SEMI, + ACTIONS(5146), 2, + anon_sym_const, + sym_mutable_specifier, + [68776] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68648] = 3, - ACTIONS(3891), 1, + ACTIONS(5148), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [68785] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(786), 1, - sym_declaration_list, + STATE(44), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68659] = 3, - ACTIONS(3875), 1, + [68796] = 3, + ACTIONS(3890), 1, anon_sym_LBRACE, - STATE(412), 1, + STATE(308), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68670] = 2, + [68807] = 3, + ACTIONS(5150), 1, + anon_sym_LPAREN, + ACTIONS(5152), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5105), 2, - sym_float_literal, - sym_integer_literal, - [68679] = 3, - ACTIONS(3891), 1, + [68818] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(773), 1, + STATE(407), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68690] = 3, - ACTIONS(3891), 1, + [68829] = 3, + ACTIONS(295), 1, anon_sym_LBRACE, - STATE(772), 1, - sym_declaration_list, + STATE(1038), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68701] = 3, - ACTIONS(5107), 1, - anon_sym_SEMI, - ACTIONS(5109), 1, - anon_sym_as, + [68840] = 3, + ACTIONS(3890), 1, + anon_sym_LBRACE, + STATE(322), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68712] = 3, - ACTIONS(3891), 1, + [68851] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(759), 1, + STATE(310), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68723] = 3, - ACTIONS(4218), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_enum_variant_list, + [68862] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(94), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68734] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(5111), 1, - anon_sym_SEMI, + [68873] = 3, + ACTIONS(3890), 1, + anon_sym_LBRACE, + STATE(301), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68745] = 3, - ACTIONS(3891), 1, + [68884] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(764), 1, + STATE(345), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68756] = 3, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(763), 1, - sym_declaration_list, + [68895] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68767] = 3, - ACTIONS(5041), 1, - anon_sym_SEMI, - ACTIONS(5113), 1, - anon_sym_RPAREN, + ACTIONS(5154), 2, + sym_identifier, + sym_metavariable, + [68904] = 3, + ACTIONS(907), 1, + anon_sym_LBRACE, + STATE(224), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68778] = 2, + [68915] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4537), 2, - anon_sym_RBRACE, + ACTIONS(4723), 2, anon_sym_COMMA, - [68787] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, - STATE(1546), 1, - sym_parameters, + anon_sym_GT, + [68924] = 3, + ACTIONS(3890), 1, + anon_sym_LBRACE, + STATE(385), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68798] = 2, + [68935] = 3, + ACTIONS(3884), 1, + anon_sym_LBRACE, + STATE(794), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4514), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [68807] = 2, + [68946] = 3, + ACTIONS(907), 1, + anon_sym_LBRACE, + STATE(238), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5115), 2, - anon_sym_const, - sym_mutable_specifier, - [68816] = 3, - ACTIONS(4176), 1, - anon_sym_COLON_COLON, - ACTIONS(5117), 1, - anon_sym_BANG, + [68957] = 3, + ACTIONS(3880), 1, + anon_sym_LBRACE, + STATE(269), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68827] = 3, - ACTIONS(2905), 1, - anon_sym_COLON, - ACTIONS(4122), 1, - anon_sym_PLUS, + [68968] = 3, + ACTIONS(5156), 1, + sym_identifier, + ACTIONS(5158), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68838] = 3, - ACTIONS(4184), 1, - anon_sym_COLON_COLON, - ACTIONS(5117), 1, - anon_sym_BANG, + [68979] = 3, + ACTIONS(3890), 1, + anon_sym_LBRACE, + STATE(297), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68849] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, - STATE(1271), 1, - sym_parameters, + [68990] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68860] = 3, - ACTIONS(3885), 1, + ACTIONS(4796), 2, + anon_sym_COMMA, + anon_sym_GT, + [68999] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(338), 1, + STATE(427), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68871] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(311), 1, - sym_declaration_list, + [69010] = 3, + ACTIONS(4251), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68882] = 3, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(924), 1, - sym_declaration_list, + [69021] = 3, + ACTIONS(4241), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68893] = 3, - ACTIONS(3891), 1, + [69032] = 3, + ACTIONS(3880), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(409), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68904] = 3, - ACTIONS(5119), 1, - sym_identifier, - ACTIONS(5121), 1, - sym_mutable_specifier, + [69043] = 3, + ACTIONS(5162), 1, + anon_sym_SEMI, + ACTIONS(5164), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68915] = 3, - ACTIONS(3099), 1, - anon_sym_COLON, - ACTIONS(4122), 1, - anon_sym_PLUS, + [69054] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68926] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(5123), 1, - anon_sym_SEMI, + ACTIONS(4780), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [69063] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68937] = 3, - ACTIONS(3113), 1, - anon_sym_COLON, - ACTIONS(4122), 1, - anon_sym_PLUS, + ACTIONS(4870), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [69072] = 3, + ACTIONS(5078), 1, + anon_sym_SEMI, + ACTIONS(5166), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68948] = 3, - ACTIONS(3891), 1, - anon_sym_LBRACE, - STATE(947), 1, - sym_declaration_list, + [69083] = 3, + ACTIONS(5078), 1, + anon_sym_SEMI, + ACTIONS(5168), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68959] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(306), 1, - sym_declaration_list, + [69094] = 3, + ACTIONS(5170), 1, + anon_sym_SEMI, + ACTIONS(5172), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68970] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(250), 1, - sym_declaration_list, + [69105] = 3, + ACTIONS(3515), 1, + anon_sym_LPAREN, + STATE(1537), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68981] = 3, - ACTIONS(4096), 1, - anon_sym_RPAREN, - ACTIONS(5041), 1, - anon_sym_SEMI, + [69116] = 3, + ACTIONS(2656), 1, + anon_sym_LPAREN, + STATE(932), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68992] = 2, + [69127] = 2, + ACTIONS(803), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5125), 2, + [69135] = 2, + ACTIONS(5174), 1, sym_identifier, - sym_metavariable, - [69001] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(257), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69012] = 3, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(4122), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69023] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(44), 1, - sym_block, + [69143] = 2, + ACTIONS(5176), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69034] = 2, + [69151] = 2, + ACTIONS(5178), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4425), 2, - anon_sym_COMMA, - anon_sym_GT, - [69043] = 3, - ACTIONS(4067), 1, - anon_sym_RPAREN, - ACTIONS(5041), 1, - anon_sym_SEMI, + [69159] = 2, + ACTIONS(2457), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69054] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(343), 1, - sym_declaration_list, + [69167] = 2, + ACTIONS(5180), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69065] = 3, - ACTIONS(801), 1, - anon_sym_LBRACE, - STATE(240), 1, - sym_block, + [69175] = 2, + ACTIONS(5168), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69076] = 3, - ACTIONS(4057), 1, - anon_sym_RBRACE, - ACTIONS(5041), 1, - anon_sym_SEMI, + [69183] = 2, + ACTIONS(4768), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69087] = 3, - ACTIONS(4825), 1, + [69191] = 2, + ACTIONS(5182), 1, sym_identifier, - ACTIONS(4829), 1, - sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69098] = 3, - ACTIONS(5041), 1, + [69199] = 2, + ACTIONS(5184), 1, anon_sym_SEMI, - ACTIONS(5127), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69109] = 3, - ACTIONS(801), 1, - anon_sym_LBRACE, - STATE(239), 1, - sym_block, + [69207] = 2, + ACTIONS(5186), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69120] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, - STATE(1531), 1, - sym_parameters, + [69215] = 2, + ACTIONS(5188), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69131] = 3, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(657), 1, - sym_type_parameters, + [69223] = 2, + ACTIONS(5190), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69142] = 3, - ACTIONS(5131), 1, - anon_sym_SEMI, - ACTIONS(5133), 1, - anon_sym_as, + [69231] = 2, + ACTIONS(5192), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69153] = 3, - ACTIONS(3875), 1, - anon_sym_LBRACE, - STATE(318), 1, - sym_field_declaration_list, + [69239] = 2, + ACTIONS(4584), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69164] = 3, - ACTIONS(3875), 1, - anon_sym_LBRACE, - STATE(329), 1, - sym_field_declaration_list, + [69247] = 2, + ACTIONS(5194), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69175] = 3, - ACTIONS(3869), 1, - anon_sym_LT, - STATE(554), 1, - sym_type_parameters, + [69255] = 2, + ACTIONS(5196), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69186] = 3, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(1913), 1, - sym_trait_bounds, + [69263] = 2, + ACTIONS(5198), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69197] = 3, - ACTIONS(4218), 1, - anon_sym_LBRACE, - STATE(332), 1, - sym_enum_variant_list, + [69271] = 2, + ACTIONS(5200), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69208] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, - STATE(1552), 1, - sym_parameters, + [69279] = 2, + ACTIONS(4798), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69219] = 3, - ACTIONS(3635), 1, - anon_sym_BANG, - ACTIONS(5135), 1, - anon_sym_COLON_COLON, + [69287] = 2, + ACTIONS(5202), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69230] = 2, + [69295] = 2, + ACTIONS(5204), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5137), 2, - anon_sym_const, - sym_mutable_specifier, - [69239] = 2, + [69303] = 2, + ACTIONS(5206), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4967), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [69248] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(5139), 1, - anon_sym_GT, + [69311] = 2, + ACTIONS(5208), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69259] = 2, + [69319] = 2, + ACTIONS(4760), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5141), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [69268] = 3, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5145), 1, - anon_sym_LBRACE, + [69327] = 2, + ACTIONS(5210), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69279] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_declaration_list, + [69335] = 2, + ACTIONS(5212), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69290] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(370), 1, - sym_declaration_list, + [69343] = 2, + ACTIONS(5214), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69301] = 3, - ACTIONS(3875), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_field_declaration_list, + [69351] = 2, + ACTIONS(5216), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69312] = 3, - ACTIONS(801), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_block, + [69359] = 2, + ACTIONS(4841), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69323] = 3, - ACTIONS(4122), 1, - anon_sym_PLUS, - ACTIONS(5147), 1, - anon_sym_SEMI, + [69367] = 2, + ACTIONS(5218), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69334] = 3, - ACTIONS(5149), 1, - sym_identifier, - ACTIONS(5151), 1, - sym_mutable_specifier, + [69375] = 2, + ACTIONS(5220), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69345] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_declaration_list, + [69383] = 2, + ACTIONS(5222), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69356] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(378), 1, - sym_declaration_list, + [69391] = 2, + ACTIONS(5224), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69367] = 3, - ACTIONS(4218), 1, - anon_sym_LBRACE, - STATE(296), 1, - sym_enum_variant_list, + [69399] = 2, + ACTIONS(5226), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69378] = 3, - ACTIONS(3875), 1, - anon_sym_LBRACE, - STATE(387), 1, - sym_field_declaration_list, + [69407] = 2, + ACTIONS(5228), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69389] = 2, + [69415] = 2, + ACTIONS(5230), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5153), 2, + [69423] = 2, + ACTIONS(4735), 1, sym_identifier, - sym_metavariable, - [69398] = 3, - ACTIONS(3508), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69409] = 2, + [69431] = 2, + ACTIONS(5232), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4212), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [69418] = 3, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(419), 1, - sym_declaration_list, + [69439] = 2, + ACTIONS(5234), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69429] = 3, - ACTIONS(2655), 1, - anon_sym_LT2, - STATE(992), 1, - sym_type_arguments, + [69447] = 2, + ACTIONS(5236), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69440] = 3, - ACTIONS(3506), 1, - anon_sym_LPAREN, - STATE(1286), 1, - sym_parameters, + [69455] = 2, + ACTIONS(5238), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69451] = 3, - ACTIONS(3643), 1, - anon_sym_COLON_COLON, - ACTIONS(5157), 1, - anon_sym_RPAREN, + [69463] = 2, + ACTIONS(5240), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69462] = 3, - ACTIONS(3895), 1, - anon_sym_COLON_COLON, - ACTIONS(5159), 1, - anon_sym_RPAREN, + [69471] = 2, + ACTIONS(5242), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69473] = 3, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(5159), 1, - anon_sym_RPAREN, + [69479] = 2, + ACTIONS(5244), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69484] = 3, - ACTIONS(3913), 1, - anon_sym_COLON_COLON, - ACTIONS(5159), 1, - anon_sym_RPAREN, + [69487] = 2, + ACTIONS(5246), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69495] = 2, - ACTIONS(5161), 1, - anon_sym_COLON_COLON, + ACTIONS(5248), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69503] = 2, - ACTIONS(5163), 1, + ACTIONS(5250), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69511] = 2, - ACTIONS(5165), 1, + ACTIONS(5252), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69519] = 2, - ACTIONS(5167), 1, - anon_sym_EQ_GT, + ACTIONS(5254), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69527] = 2, - ACTIONS(5169), 1, + ACTIONS(4810), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69535] = 2, - ACTIONS(5171), 1, + ACTIONS(4812), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69543] = 2, - ACTIONS(5173), 1, - anon_sym_RPAREN, + ACTIONS(5256), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69551] = 2, - ACTIONS(4817), 1, - sym_identifier, + ACTIONS(5258), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69559] = 2, - ACTIONS(5175), 1, - sym_identifier, + ACTIONS(3437), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69567] = 2, - ACTIONS(5177), 1, - anon_sym_COLON, + ACTIONS(5260), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69575] = 2, - ACTIONS(5179), 1, - anon_sym_RBRACK, + ACTIONS(3589), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69583] = 2, - ACTIONS(4198), 1, + ACTIONS(5262), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69591] = 2, - ACTIONS(5181), 1, - anon_sym_RBRACE, + ACTIONS(5264), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69599] = 2, - ACTIONS(5183), 1, - anon_sym_fn, + ACTIONS(3215), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69607] = 2, - ACTIONS(681), 1, - anon_sym_RBRACK, + ACTIONS(5266), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69615] = 2, - ACTIONS(5185), 1, - anon_sym_COLON, + ACTIONS(5268), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69623] = 2, - ACTIONS(5187), 1, - sym_identifier, + ACTIONS(3417), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69631] = 2, - ACTIONS(5189), 1, - sym_identifier, + ACTIONS(5270), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69639] = 2, - ACTIONS(5191), 1, - sym_identifier, + ACTIONS(5272), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69647] = 2, - ACTIONS(5193), 1, - anon_sym_EQ_GT, + ACTIONS(5274), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69655] = 2, - ACTIONS(5195), 1, - sym_identifier, + ACTIONS(5276), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69663] = 2, - ACTIONS(5197), 1, - sym_identifier, + ACTIONS(4078), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69671] = 2, - ACTIONS(5199), 1, - sym_identifier, + ACTIONS(5278), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69679] = 2, - ACTIONS(4851), 1, - anon_sym_RBRACE, + ACTIONS(5280), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69687] = 2, - ACTIONS(4833), 1, - sym_identifier, + ACTIONS(5282), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69695] = 2, - ACTIONS(5201), 1, + ACTIONS(5284), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69703] = 2, - ACTIONS(5203), 1, - anon_sym_COLON, + ACTIONS(4553), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69711] = 2, - ACTIONS(5205), 1, - anon_sym_RBRACK, + ACTIONS(5286), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69719] = 2, - ACTIONS(5207), 1, + ACTIONS(5288), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69727] = 2, - ACTIONS(5209), 1, + ACTIONS(5290), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69735] = 2, - ACTIONS(3222), 1, - anon_sym_RPAREN, + ACTIONS(5292), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69743] = 2, - ACTIONS(4807), 1, + ACTIONS(5294), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69751] = 2, - ACTIONS(5211), 1, - anon_sym_SEMI, + ACTIONS(5296), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69759] = 2, - ACTIONS(2767), 1, - anon_sym_COLON_COLON, + ACTIONS(5298), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69767] = 2, - ACTIONS(5213), 1, + ACTIONS(5300), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69775] = 2, - ACTIONS(5215), 1, - sym_identifier, + ACTIONS(5302), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69783] = 2, - ACTIONS(5217), 1, - anon_sym_RPAREN, + ACTIONS(5134), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69791] = 2, - ACTIONS(4879), 1, - sym_identifier, + ACTIONS(3628), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69799] = 2, - ACTIONS(5219), 1, - sym_identifier, + ACTIONS(4847), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69807] = 2, - ACTIONS(2825), 1, - anon_sym_COLON_COLON, + ACTIONS(3363), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69815] = 2, - ACTIONS(5221), 1, - anon_sym_RBRACE, + ACTIONS(2383), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69823] = 2, - ACTIONS(5223), 1, - sym_identifier, + ACTIONS(5304), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69831] = 2, - ACTIONS(5225), 1, - sym_identifier, + ACTIONS(2776), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69839] = 2, - ACTIONS(4519), 1, - anon_sym_RBRACE, + ACTIONS(5144), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69847] = 2, - ACTIONS(4402), 1, - anon_sym_RPAREN, + ACTIONS(5306), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69855] = 2, - ACTIONS(4345), 1, - anon_sym_COLON, + ACTIONS(5308), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69863] = 2, - ACTIONS(5227), 1, - sym_identifier, + ACTIONS(5310), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69871] = 2, - ACTIONS(5229), 1, + ACTIONS(5312), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69879] = 2, - ACTIONS(5231), 1, + ACTIONS(5314), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69887] = 2, - ACTIONS(5233), 1, + ACTIONS(4658), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69895] = 2, - ACTIONS(4069), 1, - anon_sym_COLON, + ACTIONS(5316), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69903] = 2, - ACTIONS(4935), 1, - anon_sym_GT, + ACTIONS(5318), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69911] = 2, - ACTIONS(4375), 1, + ACTIONS(5320), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69919] = 2, - ACTIONS(5235), 1, + ACTIONS(4650), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69927] = 2, - ACTIONS(3368), 1, - anon_sym_COLON_COLON, + ACTIONS(5322), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69935] = 2, - ACTIONS(5237), 1, + ACTIONS(5324), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69943] = 2, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, + ACTIONS(5326), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69951] = 2, - ACTIONS(5239), 1, - sym_identifier, + ACTIONS(5328), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69959] = 2, - ACTIONS(5241), 1, - anon_sym_LBRACK, + ACTIONS(3650), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69967] = 2, - ACTIONS(4506), 1, + ACTIONS(4640), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69975] = 2, - ACTIONS(5243), 1, - anon_sym_RBRACK, + ACTIONS(5330), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69983] = 2, - ACTIONS(4478), 1, - anon_sym_RPAREN, + ACTIONS(5332), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69991] = 2, - ACTIONS(3424), 1, - anon_sym_COLON_COLON, + ACTIONS(5334), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [69999] = 2, - ACTIONS(5245), 1, - anon_sym_COLON_COLON, + ACTIONS(4744), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70007] = 2, - ACTIONS(5247), 1, - anon_sym_LPAREN, + ACTIONS(5336), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70015] = 2, - ACTIONS(5249), 1, - sym_identifier, + ACTIONS(5338), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70023] = 2, - ACTIONS(5251), 1, - anon_sym_fn, + ACTIONS(5340), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70031] = 2, - ACTIONS(5253), 1, - anon_sym_COLON_COLON, + ACTIONS(5342), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70039] = 2, - ACTIONS(5255), 1, + ACTIONS(5344), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70047] = 2, - ACTIONS(4496), 1, + ACTIONS(5346), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70055] = 2, - ACTIONS(5257), 1, - anon_sym_SEMI, + ACTIONS(4167), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70063] = 2, - ACTIONS(5259), 1, - sym_identifier, + ACTIONS(5348), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70071] = 2, - ACTIONS(5261), 1, + ACTIONS(5350), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70079] = 2, - ACTIONS(5263), 1, + ACTIONS(5352), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70087] = 2, - ACTIONS(5265), 1, - sym_identifier, + ACTIONS(5354), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70095] = 2, - ACTIONS(5267), 1, - sym_identifier, + ACTIONS(4406), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70103] = 2, - ACTIONS(5269), 1, + ACTIONS(5356), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70111] = 2, - ACTIONS(5271), 1, - sym_identifier, + ACTIONS(5358), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70119] = 2, - ACTIONS(5273), 1, - sym_identifier, + ACTIONS(5360), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70127] = 2, - ACTIONS(5275), 1, + ACTIONS(5362), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70135] = 2, - ACTIONS(5277), 1, - anon_sym_EQ, + ACTIONS(5364), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70143] = 2, - ACTIONS(4525), 1, - anon_sym_RBRACK, + ACTIONS(4610), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70151] = 2, - ACTIONS(5279), 1, - sym_identifier, + ACTIONS(5366), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70159] = 2, - ACTIONS(5281), 1, - anon_sym_in, + ACTIONS(5368), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70167] = 2, - ACTIONS(5283), 1, - sym_identifier, + ACTIONS(4328), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70175] = 2, - ACTIONS(5285), 1, + ACTIONS(4367), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70183] = 2, - ACTIONS(5287), 1, - sym_identifier, + ACTIONS(5370), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70191] = 2, - ACTIONS(5289), 1, - anon_sym_LPAREN, + ACTIONS(4597), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70199] = 2, - ACTIONS(2819), 1, - anon_sym_COLON_COLON, + ACTIONS(5372), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70207] = 2, - ACTIONS(5135), 1, - anon_sym_COLON_COLON, + ACTIONS(5374), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70215] = 2, - ACTIONS(5043), 1, - anon_sym_SEMI, + ACTIONS(4068), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70223] = 2, - ACTIONS(5291), 1, - anon_sym_fn, + ACTIONS(4593), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70231] = 2, - ACTIONS(5293), 1, - sym_identifier, + ACTIONS(4103), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70239] = 2, - ACTIONS(5295), 1, - sym_self, + ACTIONS(5376), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70247] = 2, - ACTIONS(5297), 1, - anon_sym_COLON, + ACTIONS(5378), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70255] = 2, - ACTIONS(5299), 1, + ACTIONS(5380), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70263] = 2, - ACTIONS(3422), 1, - sym_identifier, + ACTIONS(4497), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70271] = 2, - ACTIONS(4531), 1, - anon_sym_RBRACE, + ACTIONS(5382), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70279] = 2, - ACTIONS(5301), 1, - sym_identifier, + ACTIONS(5384), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70287] = 2, - ACTIONS(5303), 1, - anon_sym_EQ_GT, + ACTIONS(5386), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70295] = 2, - ACTIONS(2314), 1, - anon_sym_EQ_GT, + ACTIONS(4974), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70303] = 2, - ACTIONS(5305), 1, + ACTIONS(5388), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70311] = 2, - ACTIONS(5307), 1, - sym_identifier, + ACTIONS(5390), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70319] = 2, - ACTIONS(4057), 1, - anon_sym_SEMI, + ACTIONS(5392), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70327] = 2, - ACTIONS(5309), 1, - sym_identifier, + ACTIONS(4954), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70335] = 2, - ACTIONS(5311), 1, - sym_identifier, + ACTIONS(5394), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70343] = 2, - ACTIONS(5313), 1, - anon_sym_EQ_GT, + ACTIONS(5396), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70351] = 2, - ACTIONS(5315), 1, - anon_sym_EQ_GT, + ACTIONS(5398), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70359] = 2, - ACTIONS(5317), 1, - anon_sym_RBRACE, + ACTIONS(5400), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70367] = 2, - ACTIONS(5319), 1, - sym_identifier, + ACTIONS(2506), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70375] = 2, - ACTIONS(5321), 1, - anon_sym_COLON, + ACTIONS(5402), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70383] = 2, - ACTIONS(5323), 1, - anon_sym_SEMI, + ACTIONS(5404), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70391] = 2, - ACTIONS(2432), 1, - anon_sym_PLUS, + ACTIONS(5406), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70399] = 2, - ACTIONS(5012), 1, - sym_identifier, + ACTIONS(4438), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70407] = 2, - ACTIONS(5325), 1, - anon_sym_fn, + ACTIONS(2778), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70415] = 2, - ACTIONS(5327), 1, - sym_identifier, + ACTIONS(5408), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70423] = 2, - ACTIONS(4569), 1, + ACTIONS(5410), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70431] = 2, - ACTIONS(5329), 1, - anon_sym_COLON, + ACTIONS(5412), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70439] = 2, - ACTIONS(5331), 1, - anon_sym_LT, + ACTIONS(5414), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70447] = 2, - ACTIONS(4925), 1, - anon_sym_RBRACE, + ACTIONS(5416), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70455] = 2, - ACTIONS(5333), 1, - anon_sym_RPAREN, + ACTIONS(5418), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70463] = 2, - ACTIONS(5335), 1, - sym_identifier, + ACTIONS(5420), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70471] = 2, - ACTIONS(5337), 1, - sym_identifier, + ACTIONS(3605), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70479] = 2, - ACTIONS(5339), 1, - anon_sym_RBRACE, + ACTIONS(4205), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70487] = 2, - ACTIONS(5341), 1, - anon_sym_in, + ACTIONS(5422), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70495] = 2, - ACTIONS(5343), 1, + ACTIONS(5424), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70503] = 2, - ACTIONS(3643), 1, - anon_sym_COLON_COLON, + ACTIONS(5426), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70511] = 2, - ACTIONS(4500), 1, - anon_sym_RPAREN, + ACTIONS(2854), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70519] = 2, - ACTIONS(5345), 1, - anon_sym_SEMI, + ACTIONS(4233), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70527] = 2, - ACTIONS(4640), 1, - anon_sym_RBRACE, + ACTIONS(5428), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70535] = 2, - ACTIONS(5347), 1, - anon_sym_SEMI, + ACTIONS(5430), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70543] = 2, - ACTIONS(5349), 1, + ACTIONS(4135), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70551] = 2, - ACTIONS(4661), 1, - anon_sym_RBRACE, + ACTIONS(5432), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70559] = 2, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, + ACTIONS(5434), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70567] = 2, - ACTIONS(4216), 1, + ACTIONS(4221), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70575] = 2, - ACTIONS(5351), 1, - anon_sym_COLON, + ACTIONS(5436), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70583] = 2, - ACTIONS(5353), 1, - anon_sym_SEMI, + ACTIONS(5438), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70591] = 2, - ACTIONS(5355), 1, - anon_sym_SEMI, + ACTIONS(5440), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70599] = 2, - ACTIONS(5357), 1, - sym_identifier, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70607] = 2, - ACTIONS(5359), 1, - anon_sym_RBRACK, + ACTIONS(4998), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70615] = 2, - ACTIONS(5361), 1, - anon_sym_SEMI, + ACTIONS(5442), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70623] = 2, - ACTIONS(5363), 1, - sym_identifier, + ACTIONS(5444), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70631] = 2, - ACTIONS(5365), 1, - anon_sym_EQ, + ACTIONS(5446), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70639] = 2, - ACTIONS(5367), 1, - sym_identifier, + ACTIONS(5448), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70647] = 2, - ACTIONS(5369), 1, - anon_sym_EQ, + ACTIONS(5450), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70655] = 2, - ACTIONS(5371), 1, - anon_sym_COLON, + ACTIONS(425), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70663] = 2, - ACTIONS(5373), 1, - sym_identifier, + ACTIONS(5452), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70671] = 2, - ACTIONS(5375), 1, - sym_identifier, + ACTIONS(5454), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70679] = 2, - ACTIONS(403), 1, - anon_sym_RBRACK, + ACTIONS(5456), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70687] = 2, - ACTIONS(5377), 1, - anon_sym_LBRACK, + ACTIONS(5458), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70695] = 2, - ACTIONS(5379), 1, + ACTIONS(5460), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70703] = 2, - ACTIONS(5381), 1, - sym_identifier, + ACTIONS(2391), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70711] = 2, - ACTIONS(5383), 1, - sym_identifier, + ACTIONS(5462), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70719] = 2, - ACTIONS(5385), 1, - anon_sym_RPAREN, + ACTIONS(5464), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70727] = 2, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70735] = 2, - ACTIONS(5389), 1, - sym_identifier, + ACTIONS(5468), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70743] = 2, - ACTIONS(5391), 1, - anon_sym_EQ, + ACTIONS(5470), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70751] = 2, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, + ACTIONS(5472), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70759] = 2, - ACTIONS(2408), 1, - anon_sym_EQ_GT, + ACTIONS(5078), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70767] = 2, - ACTIONS(5393), 1, - anon_sym_SEMI, + ACTIONS(3904), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70775] = 2, - ACTIONS(2821), 1, - anon_sym_COLON_COLON, + ACTIONS(3529), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70783] = 2, - ACTIONS(5395), 1, - anon_sym_COLON_COLON, + ACTIONS(5474), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70791] = 2, - ACTIONS(3544), 1, - anon_sym_fn, + ACTIONS(5476), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70799] = 2, - ACTIONS(5041), 1, - anon_sym_SEMI, + ACTIONS(5012), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70807] = 2, - ACTIONS(5397), 1, - ts_builtin_sym_end, + ACTIONS(5478), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70815] = 2, - ACTIONS(2917), 1, - anon_sym_COLON_COLON, + ACTIONS(5480), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70823] = 2, - ACTIONS(5399), 1, - sym_identifier, + ACTIONS(5482), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70831] = 2, - ACTIONS(3600), 1, + ACTIONS(2906), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70839] = 2, - ACTIONS(5401), 1, - anon_sym_SEMI, + ACTIONS(5040), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70847] = 2, - ACTIONS(5403), 1, - sym_identifier, + ACTIONS(5484), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70855] = 2, - ACTIONS(5405), 1, - sym_identifier, + ACTIONS(5486), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70863] = 2, - ACTIONS(5407), 1, - sym_identifier, + ACTIONS(5488), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70871] = 2, - ACTIONS(5409), 1, - anon_sym_SEMI, + ACTIONS(5490), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70879] = 2, - ACTIONS(2458), 1, - anon_sym_PLUS, + ACTIONS(5492), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70887] = 2, - ACTIONS(4186), 1, - anon_sym_COLON_COLON, + ACTIONS(5494), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70895] = 2, - ACTIONS(5411), 1, - anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70903] = 2, - ACTIONS(4768), 1, - anon_sym_RBRACE, + ACTIONS(5498), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70911] = 2, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, + ACTIONS(5080), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70919] = 2, - ACTIONS(5413), 1, - anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70927] = 2, - ACTIONS(5415), 1, - sym_identifier, + ACTIONS(5502), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70935] = 2, - ACTIONS(4238), 1, - anon_sym_COLON_COLON, + ACTIONS(5504), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70943] = 2, - ACTIONS(5417), 1, - anon_sym_COLON_COLON, + ACTIONS(5506), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70951] = 2, - ACTIONS(5419), 1, - sym_identifier, + ACTIONS(5508), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70959] = 2, - ACTIONS(5421), 1, - anon_sym_SEMI, + ACTIONS(3553), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70967] = 2, - ACTIONS(5423), 1, - anon_sym_SEMI, + ACTIONS(5510), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70975] = 2, - ACTIONS(4805), 1, - sym_identifier, + ACTIONS(5512), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70983] = 2, - ACTIONS(5425), 1, - anon_sym_COLON, + ACTIONS(5514), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70991] = 2, - ACTIONS(5427), 1, - anon_sym_LBRACK, + ACTIONS(5516), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [70999] = 2, - ACTIONS(5429), 1, - anon_sym_COLON, + ACTIONS(5518), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71007] = 2, - ACTIONS(5431), 1, - anon_sym_in, + ACTIONS(5520), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71015] = 2, - ACTIONS(4859), 1, + ACTIONS(5522), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71023] = 2, - ACTIONS(5433), 1, - sym_identifier, + ACTIONS(5524), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71031] = 2, - ACTIONS(5435), 1, - anon_sym_SEMI, + ACTIONS(5526), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71039] = 2, - ACTIONS(5437), 1, - anon_sym_COLON, + ACTIONS(5528), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71047] = 2, - ACTIONS(5439), 1, - anon_sym_LBRACK, + ACTIONS(5530), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71055] = 2, - ACTIONS(5441), 1, + ACTIONS(5532), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71063] = 2, - ACTIONS(4839), 1, - sym_identifier, + ACTIONS(5534), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71071] = 2, - ACTIONS(5443), 1, + ACTIONS(5536), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [71079] = 2, - ACTIONS(5445), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71087] = 2, - ACTIONS(5447), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71095] = 2, - ACTIONS(5449), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71103] = 2, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71111] = 2, - ACTIONS(5451), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71119] = 2, - ACTIONS(5453), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71127] = 2, - ACTIONS(5455), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71135] = 2, - ACTIONS(5457), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71143] = 2, - ACTIONS(5459), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71151] = 2, - ACTIONS(5461), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71159] = 2, - ACTIONS(5463), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71167] = 2, - ACTIONS(5465), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71175] = 2, - ACTIONS(5467), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71183] = 2, - ACTIONS(5469), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71191] = 2, - ACTIONS(5471), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71199] = 2, - ACTIONS(5473), 1, + ACTIONS(5538), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [71207] = 2, - ACTIONS(5475), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71215] = 2, - ACTIONS(5477), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71223] = 2, - ACTIONS(5479), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71231] = 2, - ACTIONS(5481), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71239] = 2, - ACTIONS(5483), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71247] = 2, - ACTIONS(5485), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71255] = 2, - ACTIONS(5487), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71263] = 2, - ACTIONS(5489), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71271] = 2, - ACTIONS(5491), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71279] = 2, - ACTIONS(5493), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71287] = 2, - ACTIONS(5495), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71295] = 2, - ACTIONS(5497), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71303] = 2, - ACTIONS(4065), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71311] = 2, - ACTIONS(5499), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71319] = 2, - ACTIONS(5065), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71327] = 2, - ACTIONS(3520), 1, - anon_sym_fn, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71335] = 2, - ACTIONS(5501), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71343] = 2, - ACTIONS(4304), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71351] = 2, - ACTIONS(5503), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71359] = 2, - ACTIONS(5505), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71367] = 2, - ACTIONS(5507), 1, + [71087] = 2, + ACTIONS(5540), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [71375] = 2, - ACTIONS(5000), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71383] = 2, - ACTIONS(5509), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71391] = 2, - ACTIONS(5511), 1, - anon_sym_fn, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71399] = 2, - ACTIONS(5513), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71407] = 2, - ACTIONS(5515), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71415] = 2, - ACTIONS(5517), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71423] = 2, - ACTIONS(5519), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71431] = 2, - ACTIONS(5521), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71439] = 2, - ACTIONS(5523), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71447] = 2, - ACTIONS(5525), 1, + [71095] = 2, + ACTIONS(5542), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [71455] = 2, - ACTIONS(5527), 1, - anon_sym_fn, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71463] = 2, - ACTIONS(5529), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [71471] = 2, - ACTIONS(5531), 1, + [71103] = 2, + ACTIONS(5544), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -112093,1889 +112393,1885 @@ static uint16_t ts_small_parse_table[] = { }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(530)] = 0, - [SMALL_STATE(531)] = 125, - [SMALL_STATE(532)] = 250, - [SMALL_STATE(533)] = 375, - [SMALL_STATE(534)] = 496, - [SMALL_STATE(535)] = 621, - [SMALL_STATE(536)] = 746, - [SMALL_STATE(537)] = 871, - [SMALL_STATE(538)] = 996, - [SMALL_STATE(539)] = 1121, - [SMALL_STATE(540)] = 1246, - [SMALL_STATE(541)] = 1371, - [SMALL_STATE(542)] = 1446, - [SMALL_STATE(543)] = 1571, - [SMALL_STATE(544)] = 1696, - [SMALL_STATE(545)] = 1821, - [SMALL_STATE(546)] = 1946, - [SMALL_STATE(547)] = 2068, - [SMALL_STATE(548)] = 2190, - [SMALL_STATE(549)] = 2312, - [SMALL_STATE(550)] = 2434, - [SMALL_STATE(551)] = 2556, - [SMALL_STATE(552)] = 2678, - [SMALL_STATE(553)] = 2800, - [SMALL_STATE(554)] = 2922, - [SMALL_STATE(555)] = 3044, - [SMALL_STATE(556)] = 3166, - [SMALL_STATE(557)] = 3288, - [SMALL_STATE(558)] = 3410, - [SMALL_STATE(559)] = 3532, - [SMALL_STATE(560)] = 3654, - [SMALL_STATE(561)] = 3776, - [SMALL_STATE(562)] = 3898, - [SMALL_STATE(563)] = 4020, - [SMALL_STATE(564)] = 4142, - [SMALL_STATE(565)] = 4264, - [SMALL_STATE(566)] = 4386, - [SMALL_STATE(567)] = 4508, - [SMALL_STATE(568)] = 4630, - [SMALL_STATE(569)] = 4752, - [SMALL_STATE(570)] = 4874, - [SMALL_STATE(571)] = 4996, - [SMALL_STATE(572)] = 5118, - [SMALL_STATE(573)] = 5240, - [SMALL_STATE(574)] = 5358, - [SMALL_STATE(575)] = 5476, - [SMALL_STATE(576)] = 5598, - [SMALL_STATE(577)] = 5720, - [SMALL_STATE(578)] = 5842, - [SMALL_STATE(579)] = 5964, - [SMALL_STATE(580)] = 6086, - [SMALL_STATE(581)] = 6208, - [SMALL_STATE(582)] = 6330, - [SMALL_STATE(583)] = 6452, - [SMALL_STATE(584)] = 6574, - [SMALL_STATE(585)] = 6696, - [SMALL_STATE(586)] = 6818, - [SMALL_STATE(587)] = 6940, - [SMALL_STATE(588)] = 7062, - [SMALL_STATE(589)] = 7184, - [SMALL_STATE(590)] = 7306, - [SMALL_STATE(591)] = 7428, - [SMALL_STATE(592)] = 7550, - [SMALL_STATE(593)] = 7672, - [SMALL_STATE(594)] = 7794, - [SMALL_STATE(595)] = 7916, - [SMALL_STATE(596)] = 8038, - [SMALL_STATE(597)] = 8160, - [SMALL_STATE(598)] = 8282, - [SMALL_STATE(599)] = 8404, - [SMALL_STATE(600)] = 8526, - [SMALL_STATE(601)] = 8648, - [SMALL_STATE(602)] = 8770, - [SMALL_STATE(603)] = 8892, - [SMALL_STATE(604)] = 9014, - [SMALL_STATE(605)] = 9136, - [SMALL_STATE(606)] = 9258, - [SMALL_STATE(607)] = 9380, - [SMALL_STATE(608)] = 9502, - [SMALL_STATE(609)] = 9624, - [SMALL_STATE(610)] = 9746, - [SMALL_STATE(611)] = 9868, - [SMALL_STATE(612)] = 9990, - [SMALL_STATE(613)] = 10112, - [SMALL_STATE(614)] = 10234, - [SMALL_STATE(615)] = 10356, - [SMALL_STATE(616)] = 10478, - [SMALL_STATE(617)] = 10600, - [SMALL_STATE(618)] = 10722, - [SMALL_STATE(619)] = 10844, - [SMALL_STATE(620)] = 10966, - [SMALL_STATE(621)] = 11088, - [SMALL_STATE(622)] = 11210, - [SMALL_STATE(623)] = 11328, - [SMALL_STATE(624)] = 11450, - [SMALL_STATE(625)] = 11572, - [SMALL_STATE(626)] = 11694, - [SMALL_STATE(627)] = 11816, - [SMALL_STATE(628)] = 11938, - [SMALL_STATE(629)] = 12060, - [SMALL_STATE(630)] = 12182, - [SMALL_STATE(631)] = 12304, - [SMALL_STATE(632)] = 12426, - [SMALL_STATE(633)] = 12548, - [SMALL_STATE(634)] = 12670, - [SMALL_STATE(635)] = 12792, - [SMALL_STATE(636)] = 12914, - [SMALL_STATE(637)] = 13036, - [SMALL_STATE(638)] = 13158, - [SMALL_STATE(639)] = 13280, - [SMALL_STATE(640)] = 13402, - [SMALL_STATE(641)] = 13524, - [SMALL_STATE(642)] = 13646, - [SMALL_STATE(643)] = 13768, - [SMALL_STATE(644)] = 13890, - [SMALL_STATE(645)] = 14012, - [SMALL_STATE(646)] = 14134, - [SMALL_STATE(647)] = 14252, - [SMALL_STATE(648)] = 14370, - [SMALL_STATE(649)] = 14492, - [SMALL_STATE(650)] = 14616, - [SMALL_STATE(651)] = 14738, - [SMALL_STATE(652)] = 14860, - [SMALL_STATE(653)] = 14982, - [SMALL_STATE(654)] = 15104, - [SMALL_STATE(655)] = 15226, - [SMALL_STATE(656)] = 15348, - [SMALL_STATE(657)] = 15470, - [SMALL_STATE(658)] = 15592, - [SMALL_STATE(659)] = 15714, - [SMALL_STATE(660)] = 15829, - [SMALL_STATE(661)] = 15944, - [SMALL_STATE(662)] = 16013, - [SMALL_STATE(663)] = 16128, - [SMALL_STATE(664)] = 16243, - [SMALL_STATE(665)] = 16358, - [SMALL_STATE(666)] = 16473, - [SMALL_STATE(667)] = 16585, - [SMALL_STATE(668)] = 16697, - [SMALL_STATE(669)] = 16809, - [SMALL_STATE(670)] = 16921, - [SMALL_STATE(671)] = 17033, - [SMALL_STATE(672)] = 17145, - [SMALL_STATE(673)] = 17257, - [SMALL_STATE(674)] = 17369, - [SMALL_STATE(675)] = 17481, - [SMALL_STATE(676)] = 17593, - [SMALL_STATE(677)] = 17705, - [SMALL_STATE(678)] = 17817, - [SMALL_STATE(679)] = 17929, - [SMALL_STATE(680)] = 18041, - [SMALL_STATE(681)] = 18153, - [SMALL_STATE(682)] = 18265, - [SMALL_STATE(683)] = 18377, - [SMALL_STATE(684)] = 18489, - [SMALL_STATE(685)] = 18601, - [SMALL_STATE(686)] = 18713, - [SMALL_STATE(687)] = 18825, - [SMALL_STATE(688)] = 18937, - [SMALL_STATE(689)] = 19049, - [SMALL_STATE(690)] = 19161, - [SMALL_STATE(691)] = 19273, - [SMALL_STATE(692)] = 19385, - [SMALL_STATE(693)] = 19497, - [SMALL_STATE(694)] = 19609, - [SMALL_STATE(695)] = 19721, - [SMALL_STATE(696)] = 19833, - [SMALL_STATE(697)] = 19945, - [SMALL_STATE(698)] = 20057, - [SMALL_STATE(699)] = 20169, - [SMALL_STATE(700)] = 20281, - [SMALL_STATE(701)] = 20345, - [SMALL_STATE(702)] = 20409, - [SMALL_STATE(703)] = 20473, - [SMALL_STATE(704)] = 20537, - [SMALL_STATE(705)] = 20599, - [SMALL_STATE(706)] = 20669, - [SMALL_STATE(707)] = 20726, - [SMALL_STATE(708)] = 20793, - [SMALL_STATE(709)] = 20860, - [SMALL_STATE(710)] = 20924, - [SMALL_STATE(711)] = 20980, - [SMALL_STATE(712)] = 21036, - [SMALL_STATE(713)] = 21096, - [SMALL_STATE(714)] = 21152, - [SMALL_STATE(715)] = 21212, - [SMALL_STATE(716)] = 21268, - [SMALL_STATE(717)] = 21324, - [SMALL_STATE(718)] = 21388, - [SMALL_STATE(719)] = 21452, - [SMALL_STATE(720)] = 21508, - [SMALL_STATE(721)] = 21564, - [SMALL_STATE(722)] = 21624, - [SMALL_STATE(723)] = 21684, - [SMALL_STATE(724)] = 21748, - [SMALL_STATE(725)] = 21804, - [SMALL_STATE(726)] = 21859, - [SMALL_STATE(727)] = 21916, - [SMALL_STATE(728)] = 21973, - [SMALL_STATE(729)] = 22032, - [SMALL_STATE(730)] = 22091, - [SMALL_STATE(731)] = 22146, - [SMALL_STATE(732)] = 22203, - [SMALL_STATE(733)] = 22260, - [SMALL_STATE(734)] = 22319, - [SMALL_STATE(735)] = 22374, - [SMALL_STATE(736)] = 22436, - [SMALL_STATE(737)] = 22490, - [SMALL_STATE(738)] = 22544, - [SMALL_STATE(739)] = 22598, - [SMALL_STATE(740)] = 22652, - [SMALL_STATE(741)] = 22706, - [SMALL_STATE(742)] = 22760, - [SMALL_STATE(743)] = 22816, - [SMALL_STATE(744)] = 22870, - [SMALL_STATE(745)] = 22924, - [SMALL_STATE(746)] = 22978, - [SMALL_STATE(747)] = 23032, - [SMALL_STATE(748)] = 23086, - [SMALL_STATE(749)] = 23140, - [SMALL_STATE(750)] = 23194, - [SMALL_STATE(751)] = 23248, - [SMALL_STATE(752)] = 23302, - [SMALL_STATE(753)] = 23356, - [SMALL_STATE(754)] = 23410, - [SMALL_STATE(755)] = 23464, - [SMALL_STATE(756)] = 23518, - [SMALL_STATE(757)] = 23572, - [SMALL_STATE(758)] = 23626, - [SMALL_STATE(759)] = 23682, - [SMALL_STATE(760)] = 23736, - [SMALL_STATE(761)] = 23790, - [SMALL_STATE(762)] = 23844, - [SMALL_STATE(763)] = 23898, - [SMALL_STATE(764)] = 23952, - [SMALL_STATE(765)] = 24006, - [SMALL_STATE(766)] = 24060, - [SMALL_STATE(767)] = 24114, - [SMALL_STATE(768)] = 24168, - [SMALL_STATE(769)] = 24222, - [SMALL_STATE(770)] = 24278, - [SMALL_STATE(771)] = 24332, - [SMALL_STATE(772)] = 24386, - [SMALL_STATE(773)] = 24440, - [SMALL_STATE(774)] = 24494, - [SMALL_STATE(775)] = 24556, - [SMALL_STATE(776)] = 24610, - [SMALL_STATE(777)] = 24664, - [SMALL_STATE(778)] = 24718, - [SMALL_STATE(779)] = 24772, - [SMALL_STATE(780)] = 24828, - [SMALL_STATE(781)] = 24882, - [SMALL_STATE(782)] = 24936, - [SMALL_STATE(783)] = 24990, - [SMALL_STATE(784)] = 25044, - [SMALL_STATE(785)] = 25098, - [SMALL_STATE(786)] = 25152, - [SMALL_STATE(787)] = 25206, - [SMALL_STATE(788)] = 25260, - [SMALL_STATE(789)] = 25314, - [SMALL_STATE(790)] = 25368, - [SMALL_STATE(791)] = 25422, - [SMALL_STATE(792)] = 25476, - [SMALL_STATE(793)] = 25530, - [SMALL_STATE(794)] = 25584, - [SMALL_STATE(795)] = 25638, - [SMALL_STATE(796)] = 25692, - [SMALL_STATE(797)] = 25746, - [SMALL_STATE(798)] = 25800, - [SMALL_STATE(799)] = 25854, - [SMALL_STATE(800)] = 25908, - [SMALL_STATE(801)] = 25962, - [SMALL_STATE(802)] = 26016, - [SMALL_STATE(803)] = 26070, - [SMALL_STATE(804)] = 26124, - [SMALL_STATE(805)] = 26178, - [SMALL_STATE(806)] = 26232, - [SMALL_STATE(807)] = 26286, - [SMALL_STATE(808)] = 26340, - [SMALL_STATE(809)] = 26394, - [SMALL_STATE(810)] = 26448, - [SMALL_STATE(811)] = 26502, - [SMALL_STATE(812)] = 26556, - [SMALL_STATE(813)] = 26610, - [SMALL_STATE(814)] = 26664, - [SMALL_STATE(815)] = 26726, - [SMALL_STATE(816)] = 26780, - [SMALL_STATE(817)] = 26834, - [SMALL_STATE(818)] = 26888, - [SMALL_STATE(819)] = 26942, - [SMALL_STATE(820)] = 26996, - [SMALL_STATE(821)] = 27050, - [SMALL_STATE(822)] = 27104, - [SMALL_STATE(823)] = 27158, - [SMALL_STATE(824)] = 27212, - [SMALL_STATE(825)] = 27266, - [SMALL_STATE(826)] = 27320, - [SMALL_STATE(827)] = 27374, - [SMALL_STATE(828)] = 27428, - [SMALL_STATE(829)] = 27482, - [SMALL_STATE(830)] = 27536, - [SMALL_STATE(831)] = 27590, - [SMALL_STATE(832)] = 27644, - [SMALL_STATE(833)] = 27698, - [SMALL_STATE(834)] = 27752, - [SMALL_STATE(835)] = 27806, - [SMALL_STATE(836)] = 27860, - [SMALL_STATE(837)] = 27914, - [SMALL_STATE(838)] = 27968, - [SMALL_STATE(839)] = 28022, - [SMALL_STATE(840)] = 28076, - [SMALL_STATE(841)] = 28130, - [SMALL_STATE(842)] = 28184, - [SMALL_STATE(843)] = 28238, - [SMALL_STATE(844)] = 28292, - [SMALL_STATE(845)] = 28346, - [SMALL_STATE(846)] = 28400, - [SMALL_STATE(847)] = 28454, - [SMALL_STATE(848)] = 28508, - [SMALL_STATE(849)] = 28562, - [SMALL_STATE(850)] = 28616, - [SMALL_STATE(851)] = 28670, - [SMALL_STATE(852)] = 28728, - [SMALL_STATE(853)] = 28782, - [SMALL_STATE(854)] = 28836, - [SMALL_STATE(855)] = 28890, - [SMALL_STATE(856)] = 28944, - [SMALL_STATE(857)] = 28998, - [SMALL_STATE(858)] = 29052, - [SMALL_STATE(859)] = 29108, - [SMALL_STATE(860)] = 29164, - [SMALL_STATE(861)] = 29226, - [SMALL_STATE(862)] = 29280, - [SMALL_STATE(863)] = 29334, - [SMALL_STATE(864)] = 29388, - [SMALL_STATE(865)] = 29442, - [SMALL_STATE(866)] = 29496, - [SMALL_STATE(867)] = 29550, - [SMALL_STATE(868)] = 29604, - [SMALL_STATE(869)] = 29660, - [SMALL_STATE(870)] = 29714, - [SMALL_STATE(871)] = 29768, - [SMALL_STATE(872)] = 29822, - [SMALL_STATE(873)] = 29876, - [SMALL_STATE(874)] = 29930, - [SMALL_STATE(875)] = 29984, - [SMALL_STATE(876)] = 30038, - [SMALL_STATE(877)] = 30092, - [SMALL_STATE(878)] = 30146, - [SMALL_STATE(879)] = 30200, - [SMALL_STATE(880)] = 30254, - [SMALL_STATE(881)] = 30310, - [SMALL_STATE(882)] = 30364, - [SMALL_STATE(883)] = 30420, - [SMALL_STATE(884)] = 30474, - [SMALL_STATE(885)] = 30530, - [SMALL_STATE(886)] = 30586, - [SMALL_STATE(887)] = 30640, - [SMALL_STATE(888)] = 30694, - [SMALL_STATE(889)] = 30748, - [SMALL_STATE(890)] = 30802, - [SMALL_STATE(891)] = 30856, - [SMALL_STATE(892)] = 30910, - [SMALL_STATE(893)] = 30964, - [SMALL_STATE(894)] = 31018, - [SMALL_STATE(895)] = 31072, - [SMALL_STATE(896)] = 31126, - [SMALL_STATE(897)] = 31180, - [SMALL_STATE(898)] = 31234, - [SMALL_STATE(899)] = 31288, - [SMALL_STATE(900)] = 31342, - [SMALL_STATE(901)] = 31396, - [SMALL_STATE(902)] = 31450, - [SMALL_STATE(903)] = 31504, - [SMALL_STATE(904)] = 31558, - [SMALL_STATE(905)] = 31612, - [SMALL_STATE(906)] = 31666, - [SMALL_STATE(907)] = 31720, - [SMALL_STATE(908)] = 31774, - [SMALL_STATE(909)] = 31828, - [SMALL_STATE(910)] = 31882, - [SMALL_STATE(911)] = 31936, - [SMALL_STATE(912)] = 31990, - [SMALL_STATE(913)] = 32044, - [SMALL_STATE(914)] = 32098, - [SMALL_STATE(915)] = 32152, - [SMALL_STATE(916)] = 32206, - [SMALL_STATE(917)] = 32260, - [SMALL_STATE(918)] = 32314, - [SMALL_STATE(919)] = 32368, - [SMALL_STATE(920)] = 32422, - [SMALL_STATE(921)] = 32476, - [SMALL_STATE(922)] = 32530, - [SMALL_STATE(923)] = 32584, - [SMALL_STATE(924)] = 32638, - [SMALL_STATE(925)] = 32692, - [SMALL_STATE(926)] = 32746, - [SMALL_STATE(927)] = 32800, - [SMALL_STATE(928)] = 32856, - [SMALL_STATE(929)] = 32912, - [SMALL_STATE(930)] = 32966, - [SMALL_STATE(931)] = 33020, - [SMALL_STATE(932)] = 33074, - [SMALL_STATE(933)] = 33128, - [SMALL_STATE(934)] = 33182, - [SMALL_STATE(935)] = 33236, - [SMALL_STATE(936)] = 33290, - [SMALL_STATE(937)] = 33344, - [SMALL_STATE(938)] = 33398, - [SMALL_STATE(939)] = 33452, - [SMALL_STATE(940)] = 33506, - [SMALL_STATE(941)] = 33560, - [SMALL_STATE(942)] = 33614, - [SMALL_STATE(943)] = 33668, - [SMALL_STATE(944)] = 33722, - [SMALL_STATE(945)] = 33776, - [SMALL_STATE(946)] = 33832, - [SMALL_STATE(947)] = 33886, - [SMALL_STATE(948)] = 33940, - [SMALL_STATE(949)] = 33994, - [SMALL_STATE(950)] = 34048, - [SMALL_STATE(951)] = 34102, - [SMALL_STATE(952)] = 34156, - [SMALL_STATE(953)] = 34212, - [SMALL_STATE(954)] = 34266, - [SMALL_STATE(955)] = 34320, - [SMALL_STATE(956)] = 34374, - [SMALL_STATE(957)] = 34428, - [SMALL_STATE(958)] = 34482, - [SMALL_STATE(959)] = 34536, - [SMALL_STATE(960)] = 34592, - [SMALL_STATE(961)] = 34646, - [SMALL_STATE(962)] = 34700, - [SMALL_STATE(963)] = 34753, - [SMALL_STATE(964)] = 34832, - [SMALL_STATE(965)] = 34887, - [SMALL_STATE(966)] = 34940, - [SMALL_STATE(967)] = 34993, - [SMALL_STATE(968)] = 35046, - [SMALL_STATE(969)] = 35099, - [SMALL_STATE(970)] = 35152, - [SMALL_STATE(971)] = 35205, - [SMALL_STATE(972)] = 35258, - [SMALL_STATE(973)] = 35311, - [SMALL_STATE(974)] = 35364, - [SMALL_STATE(975)] = 35417, - [SMALL_STATE(976)] = 35472, - [SMALL_STATE(977)] = 35525, - [SMALL_STATE(978)] = 35578, - [SMALL_STATE(979)] = 35631, - [SMALL_STATE(980)] = 35684, - [SMALL_STATE(981)] = 35737, - [SMALL_STATE(982)] = 35790, - [SMALL_STATE(983)] = 35843, - [SMALL_STATE(984)] = 35896, - [SMALL_STATE(985)] = 35949, - [SMALL_STATE(986)] = 36002, - [SMALL_STATE(987)] = 36055, - [SMALL_STATE(988)] = 36108, - [SMALL_STATE(989)] = 36161, - [SMALL_STATE(990)] = 36214, - [SMALL_STATE(991)] = 36267, - [SMALL_STATE(992)] = 36320, - [SMALL_STATE(993)] = 36373, - [SMALL_STATE(994)] = 36458, - [SMALL_STATE(995)] = 36511, - [SMALL_STATE(996)] = 36564, - [SMALL_STATE(997)] = 36617, - [SMALL_STATE(998)] = 36670, - [SMALL_STATE(999)] = 36723, - [SMALL_STATE(1000)] = 36808, - [SMALL_STATE(1001)] = 36861, - [SMALL_STATE(1002)] = 36914, - [SMALL_STATE(1003)] = 36967, - [SMALL_STATE(1004)] = 37020, - [SMALL_STATE(1005)] = 37073, - [SMALL_STATE(1006)] = 37126, - [SMALL_STATE(1007)] = 37179, - [SMALL_STATE(1008)] = 37244, - [SMALL_STATE(1009)] = 37297, - [SMALL_STATE(1010)] = 37350, - [SMALL_STATE(1011)] = 37403, - [SMALL_STATE(1012)] = 37456, - [SMALL_STATE(1013)] = 37525, - [SMALL_STATE(1014)] = 37596, - [SMALL_STATE(1015)] = 37649, - [SMALL_STATE(1016)] = 37702, - [SMALL_STATE(1017)] = 37779, - [SMALL_STATE(1018)] = 37860, - [SMALL_STATE(1019)] = 37927, - [SMALL_STATE(1020)] = 38000, - [SMALL_STATE(1021)] = 38053, - [SMALL_STATE(1022)] = 38138, - [SMALL_STATE(1023)] = 38191, - [SMALL_STATE(1024)] = 38254, - [SMALL_STATE(1025)] = 38307, - [SMALL_STATE(1026)] = 38360, - [SMALL_STATE(1027)] = 38445, - [SMALL_STATE(1028)] = 38498, - [SMALL_STATE(1029)] = 38551, - [SMALL_STATE(1030)] = 38604, - [SMALL_STATE(1031)] = 38657, - [SMALL_STATE(1032)] = 38710, - [SMALL_STATE(1033)] = 38763, - [SMALL_STATE(1034)] = 38816, - [SMALL_STATE(1035)] = 38897, - [SMALL_STATE(1036)] = 38950, - [SMALL_STATE(1037)] = 39003, - [SMALL_STATE(1038)] = 39056, - [SMALL_STATE(1039)] = 39109, - [SMALL_STATE(1040)] = 39162, - [SMALL_STATE(1041)] = 39215, - [SMALL_STATE(1042)] = 39268, - [SMALL_STATE(1043)] = 39359, - [SMALL_STATE(1044)] = 39412, - [SMALL_STATE(1045)] = 39465, - [SMALL_STATE(1046)] = 39518, - [SMALL_STATE(1047)] = 39571, - [SMALL_STATE(1048)] = 39624, - [SMALL_STATE(1049)] = 39715, - [SMALL_STATE(1050)] = 39768, - [SMALL_STATE(1051)] = 39821, - [SMALL_STATE(1052)] = 39874, - [SMALL_STATE(1053)] = 39927, - [SMALL_STATE(1054)] = 40012, - [SMALL_STATE(1055)] = 40065, - [SMALL_STATE(1056)] = 40118, - [SMALL_STATE(1057)] = 40171, - [SMALL_STATE(1058)] = 40224, - [SMALL_STATE(1059)] = 40277, - [SMALL_STATE(1060)] = 40329, - [SMALL_STATE(1061)] = 40381, - [SMALL_STATE(1062)] = 40433, - [SMALL_STATE(1063)] = 40489, - [SMALL_STATE(1064)] = 40541, - [SMALL_STATE(1065)] = 40593, - [SMALL_STATE(1066)] = 40645, - [SMALL_STATE(1067)] = 40705, - [SMALL_STATE(1068)] = 40790, - [SMALL_STATE(1069)] = 40885, - [SMALL_STATE(1070)] = 40970, - [SMALL_STATE(1071)] = 41065, - [SMALL_STATE(1072)] = 41121, - [SMALL_STATE(1073)] = 41205, - [SMALL_STATE(1074)] = 41289, - [SMALL_STATE(1075)] = 41341, - [SMALL_STATE(1076)] = 41395, - [SMALL_STATE(1077)] = 41487, - [SMALL_STATE(1078)] = 41537, - [SMALL_STATE(1079)] = 41589, - [SMALL_STATE(1080)] = 41673, - [SMALL_STATE(1081)] = 41757, - [SMALL_STATE(1082)] = 41849, - [SMALL_STATE(1083)] = 41899, - [SMALL_STATE(1084)] = 41988, - [SMALL_STATE(1085)] = 42077, - [SMALL_STATE(1086)] = 42126, - [SMALL_STATE(1087)] = 42175, - [SMALL_STATE(1088)] = 42262, - [SMALL_STATE(1089)] = 42351, - [SMALL_STATE(1090)] = 42440, - [SMALL_STATE(1091)] = 42515, - [SMALL_STATE(1092)] = 42604, - [SMALL_STATE(1093)] = 42655, - [SMALL_STATE(1094)] = 42744, - [SMALL_STATE(1095)] = 42833, - [SMALL_STATE(1096)] = 42922, - [SMALL_STATE(1097)] = 42971, - [SMALL_STATE(1098)] = 43060, - [SMALL_STATE(1099)] = 43109, - [SMALL_STATE(1100)] = 43162, - [SMALL_STATE(1101)] = 43251, - [SMALL_STATE(1102)] = 43340, - [SMALL_STATE(1103)] = 43429, - [SMALL_STATE(1104)] = 43518, - [SMALL_STATE(1105)] = 43607, - [SMALL_STATE(1106)] = 43694, - [SMALL_STATE(1107)] = 43783, - [SMALL_STATE(1108)] = 43872, - [SMALL_STATE(1109)] = 43953, - [SMALL_STATE(1110)] = 44042, - [SMALL_STATE(1111)] = 44131, - [SMALL_STATE(1112)] = 44220, - [SMALL_STATE(1113)] = 44309, - [SMALL_STATE(1114)] = 44398, - [SMALL_STATE(1115)] = 44485, - [SMALL_STATE(1116)] = 44574, - [SMALL_STATE(1117)] = 44655, - [SMALL_STATE(1118)] = 44744, - [SMALL_STATE(1119)] = 44831, - [SMALL_STATE(1120)] = 44920, - [SMALL_STATE(1121)] = 45009, - [SMALL_STATE(1122)] = 45096, - [SMALL_STATE(1123)] = 45185, - [SMALL_STATE(1124)] = 45274, - [SMALL_STATE(1125)] = 45363, - [SMALL_STATE(1126)] = 45452, - [SMALL_STATE(1127)] = 45541, - [SMALL_STATE(1128)] = 45630, - [SMALL_STATE(1129)] = 45719, - [SMALL_STATE(1130)] = 45806, - [SMALL_STATE(1131)] = 45895, - [SMALL_STATE(1132)] = 45982, - [SMALL_STATE(1133)] = 46031, - [SMALL_STATE(1134)] = 46120, - [SMALL_STATE(1135)] = 46169, - [SMALL_STATE(1136)] = 46258, - [SMALL_STATE(1137)] = 46347, - [SMALL_STATE(1138)] = 46436, - [SMALL_STATE(1139)] = 46523, - [SMALL_STATE(1140)] = 46612, - [SMALL_STATE(1141)] = 46701, - [SMALL_STATE(1142)] = 46790, - [SMALL_STATE(1143)] = 46879, - [SMALL_STATE(1144)] = 46966, - [SMALL_STATE(1145)] = 47053, - [SMALL_STATE(1146)] = 47142, - [SMALL_STATE(1147)] = 47231, - [SMALL_STATE(1148)] = 47311, - [SMALL_STATE(1149)] = 47387, - [SMALL_STATE(1150)] = 47437, - [SMALL_STATE(1151)] = 47523, - [SMALL_STATE(1152)] = 47573, - [SMALL_STATE(1153)] = 47645, - [SMALL_STATE(1154)] = 47703, - [SMALL_STATE(1155)] = 47789, - [SMALL_STATE(1156)] = 47875, - [SMALL_STATE(1157)] = 47947, - [SMALL_STATE(1158)] = 48033, - [SMALL_STATE(1159)] = 48081, - [SMALL_STATE(1160)] = 48167, - [SMALL_STATE(1161)] = 48239, - [SMALL_STATE(1162)] = 48319, - [SMALL_STATE(1163)] = 48405, - [SMALL_STATE(1164)] = 48455, - [SMALL_STATE(1165)] = 48503, - [SMALL_STATE(1166)] = 48575, - [SMALL_STATE(1167)] = 48651, - [SMALL_STATE(1168)] = 48699, - [SMALL_STATE(1169)] = 48749, - [SMALL_STATE(1170)] = 48835, - [SMALL_STATE(1171)] = 48921, - [SMALL_STATE(1172)] = 49007, - [SMALL_STATE(1173)] = 49093, - [SMALL_STATE(1174)] = 49179, - [SMALL_STATE(1175)] = 49265, - [SMALL_STATE(1176)] = 49351, - [SMALL_STATE(1177)] = 49437, - [SMALL_STATE(1178)] = 49509, - [SMALL_STATE(1179)] = 49595, - [SMALL_STATE(1180)] = 49681, - [SMALL_STATE(1181)] = 49767, - [SMALL_STATE(1182)] = 49839, - [SMALL_STATE(1183)] = 49899, - [SMALL_STATE(1184)] = 49985, - [SMALL_STATE(1185)] = 50071, - [SMALL_STATE(1186)] = 50135, - [SMALL_STATE(1187)] = 50221, - [SMALL_STATE(1188)] = 50307, - [SMALL_STATE(1189)] = 50355, - [SMALL_STATE(1190)] = 50441, - [SMALL_STATE(1191)] = 50527, - [SMALL_STATE(1192)] = 50577, - [SMALL_STATE(1193)] = 50663, - [SMALL_STATE(1194)] = 50729, - [SMALL_STATE(1195)] = 50815, - [SMALL_STATE(1196)] = 50895, - [SMALL_STATE(1197)] = 50981, - [SMALL_STATE(1198)] = 51067, - [SMALL_STATE(1199)] = 51115, - [SMALL_STATE(1200)] = 51201, - [SMALL_STATE(1201)] = 51275, - [SMALL_STATE(1202)] = 51355, - [SMALL_STATE(1203)] = 51427, - [SMALL_STATE(1204)] = 51513, - [SMALL_STATE(1205)] = 51599, - [SMALL_STATE(1206)] = 51649, - [SMALL_STATE(1207)] = 51735, - [SMALL_STATE(1208)] = 51821, - [SMALL_STATE(1209)] = 51889, - [SMALL_STATE(1210)] = 51975, - [SMALL_STATE(1211)] = 52055, - [SMALL_STATE(1212)] = 52117, - [SMALL_STATE(1213)] = 52203, - [SMALL_STATE(1214)] = 52272, - [SMALL_STATE(1215)] = 52347, - [SMALL_STATE(1216)] = 52422, - [SMALL_STATE(1217)] = 52491, - [SMALL_STATE(1218)] = 52557, - [SMALL_STATE(1219)] = 52623, - [SMALL_STATE(1220)] = 52686, - [SMALL_STATE(1221)] = 52749, - [SMALL_STATE(1222)] = 52812, - [SMALL_STATE(1223)] = 52875, - [SMALL_STATE(1224)] = 52938, - [SMALL_STATE(1225)] = 52977, - [SMALL_STATE(1226)] = 53016, - [SMALL_STATE(1227)] = 53055, - [SMALL_STATE(1228)] = 53108, - [SMALL_STATE(1229)] = 53161, - [SMALL_STATE(1230)] = 53214, - [SMALL_STATE(1231)] = 53267, - [SMALL_STATE(1232)] = 53320, - [SMALL_STATE(1233)] = 53373, - [SMALL_STATE(1234)] = 53426, - [SMALL_STATE(1235)] = 53476, - [SMALL_STATE(1236)] = 53526, - [SMALL_STATE(1237)] = 53566, - [SMALL_STATE(1238)] = 53595, - [SMALL_STATE(1239)] = 53624, - [SMALL_STATE(1240)] = 53653, - [SMALL_STATE(1241)] = 53682, - [SMALL_STATE(1242)] = 53711, - [SMALL_STATE(1243)] = 53740, - [SMALL_STATE(1244)] = 53777, - [SMALL_STATE(1245)] = 53806, - [SMALL_STATE(1246)] = 53835, - [SMALL_STATE(1247)] = 53872, - [SMALL_STATE(1248)] = 53926, - [SMALL_STATE(1249)] = 53958, - [SMALL_STATE(1250)] = 53990, - [SMALL_STATE(1251)] = 54044, - [SMALL_STATE(1252)] = 54076, - [SMALL_STATE(1253)] = 54099, - [SMALL_STATE(1254)] = 54122, - [SMALL_STATE(1255)] = 54147, - [SMALL_STATE(1256)] = 54170, - [SMALL_STATE(1257)] = 54209, - [SMALL_STATE(1258)] = 54233, - [SMALL_STATE(1259)] = 54257, - [SMALL_STATE(1260)] = 54281, - [SMALL_STATE(1261)] = 54303, - [SMALL_STATE(1262)] = 54327, - [SMALL_STATE(1263)] = 54349, - [SMALL_STATE(1264)] = 54373, - [SMALL_STATE(1265)] = 54397, - [SMALL_STATE(1266)] = 54421, - [SMALL_STATE(1267)] = 54445, - [SMALL_STATE(1268)] = 54469, - [SMALL_STATE(1269)] = 54491, - [SMALL_STATE(1270)] = 54513, - [SMALL_STATE(1271)] = 54537, - [SMALL_STATE(1272)] = 54560, - [SMALL_STATE(1273)] = 54605, - [SMALL_STATE(1274)] = 54626, - [SMALL_STATE(1275)] = 54651, - [SMALL_STATE(1276)] = 54674, - [SMALL_STATE(1277)] = 54699, - [SMALL_STATE(1278)] = 54724, - [SMALL_STATE(1279)] = 54745, - [SMALL_STATE(1280)] = 54768, - [SMALL_STATE(1281)] = 54789, - [SMALL_STATE(1282)] = 54832, - [SMALL_STATE(1283)] = 54853, - [SMALL_STATE(1284)] = 54876, - [SMALL_STATE(1285)] = 54897, - [SMALL_STATE(1286)] = 54922, - [SMALL_STATE(1287)] = 54945, - [SMALL_STATE(1288)] = 54968, - [SMALL_STATE(1289)] = 54991, - [SMALL_STATE(1290)] = 55016, - [SMALL_STATE(1291)] = 55059, - [SMALL_STATE(1292)] = 55100, - [SMALL_STATE(1293)] = 55125, - [SMALL_STATE(1294)] = 55145, - [SMALL_STATE(1295)] = 55165, - [SMALL_STATE(1296)] = 55185, - [SMALL_STATE(1297)] = 55205, - [SMALL_STATE(1298)] = 55225, - [SMALL_STATE(1299)] = 55245, - [SMALL_STATE(1300)] = 55265, - [SMALL_STATE(1301)] = 55285, - [SMALL_STATE(1302)] = 55305, - [SMALL_STATE(1303)] = 55325, - [SMALL_STATE(1304)] = 55361, - [SMALL_STATE(1305)] = 55383, - [SMALL_STATE(1306)] = 55403, - [SMALL_STATE(1307)] = 55423, - [SMALL_STATE(1308)] = 55443, - [SMALL_STATE(1309)] = 55463, - [SMALL_STATE(1310)] = 55483, - [SMALL_STATE(1311)] = 55503, - [SMALL_STATE(1312)] = 55523, - [SMALL_STATE(1313)] = 55543, - [SMALL_STATE(1314)] = 55563, - [SMALL_STATE(1315)] = 55583, - [SMALL_STATE(1316)] = 55603, - [SMALL_STATE(1317)] = 55623, - [SMALL_STATE(1318)] = 55643, - [SMALL_STATE(1319)] = 55663, - [SMALL_STATE(1320)] = 55683, - [SMALL_STATE(1321)] = 55718, - [SMALL_STATE(1322)] = 55745, - [SMALL_STATE(1323)] = 55768, - [SMALL_STATE(1324)] = 55791, - [SMALL_STATE(1325)] = 55813, - [SMALL_STATE(1326)] = 55837, - [SMALL_STATE(1327)] = 55861, - [SMALL_STATE(1328)] = 55885, - [SMALL_STATE(1329)] = 55905, - [SMALL_STATE(1330)] = 55929, - [SMALL_STATE(1331)] = 55949, - [SMALL_STATE(1332)] = 55969, - [SMALL_STATE(1333)] = 55989, - [SMALL_STATE(1334)] = 56013, - [SMALL_STATE(1335)] = 56033, - [SMALL_STATE(1336)] = 56053, - [SMALL_STATE(1337)] = 56073, - [SMALL_STATE(1338)] = 56097, - [SMALL_STATE(1339)] = 56117, - [SMALL_STATE(1340)] = 56141, - [SMALL_STATE(1341)] = 56161, - [SMALL_STATE(1342)] = 56181, - [SMALL_STATE(1343)] = 56201, - [SMALL_STATE(1344)] = 56221, - [SMALL_STATE(1345)] = 56241, - [SMALL_STATE(1346)] = 56261, - [SMALL_STATE(1347)] = 56281, - [SMALL_STATE(1348)] = 56301, - [SMALL_STATE(1349)] = 56321, - [SMALL_STATE(1350)] = 56345, - [SMALL_STATE(1351)] = 56367, - [SMALL_STATE(1352)] = 56387, - [SMALL_STATE(1353)] = 56407, - [SMALL_STATE(1354)] = 56427, - [SMALL_STATE(1355)] = 56451, - [SMALL_STATE(1356)] = 56471, - [SMALL_STATE(1357)] = 56495, - [SMALL_STATE(1358)] = 56515, - [SMALL_STATE(1359)] = 56535, - [SMALL_STATE(1360)] = 56555, - [SMALL_STATE(1361)] = 56575, - [SMALL_STATE(1362)] = 56595, - [SMALL_STATE(1363)] = 56617, - [SMALL_STATE(1364)] = 56637, - [SMALL_STATE(1365)] = 56659, - [SMALL_STATE(1366)] = 56683, - [SMALL_STATE(1367)] = 56707, - [SMALL_STATE(1368)] = 56727, - [SMALL_STATE(1369)] = 56751, - [SMALL_STATE(1370)] = 56782, - [SMALL_STATE(1371)] = 56807, - [SMALL_STATE(1372)] = 56838, - [SMALL_STATE(1373)] = 56871, - [SMALL_STATE(1374)] = 56902, - [SMALL_STATE(1375)] = 56931, - [SMALL_STATE(1376)] = 56958, - [SMALL_STATE(1377)] = 56977, - [SMALL_STATE(1378)] = 57008, - [SMALL_STATE(1379)] = 57039, - [SMALL_STATE(1380)] = 57072, - [SMALL_STATE(1381)] = 57103, - [SMALL_STATE(1382)] = 57134, - [SMALL_STATE(1383)] = 57167, - [SMALL_STATE(1384)] = 57190, - [SMALL_STATE(1385)] = 57221, - [SMALL_STATE(1386)] = 57244, - [SMALL_STATE(1387)] = 57277, - [SMALL_STATE(1388)] = 57308, - [SMALL_STATE(1389)] = 57338, - [SMALL_STATE(1390)] = 57364, - [SMALL_STATE(1391)] = 57394, - [SMALL_STATE(1392)] = 57426, - [SMALL_STATE(1393)] = 57456, - [SMALL_STATE(1394)] = 57488, - [SMALL_STATE(1395)] = 57512, - [SMALL_STATE(1396)] = 57542, - [SMALL_STATE(1397)] = 57572, - [SMALL_STATE(1398)] = 57602, - [SMALL_STATE(1399)] = 57624, - [SMALL_STATE(1400)] = 57650, - [SMALL_STATE(1401)] = 57672, - [SMALL_STATE(1402)] = 57702, - [SMALL_STATE(1403)] = 57722, - [SMALL_STATE(1404)] = 57752, - [SMALL_STATE(1405)] = 57774, - [SMALL_STATE(1406)] = 57804, - [SMALL_STATE(1407)] = 57836, - [SMALL_STATE(1408)] = 57866, - [SMALL_STATE(1409)] = 57886, - [SMALL_STATE(1410)] = 57916, - [SMALL_STATE(1411)] = 57946, - [SMALL_STATE(1412)] = 57966, - [SMALL_STATE(1413)] = 57988, - [SMALL_STATE(1414)] = 58018, - [SMALL_STATE(1415)] = 58048, - [SMALL_STATE(1416)] = 58078, - [SMALL_STATE(1417)] = 58108, - [SMALL_STATE(1418)] = 58138, - [SMALL_STATE(1419)] = 58158, - [SMALL_STATE(1420)] = 58178, - [SMALL_STATE(1421)] = 58198, - [SMALL_STATE(1422)] = 58228, - [SMALL_STATE(1423)] = 58258, - [SMALL_STATE(1424)] = 58290, - [SMALL_STATE(1425)] = 58320, - [SMALL_STATE(1426)] = 58342, - [SMALL_STATE(1427)] = 58372, - [SMALL_STATE(1428)] = 58397, - [SMALL_STATE(1429)] = 58422, - [SMALL_STATE(1430)] = 58449, - [SMALL_STATE(1431)] = 58476, - [SMALL_STATE(1432)] = 58505, - [SMALL_STATE(1433)] = 58530, - [SMALL_STATE(1434)] = 58559, - [SMALL_STATE(1435)] = 58584, - [SMALL_STATE(1436)] = 58609, - [SMALL_STATE(1437)] = 58628, - [SMALL_STATE(1438)] = 58653, - [SMALL_STATE(1439)] = 58680, - [SMALL_STATE(1440)] = 58703, - [SMALL_STATE(1441)] = 58726, - [SMALL_STATE(1442)] = 58753, - [SMALL_STATE(1443)] = 58780, - [SMALL_STATE(1444)] = 58807, - [SMALL_STATE(1445)] = 58834, - [SMALL_STATE(1446)] = 58861, - [SMALL_STATE(1447)] = 58886, - [SMALL_STATE(1448)] = 58907, - [SMALL_STATE(1449)] = 58936, - [SMALL_STATE(1450)] = 58951, - [SMALL_STATE(1451)] = 58980, - [SMALL_STATE(1452)] = 58999, - [SMALL_STATE(1453)] = 59024, - [SMALL_STATE(1454)] = 59051, - [SMALL_STATE(1455)] = 59066, - [SMALL_STATE(1456)] = 59085, - [SMALL_STATE(1457)] = 59112, - [SMALL_STATE(1458)] = 59141, - [SMALL_STATE(1459)] = 59162, - [SMALL_STATE(1460)] = 59181, - [SMALL_STATE(1461)] = 59206, - [SMALL_STATE(1462)] = 59233, - [SMALL_STATE(1463)] = 59252, - [SMALL_STATE(1464)] = 59271, - [SMALL_STATE(1465)] = 59300, - [SMALL_STATE(1466)] = 59319, - [SMALL_STATE(1467)] = 59340, - [SMALL_STATE(1468)] = 59367, - [SMALL_STATE(1469)] = 59394, - [SMALL_STATE(1470)] = 59421, - [SMALL_STATE(1471)] = 59448, - [SMALL_STATE(1472)] = 59462, - [SMALL_STATE(1473)] = 59478, - [SMALL_STATE(1474)] = 59498, - [SMALL_STATE(1475)] = 59514, - [SMALL_STATE(1476)] = 59530, - [SMALL_STATE(1477)] = 59544, - [SMALL_STATE(1478)] = 59568, - [SMALL_STATE(1479)] = 59584, - [SMALL_STATE(1480)] = 59600, - [SMALL_STATE(1481)] = 59622, - [SMALL_STATE(1482)] = 59646, - [SMALL_STATE(1483)] = 59672, - [SMALL_STATE(1484)] = 59688, - [SMALL_STATE(1485)] = 59702, - [SMALL_STATE(1486)] = 59718, - [SMALL_STATE(1487)] = 59744, - [SMALL_STATE(1488)] = 59758, - [SMALL_STATE(1489)] = 59784, - [SMALL_STATE(1490)] = 59800, - [SMALL_STATE(1491)] = 59826, - [SMALL_STATE(1492)] = 59842, - [SMALL_STATE(1493)] = 59856, - [SMALL_STATE(1494)] = 59870, - [SMALL_STATE(1495)] = 59896, - [SMALL_STATE(1496)] = 59918, - [SMALL_STATE(1497)] = 59944, - [SMALL_STATE(1498)] = 59958, - [SMALL_STATE(1499)] = 59980, - [SMALL_STATE(1500)] = 60002, - [SMALL_STATE(1501)] = 60028, - [SMALL_STATE(1502)] = 60054, - [SMALL_STATE(1503)] = 60080, - [SMALL_STATE(1504)] = 60102, - [SMALL_STATE(1505)] = 60124, - [SMALL_STATE(1506)] = 60148, - [SMALL_STATE(1507)] = 60170, - [SMALL_STATE(1508)] = 60186, - [SMALL_STATE(1509)] = 60208, - [SMALL_STATE(1510)] = 60234, - [SMALL_STATE(1511)] = 60260, - [SMALL_STATE(1512)] = 60284, - [SMALL_STATE(1513)] = 60310, - [SMALL_STATE(1514)] = 60332, - [SMALL_STATE(1515)] = 60355, - [SMALL_STATE(1516)] = 60378, - [SMALL_STATE(1517)] = 60401, - [SMALL_STATE(1518)] = 60424, - [SMALL_STATE(1519)] = 60443, - [SMALL_STATE(1520)] = 60466, - [SMALL_STATE(1521)] = 60489, - [SMALL_STATE(1522)] = 60512, - [SMALL_STATE(1523)] = 60533, - [SMALL_STATE(1524)] = 60556, - [SMALL_STATE(1525)] = 60579, - [SMALL_STATE(1526)] = 60602, - [SMALL_STATE(1527)] = 60625, - [SMALL_STATE(1528)] = 60648, - [SMALL_STATE(1529)] = 60671, - [SMALL_STATE(1530)] = 60688, - [SMALL_STATE(1531)] = 60711, - [SMALL_STATE(1532)] = 60734, - [SMALL_STATE(1533)] = 60757, - [SMALL_STATE(1534)] = 60780, - [SMALL_STATE(1535)] = 60803, - [SMALL_STATE(1536)] = 60826, - [SMALL_STATE(1537)] = 60847, - [SMALL_STATE(1538)] = 60864, - [SMALL_STATE(1539)] = 60887, - [SMALL_STATE(1540)] = 60908, - [SMALL_STATE(1541)] = 60925, - [SMALL_STATE(1542)] = 60942, - [SMALL_STATE(1543)] = 60959, - [SMALL_STATE(1544)] = 60978, - [SMALL_STATE(1545)] = 60995, - [SMALL_STATE(1546)] = 61012, - [SMALL_STATE(1547)] = 61035, - [SMALL_STATE(1548)] = 61058, - [SMALL_STATE(1549)] = 61081, - [SMALL_STATE(1550)] = 61104, - [SMALL_STATE(1551)] = 61127, - [SMALL_STATE(1552)] = 61150, - [SMALL_STATE(1553)] = 61173, - [SMALL_STATE(1554)] = 61190, - [SMALL_STATE(1555)] = 61213, - [SMALL_STATE(1556)] = 61236, - [SMALL_STATE(1557)] = 61259, - [SMALL_STATE(1558)] = 61282, - [SMALL_STATE(1559)] = 61301, - [SMALL_STATE(1560)] = 61324, - [SMALL_STATE(1561)] = 61347, - [SMALL_STATE(1562)] = 61370, - [SMALL_STATE(1563)] = 61393, - [SMALL_STATE(1564)] = 61416, - [SMALL_STATE(1565)] = 61439, - [SMALL_STATE(1566)] = 61462, - [SMALL_STATE(1567)] = 61485, - [SMALL_STATE(1568)] = 61508, - [SMALL_STATE(1569)] = 61531, - [SMALL_STATE(1570)] = 61554, - [SMALL_STATE(1571)] = 61577, - [SMALL_STATE(1572)] = 61600, - [SMALL_STATE(1573)] = 61623, - [SMALL_STATE(1574)] = 61640, - [SMALL_STATE(1575)] = 61663, - [SMALL_STATE(1576)] = 61683, - [SMALL_STATE(1577)] = 61703, - [SMALL_STATE(1578)] = 61723, - [SMALL_STATE(1579)] = 61743, - [SMALL_STATE(1580)] = 61759, - [SMALL_STATE(1581)] = 61771, - [SMALL_STATE(1582)] = 61791, - [SMALL_STATE(1583)] = 61803, - [SMALL_STATE(1584)] = 61823, - [SMALL_STATE(1585)] = 61843, - [SMALL_STATE(1586)] = 61859, - [SMALL_STATE(1587)] = 61879, - [SMALL_STATE(1588)] = 61891, - [SMALL_STATE(1589)] = 61903, - [SMALL_STATE(1590)] = 61915, - [SMALL_STATE(1591)] = 61931, - [SMALL_STATE(1592)] = 61947, - [SMALL_STATE(1593)] = 61963, - [SMALL_STATE(1594)] = 61983, - [SMALL_STATE(1595)] = 61999, - [SMALL_STATE(1596)] = 62015, - [SMALL_STATE(1597)] = 62031, - [SMALL_STATE(1598)] = 62047, - [SMALL_STATE(1599)] = 62063, - [SMALL_STATE(1600)] = 62083, - [SMALL_STATE(1601)] = 62103, - [SMALL_STATE(1602)] = 62123, - [SMALL_STATE(1603)] = 62135, - [SMALL_STATE(1604)] = 62151, - [SMALL_STATE(1605)] = 62171, - [SMALL_STATE(1606)] = 62187, - [SMALL_STATE(1607)] = 62203, - [SMALL_STATE(1608)] = 62219, - [SMALL_STATE(1609)] = 62237, - [SMALL_STATE(1610)] = 62251, - [SMALL_STATE(1611)] = 62267, - [SMALL_STATE(1612)] = 62287, - [SMALL_STATE(1613)] = 62307, - [SMALL_STATE(1614)] = 62321, - [SMALL_STATE(1615)] = 62337, - [SMALL_STATE(1616)] = 62353, - [SMALL_STATE(1617)] = 62365, - [SMALL_STATE(1618)] = 62377, - [SMALL_STATE(1619)] = 62397, - [SMALL_STATE(1620)] = 62409, - [SMALL_STATE(1621)] = 62429, - [SMALL_STATE(1622)] = 62449, - [SMALL_STATE(1623)] = 62461, - [SMALL_STATE(1624)] = 62481, - [SMALL_STATE(1625)] = 62493, - [SMALL_STATE(1626)] = 62513, - [SMALL_STATE(1627)] = 62533, - [SMALL_STATE(1628)] = 62553, - [SMALL_STATE(1629)] = 62569, - [SMALL_STATE(1630)] = 62585, - [SMALL_STATE(1631)] = 62597, - [SMALL_STATE(1632)] = 62613, - [SMALL_STATE(1633)] = 62633, - [SMALL_STATE(1634)] = 62653, - [SMALL_STATE(1635)] = 62669, - [SMALL_STATE(1636)] = 62685, - [SMALL_STATE(1637)] = 62705, - [SMALL_STATE(1638)] = 62721, - [SMALL_STATE(1639)] = 62741, - [SMALL_STATE(1640)] = 62761, - [SMALL_STATE(1641)] = 62781, - [SMALL_STATE(1642)] = 62801, - [SMALL_STATE(1643)] = 62818, - [SMALL_STATE(1644)] = 62835, - [SMALL_STATE(1645)] = 62852, - [SMALL_STATE(1646)] = 62867, - [SMALL_STATE(1647)] = 62884, - [SMALL_STATE(1648)] = 62901, - [SMALL_STATE(1649)] = 62916, - [SMALL_STATE(1650)] = 62933, - [SMALL_STATE(1651)] = 62950, - [SMALL_STATE(1652)] = 62967, - [SMALL_STATE(1653)] = 62984, - [SMALL_STATE(1654)] = 63001, - [SMALL_STATE(1655)] = 63016, - [SMALL_STATE(1656)] = 63033, - [SMALL_STATE(1657)] = 63048, - [SMALL_STATE(1658)] = 63065, - [SMALL_STATE(1659)] = 63078, - [SMALL_STATE(1660)] = 63093, - [SMALL_STATE(1661)] = 63110, - [SMALL_STATE(1662)] = 63127, - [SMALL_STATE(1663)] = 63144, - [SMALL_STATE(1664)] = 63161, - [SMALL_STATE(1665)] = 63178, - [SMALL_STATE(1666)] = 63195, - [SMALL_STATE(1667)] = 63212, - [SMALL_STATE(1668)] = 63227, - [SMALL_STATE(1669)] = 63240, - [SMALL_STATE(1670)] = 63257, - [SMALL_STATE(1671)] = 63274, - [SMALL_STATE(1672)] = 63291, - [SMALL_STATE(1673)] = 63308, - [SMALL_STATE(1674)] = 63325, - [SMALL_STATE(1675)] = 63342, - [SMALL_STATE(1676)] = 63359, - [SMALL_STATE(1677)] = 63374, - [SMALL_STATE(1678)] = 63389, - [SMALL_STATE(1679)] = 63404, - [SMALL_STATE(1680)] = 63419, - [SMALL_STATE(1681)] = 63436, - [SMALL_STATE(1682)] = 63451, - [SMALL_STATE(1683)] = 63468, - [SMALL_STATE(1684)] = 63485, - [SMALL_STATE(1685)] = 63500, - [SMALL_STATE(1686)] = 63515, - [SMALL_STATE(1687)] = 63532, - [SMALL_STATE(1688)] = 63549, - [SMALL_STATE(1689)] = 63566, - [SMALL_STATE(1690)] = 63581, - [SMALL_STATE(1691)] = 63594, - [SMALL_STATE(1692)] = 63609, - [SMALL_STATE(1693)] = 63622, - [SMALL_STATE(1694)] = 63637, - [SMALL_STATE(1695)] = 63652, - [SMALL_STATE(1696)] = 63669, - [SMALL_STATE(1697)] = 63686, - [SMALL_STATE(1698)] = 63703, - [SMALL_STATE(1699)] = 63718, - [SMALL_STATE(1700)] = 63731, - [SMALL_STATE(1701)] = 63748, - [SMALL_STATE(1702)] = 63765, - [SMALL_STATE(1703)] = 63782, - [SMALL_STATE(1704)] = 63799, - [SMALL_STATE(1705)] = 63816, - [SMALL_STATE(1706)] = 63833, - [SMALL_STATE(1707)] = 63850, - [SMALL_STATE(1708)] = 63867, - [SMALL_STATE(1709)] = 63882, - [SMALL_STATE(1710)] = 63899, - [SMALL_STATE(1711)] = 63916, - [SMALL_STATE(1712)] = 63933, - [SMALL_STATE(1713)] = 63950, - [SMALL_STATE(1714)] = 63963, - [SMALL_STATE(1715)] = 63980, - [SMALL_STATE(1716)] = 63997, - [SMALL_STATE(1717)] = 64014, - [SMALL_STATE(1718)] = 64031, - [SMALL_STATE(1719)] = 64046, - [SMALL_STATE(1720)] = 64059, - [SMALL_STATE(1721)] = 64072, - [SMALL_STATE(1722)] = 64089, - [SMALL_STATE(1723)] = 64106, - [SMALL_STATE(1724)] = 64123, - [SMALL_STATE(1725)] = 64138, - [SMALL_STATE(1726)] = 64153, - [SMALL_STATE(1727)] = 64168, - [SMALL_STATE(1728)] = 64185, - [SMALL_STATE(1729)] = 64202, - [SMALL_STATE(1730)] = 64219, - [SMALL_STATE(1731)] = 64236, - [SMALL_STATE(1732)] = 64253, - [SMALL_STATE(1733)] = 64270, - [SMALL_STATE(1734)] = 64284, - [SMALL_STATE(1735)] = 64298, - [SMALL_STATE(1736)] = 64312, - [SMALL_STATE(1737)] = 64326, - [SMALL_STATE(1738)] = 64336, - [SMALL_STATE(1739)] = 64350, - [SMALL_STATE(1740)] = 64360, - [SMALL_STATE(1741)] = 64374, - [SMALL_STATE(1742)] = 64384, - [SMALL_STATE(1743)] = 64398, - [SMALL_STATE(1744)] = 64408, - [SMALL_STATE(1745)] = 64422, - [SMALL_STATE(1746)] = 64436, - [SMALL_STATE(1747)] = 64450, - [SMALL_STATE(1748)] = 64464, - [SMALL_STATE(1749)] = 64478, - [SMALL_STATE(1750)] = 64492, - [SMALL_STATE(1751)] = 64506, - [SMALL_STATE(1752)] = 64520, - [SMALL_STATE(1753)] = 64534, - [SMALL_STATE(1754)] = 64548, - [SMALL_STATE(1755)] = 64562, - [SMALL_STATE(1756)] = 64576, - [SMALL_STATE(1757)] = 64590, - [SMALL_STATE(1758)] = 64604, - [SMALL_STATE(1759)] = 64618, - [SMALL_STATE(1760)] = 64632, - [SMALL_STATE(1761)] = 64646, - [SMALL_STATE(1762)] = 64660, - [SMALL_STATE(1763)] = 64674, - [SMALL_STATE(1764)] = 64688, - [SMALL_STATE(1765)] = 64702, - [SMALL_STATE(1766)] = 64714, - [SMALL_STATE(1767)] = 64728, - [SMALL_STATE(1768)] = 64742, - [SMALL_STATE(1769)] = 64756, - [SMALL_STATE(1770)] = 64770, - [SMALL_STATE(1771)] = 64784, - [SMALL_STATE(1772)] = 64798, - [SMALL_STATE(1773)] = 64810, - [SMALL_STATE(1774)] = 64824, - [SMALL_STATE(1775)] = 64838, - [SMALL_STATE(1776)] = 64852, - [SMALL_STATE(1777)] = 64866, - [SMALL_STATE(1778)] = 64880, - [SMALL_STATE(1779)] = 64894, - [SMALL_STATE(1780)] = 64908, - [SMALL_STATE(1781)] = 64922, - [SMALL_STATE(1782)] = 64936, - [SMALL_STATE(1783)] = 64946, - [SMALL_STATE(1784)] = 64958, - [SMALL_STATE(1785)] = 64972, - [SMALL_STATE(1786)] = 64986, - [SMALL_STATE(1787)] = 65000, - [SMALL_STATE(1788)] = 65014, - [SMALL_STATE(1789)] = 65028, - [SMALL_STATE(1790)] = 65040, - [SMALL_STATE(1791)] = 65054, - [SMALL_STATE(1792)] = 65066, - [SMALL_STATE(1793)] = 65080, - [SMALL_STATE(1794)] = 65094, - [SMALL_STATE(1795)] = 65108, - [SMALL_STATE(1796)] = 65122, - [SMALL_STATE(1797)] = 65136, - [SMALL_STATE(1798)] = 65150, - [SMALL_STATE(1799)] = 65162, - [SMALL_STATE(1800)] = 65172, - [SMALL_STATE(1801)] = 65186, - [SMALL_STATE(1802)] = 65196, - [SMALL_STATE(1803)] = 65210, - [SMALL_STATE(1804)] = 65220, - [SMALL_STATE(1805)] = 65232, - [SMALL_STATE(1806)] = 65244, - [SMALL_STATE(1807)] = 65256, - [SMALL_STATE(1808)] = 65270, - [SMALL_STATE(1809)] = 65284, - [SMALL_STATE(1810)] = 65298, - [SMALL_STATE(1811)] = 65312, - [SMALL_STATE(1812)] = 65326, - [SMALL_STATE(1813)] = 65338, - [SMALL_STATE(1814)] = 65352, - [SMALL_STATE(1815)] = 65364, - [SMALL_STATE(1816)] = 65378, - [SMALL_STATE(1817)] = 65392, - [SMALL_STATE(1818)] = 65404, - [SMALL_STATE(1819)] = 65418, - [SMALL_STATE(1820)] = 65432, - [SMALL_STATE(1821)] = 65444, - [SMALL_STATE(1822)] = 65456, - [SMALL_STATE(1823)] = 65470, - [SMALL_STATE(1824)] = 65482, - [SMALL_STATE(1825)] = 65494, - [SMALL_STATE(1826)] = 65506, - [SMALL_STATE(1827)] = 65520, - [SMALL_STATE(1828)] = 65534, - [SMALL_STATE(1829)] = 65548, - [SMALL_STATE(1830)] = 65562, - [SMALL_STATE(1831)] = 65576, - [SMALL_STATE(1832)] = 65590, - [SMALL_STATE(1833)] = 65604, - [SMALL_STATE(1834)] = 65618, - [SMALL_STATE(1835)] = 65630, - [SMALL_STATE(1836)] = 65644, - [SMALL_STATE(1837)] = 65658, - [SMALL_STATE(1838)] = 65672, - [SMALL_STATE(1839)] = 65686, - [SMALL_STATE(1840)] = 65696, - [SMALL_STATE(1841)] = 65706, - [SMALL_STATE(1842)] = 65720, - [SMALL_STATE(1843)] = 65732, - [SMALL_STATE(1844)] = 65744, - [SMALL_STATE(1845)] = 65758, - [SMALL_STATE(1846)] = 65772, - [SMALL_STATE(1847)] = 65784, - [SMALL_STATE(1848)] = 65798, - [SMALL_STATE(1849)] = 65808, - [SMALL_STATE(1850)] = 65822, - [SMALL_STATE(1851)] = 65836, - [SMALL_STATE(1852)] = 65846, - [SMALL_STATE(1853)] = 65860, - [SMALL_STATE(1854)] = 65874, - [SMALL_STATE(1855)] = 65888, - [SMALL_STATE(1856)] = 65902, - [SMALL_STATE(1857)] = 65916, - [SMALL_STATE(1858)] = 65930, - [SMALL_STATE(1859)] = 65944, - [SMALL_STATE(1860)] = 65954, - [SMALL_STATE(1861)] = 65968, - [SMALL_STATE(1862)] = 65982, - [SMALL_STATE(1863)] = 65996, - [SMALL_STATE(1864)] = 66008, - [SMALL_STATE(1865)] = 66018, - [SMALL_STATE(1866)] = 66028, - [SMALL_STATE(1867)] = 66042, - [SMALL_STATE(1868)] = 66056, - [SMALL_STATE(1869)] = 66070, - [SMALL_STATE(1870)] = 66084, - [SMALL_STATE(1871)] = 66098, - [SMALL_STATE(1872)] = 66112, - [SMALL_STATE(1873)] = 66126, - [SMALL_STATE(1874)] = 66140, - [SMALL_STATE(1875)] = 66154, - [SMALL_STATE(1876)] = 66168, - [SMALL_STATE(1877)] = 66182, - [SMALL_STATE(1878)] = 66196, - [SMALL_STATE(1879)] = 66206, - [SMALL_STATE(1880)] = 66220, - [SMALL_STATE(1881)] = 66234, - [SMALL_STATE(1882)] = 66248, - [SMALL_STATE(1883)] = 66258, - [SMALL_STATE(1884)] = 66268, - [SMALL_STATE(1885)] = 66282, - [SMALL_STATE(1886)] = 66296, - [SMALL_STATE(1887)] = 66310, - [SMALL_STATE(1888)] = 66324, - [SMALL_STATE(1889)] = 66338, - [SMALL_STATE(1890)] = 66352, - [SMALL_STATE(1891)] = 66366, - [SMALL_STATE(1892)] = 66380, - [SMALL_STATE(1893)] = 66394, - [SMALL_STATE(1894)] = 66408, - [SMALL_STATE(1895)] = 66422, - [SMALL_STATE(1896)] = 66436, - [SMALL_STATE(1897)] = 66450, - [SMALL_STATE(1898)] = 66464, - [SMALL_STATE(1899)] = 66474, - [SMALL_STATE(1900)] = 66484, - [SMALL_STATE(1901)] = 66498, - [SMALL_STATE(1902)] = 66512, - [SMALL_STATE(1903)] = 66526, - [SMALL_STATE(1904)] = 66536, - [SMALL_STATE(1905)] = 66550, - [SMALL_STATE(1906)] = 66560, - [SMALL_STATE(1907)] = 66574, - [SMALL_STATE(1908)] = 66588, - [SMALL_STATE(1909)] = 66602, - [SMALL_STATE(1910)] = 66616, - [SMALL_STATE(1911)] = 66630, - [SMALL_STATE(1912)] = 66644, - [SMALL_STATE(1913)] = 66658, - [SMALL_STATE(1914)] = 66668, - [SMALL_STATE(1915)] = 66678, - [SMALL_STATE(1916)] = 66692, - [SMALL_STATE(1917)] = 66702, - [SMALL_STATE(1918)] = 66716, - [SMALL_STATE(1919)] = 66726, - [SMALL_STATE(1920)] = 66738, - [SMALL_STATE(1921)] = 66748, - [SMALL_STATE(1922)] = 66762, - [SMALL_STATE(1923)] = 66772, - [SMALL_STATE(1924)] = 66786, - [SMALL_STATE(1925)] = 66800, - [SMALL_STATE(1926)] = 66814, - [SMALL_STATE(1927)] = 66824, - [SMALL_STATE(1928)] = 66834, - [SMALL_STATE(1929)] = 66844, - [SMALL_STATE(1930)] = 66858, - [SMALL_STATE(1931)] = 66870, - [SMALL_STATE(1932)] = 66884, - [SMALL_STATE(1933)] = 66896, - [SMALL_STATE(1934)] = 66906, - [SMALL_STATE(1935)] = 66918, - [SMALL_STATE(1936)] = 66932, - [SMALL_STATE(1937)] = 66946, - [SMALL_STATE(1938)] = 66956, - [SMALL_STATE(1939)] = 66970, - [SMALL_STATE(1940)] = 66980, - [SMALL_STATE(1941)] = 66994, - [SMALL_STATE(1942)] = 67008, - [SMALL_STATE(1943)] = 67022, - [SMALL_STATE(1944)] = 67036, - [SMALL_STATE(1945)] = 67050, - [SMALL_STATE(1946)] = 67064, - [SMALL_STATE(1947)] = 67078, - [SMALL_STATE(1948)] = 67092, - [SMALL_STATE(1949)] = 67106, - [SMALL_STATE(1950)] = 67120, - [SMALL_STATE(1951)] = 67130, - [SMALL_STATE(1952)] = 67144, - [SMALL_STATE(1953)] = 67158, - [SMALL_STATE(1954)] = 67170, - [SMALL_STATE(1955)] = 67184, - [SMALL_STATE(1956)] = 67198, - [SMALL_STATE(1957)] = 67212, - [SMALL_STATE(1958)] = 67226, - [SMALL_STATE(1959)] = 67240, - [SMALL_STATE(1960)] = 67254, - [SMALL_STATE(1961)] = 67268, - [SMALL_STATE(1962)] = 67282, - [SMALL_STATE(1963)] = 67296, - [SMALL_STATE(1964)] = 67310, - [SMALL_STATE(1965)] = 67324, - [SMALL_STATE(1966)] = 67338, - [SMALL_STATE(1967)] = 67352, - [SMALL_STATE(1968)] = 67364, - [SMALL_STATE(1969)] = 67376, - [SMALL_STATE(1970)] = 67390, - [SMALL_STATE(1971)] = 67404, - [SMALL_STATE(1972)] = 67418, - [SMALL_STATE(1973)] = 67432, - [SMALL_STATE(1974)] = 67442, - [SMALL_STATE(1975)] = 67456, - [SMALL_STATE(1976)] = 67468, - [SMALL_STATE(1977)] = 67478, - [SMALL_STATE(1978)] = 67492, - [SMALL_STATE(1979)] = 67504, - [SMALL_STATE(1980)] = 67514, - [SMALL_STATE(1981)] = 67526, - [SMALL_STATE(1982)] = 67536, - [SMALL_STATE(1983)] = 67550, - [SMALL_STATE(1984)] = 67564, - [SMALL_STATE(1985)] = 67575, - [SMALL_STATE(1986)] = 67586, - [SMALL_STATE(1987)] = 67597, - [SMALL_STATE(1988)] = 67608, - [SMALL_STATE(1989)] = 67619, - [SMALL_STATE(1990)] = 67630, - [SMALL_STATE(1991)] = 67641, - [SMALL_STATE(1992)] = 67652, - [SMALL_STATE(1993)] = 67663, - [SMALL_STATE(1994)] = 67674, - [SMALL_STATE(1995)] = 67683, - [SMALL_STATE(1996)] = 67694, - [SMALL_STATE(1997)] = 67705, - [SMALL_STATE(1998)] = 67716, - [SMALL_STATE(1999)] = 67727, - [SMALL_STATE(2000)] = 67738, - [SMALL_STATE(2001)] = 67749, - [SMALL_STATE(2002)] = 67760, - [SMALL_STATE(2003)] = 67771, - [SMALL_STATE(2004)] = 67782, - [SMALL_STATE(2005)] = 67793, - [SMALL_STATE(2006)] = 67802, - [SMALL_STATE(2007)] = 67813, - [SMALL_STATE(2008)] = 67824, - [SMALL_STATE(2009)] = 67835, - [SMALL_STATE(2010)] = 67846, - [SMALL_STATE(2011)] = 67855, - [SMALL_STATE(2012)] = 67864, - [SMALL_STATE(2013)] = 67875, - [SMALL_STATE(2014)] = 67886, - [SMALL_STATE(2015)] = 67897, - [SMALL_STATE(2016)] = 67908, - [SMALL_STATE(2017)] = 67919, - [SMALL_STATE(2018)] = 67930, - [SMALL_STATE(2019)] = 67941, - [SMALL_STATE(2020)] = 67950, - [SMALL_STATE(2021)] = 67961, - [SMALL_STATE(2022)] = 67972, - [SMALL_STATE(2023)] = 67981, - [SMALL_STATE(2024)] = 67992, - [SMALL_STATE(2025)] = 68003, - [SMALL_STATE(2026)] = 68012, - [SMALL_STATE(2027)] = 68023, - [SMALL_STATE(2028)] = 68034, - [SMALL_STATE(2029)] = 68045, - [SMALL_STATE(2030)] = 68056, - [SMALL_STATE(2031)] = 68067, - [SMALL_STATE(2032)] = 68078, - [SMALL_STATE(2033)] = 68089, - [SMALL_STATE(2034)] = 68100, - [SMALL_STATE(2035)] = 68111, - [SMALL_STATE(2036)] = 68122, - [SMALL_STATE(2037)] = 68133, - [SMALL_STATE(2038)] = 68144, - [SMALL_STATE(2039)] = 68155, - [SMALL_STATE(2040)] = 68166, - [SMALL_STATE(2041)] = 68175, - [SMALL_STATE(2042)] = 68184, - [SMALL_STATE(2043)] = 68193, - [SMALL_STATE(2044)] = 68204, - [SMALL_STATE(2045)] = 68215, - [SMALL_STATE(2046)] = 68226, - [SMALL_STATE(2047)] = 68237, - [SMALL_STATE(2048)] = 68248, - [SMALL_STATE(2049)] = 68259, - [SMALL_STATE(2050)] = 68268, - [SMALL_STATE(2051)] = 68279, - [SMALL_STATE(2052)] = 68290, - [SMALL_STATE(2053)] = 68299, - [SMALL_STATE(2054)] = 68310, - [SMALL_STATE(2055)] = 68319, - [SMALL_STATE(2056)] = 68328, - [SMALL_STATE(2057)] = 68337, - [SMALL_STATE(2058)] = 68348, - [SMALL_STATE(2059)] = 68359, - [SMALL_STATE(2060)] = 68368, - [SMALL_STATE(2061)] = 68379, - [SMALL_STATE(2062)] = 68390, - [SMALL_STATE(2063)] = 68401, - [SMALL_STATE(2064)] = 68412, - [SMALL_STATE(2065)] = 68423, - [SMALL_STATE(2066)] = 68434, - [SMALL_STATE(2067)] = 68443, - [SMALL_STATE(2068)] = 68452, - [SMALL_STATE(2069)] = 68461, - [SMALL_STATE(2070)] = 68472, - [SMALL_STATE(2071)] = 68483, - [SMALL_STATE(2072)] = 68494, - [SMALL_STATE(2073)] = 68505, - [SMALL_STATE(2074)] = 68516, - [SMALL_STATE(2075)] = 68527, - [SMALL_STATE(2076)] = 68538, - [SMALL_STATE(2077)] = 68549, - [SMALL_STATE(2078)] = 68560, - [SMALL_STATE(2079)] = 68571, - [SMALL_STATE(2080)] = 68582, - [SMALL_STATE(2081)] = 68593, - [SMALL_STATE(2082)] = 68604, - [SMALL_STATE(2083)] = 68615, - [SMALL_STATE(2084)] = 68626, - [SMALL_STATE(2085)] = 68637, - [SMALL_STATE(2086)] = 68648, - [SMALL_STATE(2087)] = 68659, - [SMALL_STATE(2088)] = 68670, - [SMALL_STATE(2089)] = 68679, - [SMALL_STATE(2090)] = 68690, - [SMALL_STATE(2091)] = 68701, - [SMALL_STATE(2092)] = 68712, - [SMALL_STATE(2093)] = 68723, - [SMALL_STATE(2094)] = 68734, - [SMALL_STATE(2095)] = 68745, - [SMALL_STATE(2096)] = 68756, - [SMALL_STATE(2097)] = 68767, - [SMALL_STATE(2098)] = 68778, - [SMALL_STATE(2099)] = 68787, - [SMALL_STATE(2100)] = 68798, - [SMALL_STATE(2101)] = 68807, - [SMALL_STATE(2102)] = 68816, - [SMALL_STATE(2103)] = 68827, - [SMALL_STATE(2104)] = 68838, - [SMALL_STATE(2105)] = 68849, - [SMALL_STATE(2106)] = 68860, - [SMALL_STATE(2107)] = 68871, - [SMALL_STATE(2108)] = 68882, - [SMALL_STATE(2109)] = 68893, - [SMALL_STATE(2110)] = 68904, - [SMALL_STATE(2111)] = 68915, - [SMALL_STATE(2112)] = 68926, - [SMALL_STATE(2113)] = 68937, - [SMALL_STATE(2114)] = 68948, - [SMALL_STATE(2115)] = 68959, - [SMALL_STATE(2116)] = 68970, - [SMALL_STATE(2117)] = 68981, - [SMALL_STATE(2118)] = 68992, - [SMALL_STATE(2119)] = 69001, - [SMALL_STATE(2120)] = 69012, - [SMALL_STATE(2121)] = 69023, - [SMALL_STATE(2122)] = 69034, - [SMALL_STATE(2123)] = 69043, - [SMALL_STATE(2124)] = 69054, - [SMALL_STATE(2125)] = 69065, - [SMALL_STATE(2126)] = 69076, - [SMALL_STATE(2127)] = 69087, - [SMALL_STATE(2128)] = 69098, - [SMALL_STATE(2129)] = 69109, - [SMALL_STATE(2130)] = 69120, - [SMALL_STATE(2131)] = 69131, - [SMALL_STATE(2132)] = 69142, - [SMALL_STATE(2133)] = 69153, - [SMALL_STATE(2134)] = 69164, - [SMALL_STATE(2135)] = 69175, - [SMALL_STATE(2136)] = 69186, - [SMALL_STATE(2137)] = 69197, - [SMALL_STATE(2138)] = 69208, - [SMALL_STATE(2139)] = 69219, - [SMALL_STATE(2140)] = 69230, - [SMALL_STATE(2141)] = 69239, - [SMALL_STATE(2142)] = 69248, - [SMALL_STATE(2143)] = 69259, - [SMALL_STATE(2144)] = 69268, - [SMALL_STATE(2145)] = 69279, - [SMALL_STATE(2146)] = 69290, - [SMALL_STATE(2147)] = 69301, - [SMALL_STATE(2148)] = 69312, - [SMALL_STATE(2149)] = 69323, - [SMALL_STATE(2150)] = 69334, - [SMALL_STATE(2151)] = 69345, - [SMALL_STATE(2152)] = 69356, - [SMALL_STATE(2153)] = 69367, - [SMALL_STATE(2154)] = 69378, - [SMALL_STATE(2155)] = 69389, - [SMALL_STATE(2156)] = 69398, - [SMALL_STATE(2157)] = 69409, - [SMALL_STATE(2158)] = 69418, - [SMALL_STATE(2159)] = 69429, - [SMALL_STATE(2160)] = 69440, - [SMALL_STATE(2161)] = 69451, - [SMALL_STATE(2162)] = 69462, - [SMALL_STATE(2163)] = 69473, - [SMALL_STATE(2164)] = 69484, - [SMALL_STATE(2165)] = 69495, - [SMALL_STATE(2166)] = 69503, - [SMALL_STATE(2167)] = 69511, - [SMALL_STATE(2168)] = 69519, - [SMALL_STATE(2169)] = 69527, - [SMALL_STATE(2170)] = 69535, - [SMALL_STATE(2171)] = 69543, - [SMALL_STATE(2172)] = 69551, - [SMALL_STATE(2173)] = 69559, - [SMALL_STATE(2174)] = 69567, - [SMALL_STATE(2175)] = 69575, - [SMALL_STATE(2176)] = 69583, - [SMALL_STATE(2177)] = 69591, - [SMALL_STATE(2178)] = 69599, - [SMALL_STATE(2179)] = 69607, - [SMALL_STATE(2180)] = 69615, - [SMALL_STATE(2181)] = 69623, - [SMALL_STATE(2182)] = 69631, - [SMALL_STATE(2183)] = 69639, - [SMALL_STATE(2184)] = 69647, - [SMALL_STATE(2185)] = 69655, - [SMALL_STATE(2186)] = 69663, - [SMALL_STATE(2187)] = 69671, - [SMALL_STATE(2188)] = 69679, - [SMALL_STATE(2189)] = 69687, - [SMALL_STATE(2190)] = 69695, - [SMALL_STATE(2191)] = 69703, - [SMALL_STATE(2192)] = 69711, - [SMALL_STATE(2193)] = 69719, - [SMALL_STATE(2194)] = 69727, - [SMALL_STATE(2195)] = 69735, - [SMALL_STATE(2196)] = 69743, - [SMALL_STATE(2197)] = 69751, - [SMALL_STATE(2198)] = 69759, - [SMALL_STATE(2199)] = 69767, - [SMALL_STATE(2200)] = 69775, - [SMALL_STATE(2201)] = 69783, - [SMALL_STATE(2202)] = 69791, - [SMALL_STATE(2203)] = 69799, - [SMALL_STATE(2204)] = 69807, - [SMALL_STATE(2205)] = 69815, - [SMALL_STATE(2206)] = 69823, - [SMALL_STATE(2207)] = 69831, - [SMALL_STATE(2208)] = 69839, - [SMALL_STATE(2209)] = 69847, - [SMALL_STATE(2210)] = 69855, - [SMALL_STATE(2211)] = 69863, - [SMALL_STATE(2212)] = 69871, - [SMALL_STATE(2213)] = 69879, - [SMALL_STATE(2214)] = 69887, - [SMALL_STATE(2215)] = 69895, - [SMALL_STATE(2216)] = 69903, - [SMALL_STATE(2217)] = 69911, - [SMALL_STATE(2218)] = 69919, - [SMALL_STATE(2219)] = 69927, - [SMALL_STATE(2220)] = 69935, - [SMALL_STATE(2221)] = 69943, - [SMALL_STATE(2222)] = 69951, - [SMALL_STATE(2223)] = 69959, - [SMALL_STATE(2224)] = 69967, - [SMALL_STATE(2225)] = 69975, - [SMALL_STATE(2226)] = 69983, - [SMALL_STATE(2227)] = 69991, - [SMALL_STATE(2228)] = 69999, - [SMALL_STATE(2229)] = 70007, - [SMALL_STATE(2230)] = 70015, - [SMALL_STATE(2231)] = 70023, - [SMALL_STATE(2232)] = 70031, - [SMALL_STATE(2233)] = 70039, - [SMALL_STATE(2234)] = 70047, - [SMALL_STATE(2235)] = 70055, - [SMALL_STATE(2236)] = 70063, - [SMALL_STATE(2237)] = 70071, - [SMALL_STATE(2238)] = 70079, - [SMALL_STATE(2239)] = 70087, - [SMALL_STATE(2240)] = 70095, - [SMALL_STATE(2241)] = 70103, - [SMALL_STATE(2242)] = 70111, - [SMALL_STATE(2243)] = 70119, - [SMALL_STATE(2244)] = 70127, - [SMALL_STATE(2245)] = 70135, - [SMALL_STATE(2246)] = 70143, - [SMALL_STATE(2247)] = 70151, - [SMALL_STATE(2248)] = 70159, - [SMALL_STATE(2249)] = 70167, - [SMALL_STATE(2250)] = 70175, - [SMALL_STATE(2251)] = 70183, - [SMALL_STATE(2252)] = 70191, - [SMALL_STATE(2253)] = 70199, - [SMALL_STATE(2254)] = 70207, - [SMALL_STATE(2255)] = 70215, - [SMALL_STATE(2256)] = 70223, - [SMALL_STATE(2257)] = 70231, - [SMALL_STATE(2258)] = 70239, - [SMALL_STATE(2259)] = 70247, - [SMALL_STATE(2260)] = 70255, - [SMALL_STATE(2261)] = 70263, - [SMALL_STATE(2262)] = 70271, - [SMALL_STATE(2263)] = 70279, - [SMALL_STATE(2264)] = 70287, - [SMALL_STATE(2265)] = 70295, - [SMALL_STATE(2266)] = 70303, - [SMALL_STATE(2267)] = 70311, - [SMALL_STATE(2268)] = 70319, - [SMALL_STATE(2269)] = 70327, - [SMALL_STATE(2270)] = 70335, - [SMALL_STATE(2271)] = 70343, - [SMALL_STATE(2272)] = 70351, - [SMALL_STATE(2273)] = 70359, - [SMALL_STATE(2274)] = 70367, - [SMALL_STATE(2275)] = 70375, - [SMALL_STATE(2276)] = 70383, - [SMALL_STATE(2277)] = 70391, - [SMALL_STATE(2278)] = 70399, - [SMALL_STATE(2279)] = 70407, - [SMALL_STATE(2280)] = 70415, - [SMALL_STATE(2281)] = 70423, - [SMALL_STATE(2282)] = 70431, - [SMALL_STATE(2283)] = 70439, - [SMALL_STATE(2284)] = 70447, - [SMALL_STATE(2285)] = 70455, - [SMALL_STATE(2286)] = 70463, - [SMALL_STATE(2287)] = 70471, - [SMALL_STATE(2288)] = 70479, - [SMALL_STATE(2289)] = 70487, - [SMALL_STATE(2290)] = 70495, - [SMALL_STATE(2291)] = 70503, - [SMALL_STATE(2292)] = 70511, - [SMALL_STATE(2293)] = 70519, - [SMALL_STATE(2294)] = 70527, - [SMALL_STATE(2295)] = 70535, - [SMALL_STATE(2296)] = 70543, - [SMALL_STATE(2297)] = 70551, - [SMALL_STATE(2298)] = 70559, - [SMALL_STATE(2299)] = 70567, - [SMALL_STATE(2300)] = 70575, - [SMALL_STATE(2301)] = 70583, - [SMALL_STATE(2302)] = 70591, - [SMALL_STATE(2303)] = 70599, - [SMALL_STATE(2304)] = 70607, - [SMALL_STATE(2305)] = 70615, - [SMALL_STATE(2306)] = 70623, - [SMALL_STATE(2307)] = 70631, - [SMALL_STATE(2308)] = 70639, - [SMALL_STATE(2309)] = 70647, - [SMALL_STATE(2310)] = 70655, - [SMALL_STATE(2311)] = 70663, - [SMALL_STATE(2312)] = 70671, - [SMALL_STATE(2313)] = 70679, - [SMALL_STATE(2314)] = 70687, - [SMALL_STATE(2315)] = 70695, - [SMALL_STATE(2316)] = 70703, - [SMALL_STATE(2317)] = 70711, - [SMALL_STATE(2318)] = 70719, - [SMALL_STATE(2319)] = 70727, - [SMALL_STATE(2320)] = 70735, - [SMALL_STATE(2321)] = 70743, - [SMALL_STATE(2322)] = 70751, - [SMALL_STATE(2323)] = 70759, - [SMALL_STATE(2324)] = 70767, - [SMALL_STATE(2325)] = 70775, - [SMALL_STATE(2326)] = 70783, - [SMALL_STATE(2327)] = 70791, - [SMALL_STATE(2328)] = 70799, - [SMALL_STATE(2329)] = 70807, - [SMALL_STATE(2330)] = 70815, - [SMALL_STATE(2331)] = 70823, - [SMALL_STATE(2332)] = 70831, - [SMALL_STATE(2333)] = 70839, - [SMALL_STATE(2334)] = 70847, - [SMALL_STATE(2335)] = 70855, - [SMALL_STATE(2336)] = 70863, - [SMALL_STATE(2337)] = 70871, - [SMALL_STATE(2338)] = 70879, - [SMALL_STATE(2339)] = 70887, - [SMALL_STATE(2340)] = 70895, - [SMALL_STATE(2341)] = 70903, - [SMALL_STATE(2342)] = 70911, - [SMALL_STATE(2343)] = 70919, - [SMALL_STATE(2344)] = 70927, - [SMALL_STATE(2345)] = 70935, - [SMALL_STATE(2346)] = 70943, - [SMALL_STATE(2347)] = 70951, - [SMALL_STATE(2348)] = 70959, - [SMALL_STATE(2349)] = 70967, - [SMALL_STATE(2350)] = 70975, - [SMALL_STATE(2351)] = 70983, - [SMALL_STATE(2352)] = 70991, - [SMALL_STATE(2353)] = 70999, - [SMALL_STATE(2354)] = 71007, - [SMALL_STATE(2355)] = 71015, - [SMALL_STATE(2356)] = 71023, - [SMALL_STATE(2357)] = 71031, - [SMALL_STATE(2358)] = 71039, - [SMALL_STATE(2359)] = 71047, - [SMALL_STATE(2360)] = 71055, - [SMALL_STATE(2361)] = 71063, - [SMALL_STATE(2362)] = 71071, - [SMALL_STATE(2363)] = 71079, - [SMALL_STATE(2364)] = 71087, - [SMALL_STATE(2365)] = 71095, - [SMALL_STATE(2366)] = 71103, - [SMALL_STATE(2367)] = 71111, - [SMALL_STATE(2368)] = 71119, - [SMALL_STATE(2369)] = 71127, - [SMALL_STATE(2370)] = 71135, - [SMALL_STATE(2371)] = 71143, - [SMALL_STATE(2372)] = 71151, - [SMALL_STATE(2373)] = 71159, - [SMALL_STATE(2374)] = 71167, - [SMALL_STATE(2375)] = 71175, - [SMALL_STATE(2376)] = 71183, - [SMALL_STATE(2377)] = 71191, - [SMALL_STATE(2378)] = 71199, - [SMALL_STATE(2379)] = 71207, - [SMALL_STATE(2380)] = 71215, - [SMALL_STATE(2381)] = 71223, - [SMALL_STATE(2382)] = 71231, - [SMALL_STATE(2383)] = 71239, - [SMALL_STATE(2384)] = 71247, - [SMALL_STATE(2385)] = 71255, - [SMALL_STATE(2386)] = 71263, - [SMALL_STATE(2387)] = 71271, - [SMALL_STATE(2388)] = 71279, - [SMALL_STATE(2389)] = 71287, - [SMALL_STATE(2390)] = 71295, - [SMALL_STATE(2391)] = 71303, - [SMALL_STATE(2392)] = 71311, - [SMALL_STATE(2393)] = 71319, - [SMALL_STATE(2394)] = 71327, - [SMALL_STATE(2395)] = 71335, - [SMALL_STATE(2396)] = 71343, - [SMALL_STATE(2397)] = 71351, - [SMALL_STATE(2398)] = 71359, - [SMALL_STATE(2399)] = 71367, - [SMALL_STATE(2400)] = 71375, - [SMALL_STATE(2401)] = 71383, - [SMALL_STATE(2402)] = 71391, - [SMALL_STATE(2403)] = 71399, - [SMALL_STATE(2404)] = 71407, - [SMALL_STATE(2405)] = 71415, - [SMALL_STATE(2406)] = 71423, - [SMALL_STATE(2407)] = 71431, - [SMALL_STATE(2408)] = 71439, - [SMALL_STATE(2409)] = 71447, - [SMALL_STATE(2410)] = 71455, - [SMALL_STATE(2411)] = 71463, - [SMALL_STATE(2412)] = 71471, + [SMALL_STATE(537)] = 0, + [SMALL_STATE(538)] = 125, + [SMALL_STATE(539)] = 244, + [SMALL_STATE(540)] = 369, + [SMALL_STATE(541)] = 488, + [SMALL_STATE(542)] = 613, + [SMALL_STATE(543)] = 738, + [SMALL_STATE(544)] = 863, + [SMALL_STATE(545)] = 982, + [SMALL_STATE(546)] = 1107, + [SMALL_STATE(547)] = 1226, + [SMALL_STATE(548)] = 1345, + [SMALL_STATE(549)] = 1470, + [SMALL_STATE(550)] = 1595, + [SMALL_STATE(551)] = 1720, + [SMALL_STATE(552)] = 1845, + [SMALL_STATE(553)] = 1970, + [SMALL_STATE(554)] = 2089, + [SMALL_STATE(555)] = 2214, + [SMALL_STATE(556)] = 2339, + [SMALL_STATE(557)] = 2464, + [SMALL_STATE(558)] = 2586, + [SMALL_STATE(559)] = 2708, + [SMALL_STATE(560)] = 2830, + [SMALL_STATE(561)] = 2952, + [SMALL_STATE(562)] = 3068, + [SMALL_STATE(563)] = 3190, + [SMALL_STATE(564)] = 3312, + [SMALL_STATE(565)] = 3434, + [SMALL_STATE(566)] = 3556, + [SMALL_STATE(567)] = 3678, + [SMALL_STATE(568)] = 3794, + [SMALL_STATE(569)] = 3910, + [SMALL_STATE(570)] = 4026, + [SMALL_STATE(571)] = 4148, + [SMALL_STATE(572)] = 4270, + [SMALL_STATE(573)] = 4392, + [SMALL_STATE(574)] = 4514, + [SMALL_STATE(575)] = 4636, + [SMALL_STATE(576)] = 4758, + [SMALL_STATE(577)] = 4874, + [SMALL_STATE(578)] = 4990, + [SMALL_STATE(579)] = 5112, + [SMALL_STATE(580)] = 5234, + [SMALL_STATE(581)] = 5356, + [SMALL_STATE(582)] = 5472, + [SMALL_STATE(583)] = 5588, + [SMALL_STATE(584)] = 5710, + [SMALL_STATE(585)] = 5832, + [SMALL_STATE(586)] = 5954, + [SMALL_STATE(587)] = 6076, + [SMALL_STATE(588)] = 6146, + [SMALL_STATE(589)] = 6268, + [SMALL_STATE(590)] = 6390, + [SMALL_STATE(591)] = 6512, + [SMALL_STATE(592)] = 6634, + [SMALL_STATE(593)] = 6750, + [SMALL_STATE(594)] = 6872, + [SMALL_STATE(595)] = 6994, + [SMALL_STATE(596)] = 7116, + [SMALL_STATE(597)] = 7238, + [SMALL_STATE(598)] = 7360, + [SMALL_STATE(599)] = 7482, + [SMALL_STATE(600)] = 7604, + [SMALL_STATE(601)] = 7726, + [SMALL_STATE(602)] = 7848, + [SMALL_STATE(603)] = 7970, + [SMALL_STATE(604)] = 8086, + [SMALL_STATE(605)] = 8208, + [SMALL_STATE(606)] = 8330, + [SMALL_STATE(607)] = 8452, + [SMALL_STATE(608)] = 8568, + [SMALL_STATE(609)] = 8690, + [SMALL_STATE(610)] = 8812, + [SMALL_STATE(611)] = 8928, + [SMALL_STATE(612)] = 9050, + [SMALL_STATE(613)] = 9172, + [SMALL_STATE(614)] = 9294, + [SMALL_STATE(615)] = 9416, + [SMALL_STATE(616)] = 9540, + [SMALL_STATE(617)] = 9662, + [SMALL_STATE(618)] = 9784, + [SMALL_STATE(619)] = 9906, + [SMALL_STATE(620)] = 10028, + [SMALL_STATE(621)] = 10150, + [SMALL_STATE(622)] = 10272, + [SMALL_STATE(623)] = 10394, + [SMALL_STATE(624)] = 10516, + [SMALL_STATE(625)] = 10638, + [SMALL_STATE(626)] = 10760, + [SMALL_STATE(627)] = 10882, + [SMALL_STATE(628)] = 11004, + [SMALL_STATE(629)] = 11120, + [SMALL_STATE(630)] = 11242, + [SMALL_STATE(631)] = 11364, + [SMALL_STATE(632)] = 11480, + [SMALL_STATE(633)] = 11602, + [SMALL_STATE(634)] = 11724, + [SMALL_STATE(635)] = 11840, + [SMALL_STATE(636)] = 11962, + [SMALL_STATE(637)] = 12084, + [SMALL_STATE(638)] = 12206, + [SMALL_STATE(639)] = 12328, + [SMALL_STATE(640)] = 12450, + [SMALL_STATE(641)] = 12566, + [SMALL_STATE(642)] = 12688, + [SMALL_STATE(643)] = 12810, + [SMALL_STATE(644)] = 12932, + [SMALL_STATE(645)] = 13054, + [SMALL_STATE(646)] = 13176, + [SMALL_STATE(647)] = 13298, + [SMALL_STATE(648)] = 13420, + [SMALL_STATE(649)] = 13542, + [SMALL_STATE(650)] = 13664, + [SMALL_STATE(651)] = 13786, + [SMALL_STATE(652)] = 13908, + [SMALL_STATE(653)] = 14030, + [SMALL_STATE(654)] = 14146, + [SMALL_STATE(655)] = 14268, + [SMALL_STATE(656)] = 14390, + [SMALL_STATE(657)] = 14512, + [SMALL_STATE(658)] = 14634, + [SMALL_STATE(659)] = 14750, + [SMALL_STATE(660)] = 14872, + [SMALL_STATE(661)] = 14988, + [SMALL_STATE(662)] = 15104, + [SMALL_STATE(663)] = 15220, + [SMALL_STATE(664)] = 15342, + [SMALL_STATE(665)] = 15464, + [SMALL_STATE(666)] = 15586, + [SMALL_STATE(667)] = 15702, + [SMALL_STATE(668)] = 15818, + [SMALL_STATE(669)] = 15940, + [SMALL_STATE(670)] = 16056, + [SMALL_STATE(671)] = 16172, + [SMALL_STATE(672)] = 16288, + [SMALL_STATE(673)] = 16404, + [SMALL_STATE(674)] = 16526, + [SMALL_STATE(675)] = 16648, + [SMALL_STATE(676)] = 16770, + [SMALL_STATE(677)] = 16892, + [SMALL_STATE(678)] = 17008, + [SMALL_STATE(679)] = 17130, + [SMALL_STATE(680)] = 17252, + [SMALL_STATE(681)] = 17374, + [SMALL_STATE(682)] = 17496, + [SMALL_STATE(683)] = 17618, + [SMALL_STATE(684)] = 17740, + [SMALL_STATE(685)] = 17862, + [SMALL_STATE(686)] = 17978, + [SMALL_STATE(687)] = 18100, + [SMALL_STATE(688)] = 18222, + [SMALL_STATE(689)] = 18344, + [SMALL_STATE(690)] = 18460, + [SMALL_STATE(691)] = 18582, + [SMALL_STATE(692)] = 18704, + [SMALL_STATE(693)] = 18826, + [SMALL_STATE(694)] = 18948, + [SMALL_STATE(695)] = 19064, + [SMALL_STATE(696)] = 19180, + [SMALL_STATE(697)] = 19296, + [SMALL_STATE(698)] = 19412, + [SMALL_STATE(699)] = 19534, + [SMALL_STATE(700)] = 19650, + [SMALL_STATE(701)] = 19772, + [SMALL_STATE(702)] = 19888, + [SMALL_STATE(703)] = 19952, + [SMALL_STATE(704)] = 20016, + [SMALL_STATE(705)] = 20080, + [SMALL_STATE(706)] = 20144, + [SMALL_STATE(707)] = 20207, + [SMALL_STATE(708)] = 20277, + [SMALL_STATE(709)] = 20334, + [SMALL_STATE(710)] = 20401, + [SMALL_STATE(711)] = 20468, + [SMALL_STATE(712)] = 20532, + [SMALL_STATE(713)] = 20596, + [SMALL_STATE(714)] = 20656, + [SMALL_STATE(715)] = 20712, + [SMALL_STATE(716)] = 20768, + [SMALL_STATE(717)] = 20824, + [SMALL_STATE(718)] = 20880, + [SMALL_STATE(719)] = 20936, + [SMALL_STATE(720)] = 21000, + [SMALL_STATE(721)] = 21060, + [SMALL_STATE(722)] = 21116, + [SMALL_STATE(723)] = 21180, + [SMALL_STATE(724)] = 21236, + [SMALL_STATE(725)] = 21296, + [SMALL_STATE(726)] = 21356, + [SMALL_STATE(727)] = 21412, + [SMALL_STATE(728)] = 21469, + [SMALL_STATE(729)] = 21526, + [SMALL_STATE(730)] = 21585, + [SMALL_STATE(731)] = 21640, + [SMALL_STATE(732)] = 21697, + [SMALL_STATE(733)] = 21754, + [SMALL_STATE(734)] = 21809, + [SMALL_STATE(735)] = 21864, + [SMALL_STATE(736)] = 21923, + [SMALL_STATE(737)] = 21982, + [SMALL_STATE(738)] = 22036, + [SMALL_STATE(739)] = 22092, + [SMALL_STATE(740)] = 22146, + [SMALL_STATE(741)] = 22200, + [SMALL_STATE(742)] = 22254, + [SMALL_STATE(743)] = 22308, + [SMALL_STATE(744)] = 22362, + [SMALL_STATE(745)] = 22416, + [SMALL_STATE(746)] = 22470, + [SMALL_STATE(747)] = 22524, + [SMALL_STATE(748)] = 22578, + [SMALL_STATE(749)] = 22632, + [SMALL_STATE(750)] = 22686, + [SMALL_STATE(751)] = 22740, + [SMALL_STATE(752)] = 22794, + [SMALL_STATE(753)] = 22848, + [SMALL_STATE(754)] = 22902, + [SMALL_STATE(755)] = 22956, + [SMALL_STATE(756)] = 23010, + [SMALL_STATE(757)] = 23064, + [SMALL_STATE(758)] = 23118, + [SMALL_STATE(759)] = 23172, + [SMALL_STATE(760)] = 23226, + [SMALL_STATE(761)] = 23280, + [SMALL_STATE(762)] = 23334, + [SMALL_STATE(763)] = 23388, + [SMALL_STATE(764)] = 23442, + [SMALL_STATE(765)] = 23496, + [SMALL_STATE(766)] = 23550, + [SMALL_STATE(767)] = 23604, + [SMALL_STATE(768)] = 23658, + [SMALL_STATE(769)] = 23712, + [SMALL_STATE(770)] = 23766, + [SMALL_STATE(771)] = 23820, + [SMALL_STATE(772)] = 23874, + [SMALL_STATE(773)] = 23928, + [SMALL_STATE(774)] = 23982, + [SMALL_STATE(775)] = 24036, + [SMALL_STATE(776)] = 24090, + [SMALL_STATE(777)] = 24144, + [SMALL_STATE(778)] = 24198, + [SMALL_STATE(779)] = 24252, + [SMALL_STATE(780)] = 24306, + [SMALL_STATE(781)] = 24360, + [SMALL_STATE(782)] = 24414, + [SMALL_STATE(783)] = 24468, + [SMALL_STATE(784)] = 24522, + [SMALL_STATE(785)] = 24576, + [SMALL_STATE(786)] = 24630, + [SMALL_STATE(787)] = 24686, + [SMALL_STATE(788)] = 24740, + [SMALL_STATE(789)] = 24794, + [SMALL_STATE(790)] = 24848, + [SMALL_STATE(791)] = 24902, + [SMALL_STATE(792)] = 24956, + [SMALL_STATE(793)] = 25010, + [SMALL_STATE(794)] = 25064, + [SMALL_STATE(795)] = 25118, + [SMALL_STATE(796)] = 25172, + [SMALL_STATE(797)] = 25226, + [SMALL_STATE(798)] = 25280, + [SMALL_STATE(799)] = 25334, + [SMALL_STATE(800)] = 25388, + [SMALL_STATE(801)] = 25442, + [SMALL_STATE(802)] = 25496, + [SMALL_STATE(803)] = 25550, + [SMALL_STATE(804)] = 25604, + [SMALL_STATE(805)] = 25658, + [SMALL_STATE(806)] = 25712, + [SMALL_STATE(807)] = 25766, + [SMALL_STATE(808)] = 25820, + [SMALL_STATE(809)] = 25874, + [SMALL_STATE(810)] = 25928, + [SMALL_STATE(811)] = 25982, + [SMALL_STATE(812)] = 26036, + [SMALL_STATE(813)] = 26090, + [SMALL_STATE(814)] = 26144, + [SMALL_STATE(815)] = 26198, + [SMALL_STATE(816)] = 26252, + [SMALL_STATE(817)] = 26306, + [SMALL_STATE(818)] = 26360, + [SMALL_STATE(819)] = 26414, + [SMALL_STATE(820)] = 26468, + [SMALL_STATE(821)] = 26522, + [SMALL_STATE(822)] = 26576, + [SMALL_STATE(823)] = 26630, + [SMALL_STATE(824)] = 26684, + [SMALL_STATE(825)] = 26746, + [SMALL_STATE(826)] = 26800, + [SMALL_STATE(827)] = 26854, + [SMALL_STATE(828)] = 26908, + [SMALL_STATE(829)] = 26962, + [SMALL_STATE(830)] = 27016, + [SMALL_STATE(831)] = 27070, + [SMALL_STATE(832)] = 27124, + [SMALL_STATE(833)] = 27178, + [SMALL_STATE(834)] = 27232, + [SMALL_STATE(835)] = 27286, + [SMALL_STATE(836)] = 27340, + [SMALL_STATE(837)] = 27394, + [SMALL_STATE(838)] = 27448, + [SMALL_STATE(839)] = 27502, + [SMALL_STATE(840)] = 27556, + [SMALL_STATE(841)] = 27610, + [SMALL_STATE(842)] = 27664, + [SMALL_STATE(843)] = 27718, + [SMALL_STATE(844)] = 27772, + [SMALL_STATE(845)] = 27828, + [SMALL_STATE(846)] = 27882, + [SMALL_STATE(847)] = 27938, + [SMALL_STATE(848)] = 27992, + [SMALL_STATE(849)] = 28046, + [SMALL_STATE(850)] = 28100, + [SMALL_STATE(851)] = 28154, + [SMALL_STATE(852)] = 28210, + [SMALL_STATE(853)] = 28264, + [SMALL_STATE(854)] = 28320, + [SMALL_STATE(855)] = 28374, + [SMALL_STATE(856)] = 28428, + [SMALL_STATE(857)] = 28482, + [SMALL_STATE(858)] = 28536, + [SMALL_STATE(859)] = 28590, + [SMALL_STATE(860)] = 28644, + [SMALL_STATE(861)] = 28698, + [SMALL_STATE(862)] = 28752, + [SMALL_STATE(863)] = 28806, + [SMALL_STATE(864)] = 28860, + [SMALL_STATE(865)] = 28914, + [SMALL_STATE(866)] = 28968, + [SMALL_STATE(867)] = 29022, + [SMALL_STATE(868)] = 29076, + [SMALL_STATE(869)] = 29130, + [SMALL_STATE(870)] = 29184, + [SMALL_STATE(871)] = 29238, + [SMALL_STATE(872)] = 29292, + [SMALL_STATE(873)] = 29354, + [SMALL_STATE(874)] = 29408, + [SMALL_STATE(875)] = 29462, + [SMALL_STATE(876)] = 29516, + [SMALL_STATE(877)] = 29570, + [SMALL_STATE(878)] = 29624, + [SMALL_STATE(879)] = 29678, + [SMALL_STATE(880)] = 29732, + [SMALL_STATE(881)] = 29788, + [SMALL_STATE(882)] = 29842, + [SMALL_STATE(883)] = 29896, + [SMALL_STATE(884)] = 29950, + [SMALL_STATE(885)] = 30006, + [SMALL_STATE(886)] = 30060, + [SMALL_STATE(887)] = 30114, + [SMALL_STATE(888)] = 30168, + [SMALL_STATE(889)] = 30222, + [SMALL_STATE(890)] = 30278, + [SMALL_STATE(891)] = 30332, + [SMALL_STATE(892)] = 30386, + [SMALL_STATE(893)] = 30440, + [SMALL_STATE(894)] = 30494, + [SMALL_STATE(895)] = 30548, + [SMALL_STATE(896)] = 30602, + [SMALL_STATE(897)] = 30656, + [SMALL_STATE(898)] = 30712, + [SMALL_STATE(899)] = 30766, + [SMALL_STATE(900)] = 30820, + [SMALL_STATE(901)] = 30874, + [SMALL_STATE(902)] = 30928, + [SMALL_STATE(903)] = 30984, + [SMALL_STATE(904)] = 31038, + [SMALL_STATE(905)] = 31092, + [SMALL_STATE(906)] = 31154, + [SMALL_STATE(907)] = 31208, + [SMALL_STATE(908)] = 31262, + [SMALL_STATE(909)] = 31316, + [SMALL_STATE(910)] = 31370, + [SMALL_STATE(911)] = 31424, + [SMALL_STATE(912)] = 31478, + [SMALL_STATE(913)] = 31532, + [SMALL_STATE(914)] = 31586, + [SMALL_STATE(915)] = 31640, + [SMALL_STATE(916)] = 31694, + [SMALL_STATE(917)] = 31748, + [SMALL_STATE(918)] = 31802, + [SMALL_STATE(919)] = 31856, + [SMALL_STATE(920)] = 31910, + [SMALL_STATE(921)] = 31964, + [SMALL_STATE(922)] = 32018, + [SMALL_STATE(923)] = 32072, + [SMALL_STATE(924)] = 32126, + [SMALL_STATE(925)] = 32180, + [SMALL_STATE(926)] = 32234, + [SMALL_STATE(927)] = 32288, + [SMALL_STATE(928)] = 32342, + [SMALL_STATE(929)] = 32396, + [SMALL_STATE(930)] = 32452, + [SMALL_STATE(931)] = 32506, + [SMALL_STATE(932)] = 32560, + [SMALL_STATE(933)] = 32616, + [SMALL_STATE(934)] = 32670, + [SMALL_STATE(935)] = 32724, + [SMALL_STATE(936)] = 32778, + [SMALL_STATE(937)] = 32832, + [SMALL_STATE(938)] = 32886, + [SMALL_STATE(939)] = 32940, + [SMALL_STATE(940)] = 32996, + [SMALL_STATE(941)] = 33058, + [SMALL_STATE(942)] = 33112, + [SMALL_STATE(943)] = 33166, + [SMALL_STATE(944)] = 33220, + [SMALL_STATE(945)] = 33274, + [SMALL_STATE(946)] = 33328, + [SMALL_STATE(947)] = 33382, + [SMALL_STATE(948)] = 33438, + [SMALL_STATE(949)] = 33496, + [SMALL_STATE(950)] = 33550, + [SMALL_STATE(951)] = 33606, + [SMALL_STATE(952)] = 33660, + [SMALL_STATE(953)] = 33714, + [SMALL_STATE(954)] = 33768, + [SMALL_STATE(955)] = 33822, + [SMALL_STATE(956)] = 33876, + [SMALL_STATE(957)] = 33930, + [SMALL_STATE(958)] = 33984, + [SMALL_STATE(959)] = 34038, + [SMALL_STATE(960)] = 34092, + [SMALL_STATE(961)] = 34146, + [SMALL_STATE(962)] = 34200, + [SMALL_STATE(963)] = 34254, + [SMALL_STATE(964)] = 34308, + [SMALL_STATE(965)] = 34361, + [SMALL_STATE(966)] = 34414, + [SMALL_STATE(967)] = 34467, + [SMALL_STATE(968)] = 34520, + [SMALL_STATE(969)] = 34573, + [SMALL_STATE(970)] = 34626, + [SMALL_STATE(971)] = 34679, + [SMALL_STATE(972)] = 34732, + [SMALL_STATE(973)] = 34785, + [SMALL_STATE(974)] = 34838, + [SMALL_STATE(975)] = 34891, + [SMALL_STATE(976)] = 34946, + [SMALL_STATE(977)] = 34999, + [SMALL_STATE(978)] = 35052, + [SMALL_STATE(979)] = 35105, + [SMALL_STATE(980)] = 35158, + [SMALL_STATE(981)] = 35211, + [SMALL_STATE(982)] = 35302, + [SMALL_STATE(983)] = 35355, + [SMALL_STATE(984)] = 35408, + [SMALL_STATE(985)] = 35461, + [SMALL_STATE(986)] = 35514, + [SMALL_STATE(987)] = 35567, + [SMALL_STATE(988)] = 35620, + [SMALL_STATE(989)] = 35673, + [SMALL_STATE(990)] = 35726, + [SMALL_STATE(991)] = 35779, + [SMALL_STATE(992)] = 35832, + [SMALL_STATE(993)] = 35895, + [SMALL_STATE(994)] = 35948, + [SMALL_STATE(995)] = 36001, + [SMALL_STATE(996)] = 36054, + [SMALL_STATE(997)] = 36107, + [SMALL_STATE(998)] = 36160, + [SMALL_STATE(999)] = 36245, + [SMALL_STATE(1000)] = 36298, + [SMALL_STATE(1001)] = 36351, + [SMALL_STATE(1002)] = 36404, + [SMALL_STATE(1003)] = 36457, + [SMALL_STATE(1004)] = 36530, + [SMALL_STATE(1005)] = 36583, + [SMALL_STATE(1006)] = 36636, + [SMALL_STATE(1007)] = 36703, + [SMALL_STATE(1008)] = 36794, + [SMALL_STATE(1009)] = 36847, + [SMALL_STATE(1010)] = 36928, + [SMALL_STATE(1011)] = 37005, + [SMALL_STATE(1012)] = 37084, + [SMALL_STATE(1013)] = 37137, + [SMALL_STATE(1014)] = 37208, + [SMALL_STATE(1015)] = 37277, + [SMALL_STATE(1016)] = 37342, + [SMALL_STATE(1017)] = 37427, + [SMALL_STATE(1018)] = 37480, + [SMALL_STATE(1019)] = 37533, + [SMALL_STATE(1020)] = 37586, + [SMALL_STATE(1021)] = 37639, + [SMALL_STATE(1022)] = 37692, + [SMALL_STATE(1023)] = 37745, + [SMALL_STATE(1024)] = 37826, + [SMALL_STATE(1025)] = 37881, + [SMALL_STATE(1026)] = 37934, + [SMALL_STATE(1027)] = 37987, + [SMALL_STATE(1028)] = 38040, + [SMALL_STATE(1029)] = 38093, + [SMALL_STATE(1030)] = 38146, + [SMALL_STATE(1031)] = 38199, + [SMALL_STATE(1032)] = 38252, + [SMALL_STATE(1033)] = 38305, + [SMALL_STATE(1034)] = 38358, + [SMALL_STATE(1035)] = 38411, + [SMALL_STATE(1036)] = 38464, + [SMALL_STATE(1037)] = 38517, + [SMALL_STATE(1038)] = 38570, + [SMALL_STATE(1039)] = 38623, + [SMALL_STATE(1040)] = 38676, + [SMALL_STATE(1041)] = 38729, + [SMALL_STATE(1042)] = 38782, + [SMALL_STATE(1043)] = 38835, + [SMALL_STATE(1044)] = 38888, + [SMALL_STATE(1045)] = 38941, + [SMALL_STATE(1046)] = 38994, + [SMALL_STATE(1047)] = 39047, + [SMALL_STATE(1048)] = 39100, + [SMALL_STATE(1049)] = 39185, + [SMALL_STATE(1050)] = 39238, + [SMALL_STATE(1051)] = 39291, + [SMALL_STATE(1052)] = 39376, + [SMALL_STATE(1053)] = 39429, + [SMALL_STATE(1054)] = 39482, + [SMALL_STATE(1055)] = 39567, + [SMALL_STATE(1056)] = 39620, + [SMALL_STATE(1057)] = 39673, + [SMALL_STATE(1058)] = 39726, + [SMALL_STATE(1059)] = 39779, + [SMALL_STATE(1060)] = 39832, + [SMALL_STATE(1061)] = 39885, + [SMALL_STATE(1062)] = 39937, + [SMALL_STATE(1063)] = 39989, + [SMALL_STATE(1064)] = 40041, + [SMALL_STATE(1065)] = 40093, + [SMALL_STATE(1066)] = 40149, + [SMALL_STATE(1067)] = 40209, + [SMALL_STATE(1068)] = 40261, + [SMALL_STATE(1069)] = 40313, + [SMALL_STATE(1070)] = 40366, + [SMALL_STATE(1071)] = 40461, + [SMALL_STATE(1072)] = 40546, + [SMALL_STATE(1073)] = 40641, + [SMALL_STATE(1074)] = 40694, + [SMALL_STATE(1075)] = 40779, + [SMALL_STATE(1076)] = 40871, + [SMALL_STATE(1077)] = 40925, + [SMALL_STATE(1078)] = 41017, + [SMALL_STATE(1079)] = 41067, + [SMALL_STATE(1080)] = 41151, + [SMALL_STATE(1081)] = 41207, + [SMALL_STATE(1082)] = 41257, + [SMALL_STATE(1083)] = 41341, + [SMALL_STATE(1084)] = 41425, + [SMALL_STATE(1085)] = 41475, + [SMALL_STATE(1086)] = 41525, + [SMALL_STATE(1087)] = 41609, + [SMALL_STATE(1088)] = 41690, + [SMALL_STATE(1089)] = 41779, + [SMALL_STATE(1090)] = 41866, + [SMALL_STATE(1091)] = 41955, + [SMALL_STATE(1092)] = 42006, + [SMALL_STATE(1093)] = 42095, + [SMALL_STATE(1094)] = 42144, + [SMALL_STATE(1095)] = 42231, + [SMALL_STATE(1096)] = 42318, + [SMALL_STATE(1097)] = 42407, + [SMALL_STATE(1098)] = 42496, + [SMALL_STATE(1099)] = 42585, + [SMALL_STATE(1100)] = 42674, + [SMALL_STATE(1101)] = 42763, + [SMALL_STATE(1102)] = 42850, + [SMALL_STATE(1103)] = 42939, + [SMALL_STATE(1104)] = 43028, + [SMALL_STATE(1105)] = 43115, + [SMALL_STATE(1106)] = 43204, + [SMALL_STATE(1107)] = 43253, + [SMALL_STATE(1108)] = 43342, + [SMALL_STATE(1109)] = 43431, + [SMALL_STATE(1110)] = 43520, + [SMALL_STATE(1111)] = 43609, + [SMALL_STATE(1112)] = 43698, + [SMALL_STATE(1113)] = 43773, + [SMALL_STATE(1114)] = 43862, + [SMALL_STATE(1115)] = 43951, + [SMALL_STATE(1116)] = 44038, + [SMALL_STATE(1117)] = 44127, + [SMALL_STATE(1118)] = 44216, + [SMALL_STATE(1119)] = 44297, + [SMALL_STATE(1120)] = 44386, + [SMALL_STATE(1121)] = 44475, + [SMALL_STATE(1122)] = 44564, + [SMALL_STATE(1123)] = 44653, + [SMALL_STATE(1124)] = 44742, + [SMALL_STATE(1125)] = 44829, + [SMALL_STATE(1126)] = 44916, + [SMALL_STATE(1127)] = 45005, + [SMALL_STATE(1128)] = 45094, + [SMALL_STATE(1129)] = 45183, + [SMALL_STATE(1130)] = 45272, + [SMALL_STATE(1131)] = 45361, + [SMALL_STATE(1132)] = 45450, + [SMALL_STATE(1133)] = 45537, + [SMALL_STATE(1134)] = 45626, + [SMALL_STATE(1135)] = 45715, + [SMALL_STATE(1136)] = 45804, + [SMALL_STATE(1137)] = 45893, + [SMALL_STATE(1138)] = 45980, + [SMALL_STATE(1139)] = 46069, + [SMALL_STATE(1140)] = 46118, + [SMALL_STATE(1141)] = 46207, + [SMALL_STATE(1142)] = 46296, + [SMALL_STATE(1143)] = 46385, + [SMALL_STATE(1144)] = 46474, + [SMALL_STATE(1145)] = 46523, + [SMALL_STATE(1146)] = 46612, + [SMALL_STATE(1147)] = 46665, + [SMALL_STATE(1148)] = 46754, + [SMALL_STATE(1149)] = 46843, + [SMALL_STATE(1150)] = 46929, + [SMALL_STATE(1151)] = 46997, + [SMALL_STATE(1152)] = 47073, + [SMALL_STATE(1153)] = 47121, + [SMALL_STATE(1154)] = 47207, + [SMALL_STATE(1155)] = 47293, + [SMALL_STATE(1156)] = 47379, + [SMALL_STATE(1157)] = 47439, + [SMALL_STATE(1158)] = 47511, + [SMALL_STATE(1159)] = 47583, + [SMALL_STATE(1160)] = 47631, + [SMALL_STATE(1161)] = 47679, + [SMALL_STATE(1162)] = 47741, + [SMALL_STATE(1163)] = 47791, + [SMALL_STATE(1164)] = 47877, + [SMALL_STATE(1165)] = 47951, + [SMALL_STATE(1166)] = 48017, + [SMALL_STATE(1167)] = 48097, + [SMALL_STATE(1168)] = 48147, + [SMALL_STATE(1169)] = 48227, + [SMALL_STATE(1170)] = 48299, + [SMALL_STATE(1171)] = 48385, + [SMALL_STATE(1172)] = 48461, + [SMALL_STATE(1173)] = 48547, + [SMALL_STATE(1174)] = 48595, + [SMALL_STATE(1175)] = 48653, + [SMALL_STATE(1176)] = 48739, + [SMALL_STATE(1177)] = 48811, + [SMALL_STATE(1178)] = 48883, + [SMALL_STATE(1179)] = 48969, + [SMALL_STATE(1180)] = 49033, + [SMALL_STATE(1181)] = 49119, + [SMALL_STATE(1182)] = 49205, + [SMALL_STATE(1183)] = 49291, + [SMALL_STATE(1184)] = 49377, + [SMALL_STATE(1185)] = 49463, + [SMALL_STATE(1186)] = 49549, + [SMALL_STATE(1187)] = 49635, + [SMALL_STATE(1188)] = 49721, + [SMALL_STATE(1189)] = 49807, + [SMALL_STATE(1190)] = 49893, + [SMALL_STATE(1191)] = 49979, + [SMALL_STATE(1192)] = 50029, + [SMALL_STATE(1193)] = 50115, + [SMALL_STATE(1194)] = 50201, + [SMALL_STATE(1195)] = 50287, + [SMALL_STATE(1196)] = 50373, + [SMALL_STATE(1197)] = 50459, + [SMALL_STATE(1198)] = 50545, + [SMALL_STATE(1199)] = 50631, + [SMALL_STATE(1200)] = 50711, + [SMALL_STATE(1201)] = 50797, + [SMALL_STATE(1202)] = 50847, + [SMALL_STATE(1203)] = 50919, + [SMALL_STATE(1204)] = 51005, + [SMALL_STATE(1205)] = 51055, + [SMALL_STATE(1206)] = 51103, + [SMALL_STATE(1207)] = 51189, + [SMALL_STATE(1208)] = 51275, + [SMALL_STATE(1209)] = 51361, + [SMALL_STATE(1210)] = 51411, + [SMALL_STATE(1211)] = 51497, + [SMALL_STATE(1212)] = 51569, + [SMALL_STATE(1213)] = 51655, + [SMALL_STATE(1214)] = 51735, + [SMALL_STATE(1215)] = 51815, + [SMALL_STATE(1216)] = 51884, + [SMALL_STATE(1217)] = 51959, + [SMALL_STATE(1218)] = 52034, + [SMALL_STATE(1219)] = 52103, + [SMALL_STATE(1220)] = 52169, + [SMALL_STATE(1221)] = 52235, + [SMALL_STATE(1222)] = 52298, + [SMALL_STATE(1223)] = 52361, + [SMALL_STATE(1224)] = 52424, + [SMALL_STATE(1225)] = 52487, + [SMALL_STATE(1226)] = 52550, + [SMALL_STATE(1227)] = 52589, + [SMALL_STATE(1228)] = 52628, + [SMALL_STATE(1229)] = 52667, + [SMALL_STATE(1230)] = 52720, + [SMALL_STATE(1231)] = 52773, + [SMALL_STATE(1232)] = 52826, + [SMALL_STATE(1233)] = 52879, + [SMALL_STATE(1234)] = 52932, + [SMALL_STATE(1235)] = 52985, + [SMALL_STATE(1236)] = 53038, + [SMALL_STATE(1237)] = 53088, + [SMALL_STATE(1238)] = 53138, + [SMALL_STATE(1239)] = 53178, + [SMALL_STATE(1240)] = 53207, + [SMALL_STATE(1241)] = 53244, + [SMALL_STATE(1242)] = 53273, + [SMALL_STATE(1243)] = 53302, + [SMALL_STATE(1244)] = 53331, + [SMALL_STATE(1245)] = 53360, + [SMALL_STATE(1246)] = 53389, + [SMALL_STATE(1247)] = 53418, + [SMALL_STATE(1248)] = 53455, + [SMALL_STATE(1249)] = 53484, + [SMALL_STATE(1250)] = 53538, + [SMALL_STATE(1251)] = 53570, + [SMALL_STATE(1252)] = 53624, + [SMALL_STATE(1253)] = 53656, + [SMALL_STATE(1254)] = 53688, + [SMALL_STATE(1255)] = 53711, + [SMALL_STATE(1256)] = 53734, + [SMALL_STATE(1257)] = 53759, + [SMALL_STATE(1258)] = 53782, + [SMALL_STATE(1259)] = 53821, + [SMALL_STATE(1260)] = 53845, + [SMALL_STATE(1261)] = 53867, + [SMALL_STATE(1262)] = 53889, + [SMALL_STATE(1263)] = 53913, + [SMALL_STATE(1264)] = 53935, + [SMALL_STATE(1265)] = 53959, + [SMALL_STATE(1266)] = 53983, + [SMALL_STATE(1267)] = 54005, + [SMALL_STATE(1268)] = 54029, + [SMALL_STATE(1269)] = 54053, + [SMALL_STATE(1270)] = 54077, + [SMALL_STATE(1271)] = 54101, + [SMALL_STATE(1272)] = 54125, + [SMALL_STATE(1273)] = 54149, + [SMALL_STATE(1274)] = 54170, + [SMALL_STATE(1275)] = 54195, + [SMALL_STATE(1276)] = 54218, + [SMALL_STATE(1277)] = 54259, + [SMALL_STATE(1278)] = 54282, + [SMALL_STATE(1279)] = 54305, + [SMALL_STATE(1280)] = 54330, + [SMALL_STATE(1281)] = 54353, + [SMALL_STATE(1282)] = 54374, + [SMALL_STATE(1283)] = 54417, + [SMALL_STATE(1284)] = 54442, + [SMALL_STATE(1285)] = 54463, + [SMALL_STATE(1286)] = 54486, + [SMALL_STATE(1287)] = 54507, + [SMALL_STATE(1288)] = 54530, + [SMALL_STATE(1289)] = 54555, + [SMALL_STATE(1290)] = 54600, + [SMALL_STATE(1291)] = 54625, + [SMALL_STATE(1292)] = 54650, + [SMALL_STATE(1293)] = 54671, + [SMALL_STATE(1294)] = 54694, + [SMALL_STATE(1295)] = 54737, + [SMALL_STATE(1296)] = 54757, + [SMALL_STATE(1297)] = 54777, + [SMALL_STATE(1298)] = 54797, + [SMALL_STATE(1299)] = 54819, + [SMALL_STATE(1300)] = 54839, + [SMALL_STATE(1301)] = 54875, + [SMALL_STATE(1302)] = 54895, + [SMALL_STATE(1303)] = 54915, + [SMALL_STATE(1304)] = 54935, + [SMALL_STATE(1305)] = 54955, + [SMALL_STATE(1306)] = 54975, + [SMALL_STATE(1307)] = 54995, + [SMALL_STATE(1308)] = 55015, + [SMALL_STATE(1309)] = 55035, + [SMALL_STATE(1310)] = 55055, + [SMALL_STATE(1311)] = 55075, + [SMALL_STATE(1312)] = 55095, + [SMALL_STATE(1313)] = 55115, + [SMALL_STATE(1314)] = 55135, + [SMALL_STATE(1315)] = 55155, + [SMALL_STATE(1316)] = 55175, + [SMALL_STATE(1317)] = 55195, + [SMALL_STATE(1318)] = 55215, + [SMALL_STATE(1319)] = 55235, + [SMALL_STATE(1320)] = 55255, + [SMALL_STATE(1321)] = 55275, + [SMALL_STATE(1322)] = 55295, + [SMALL_STATE(1323)] = 55330, + [SMALL_STATE(1324)] = 55353, + [SMALL_STATE(1325)] = 55380, + [SMALL_STATE(1326)] = 55403, + [SMALL_STATE(1327)] = 55423, + [SMALL_STATE(1328)] = 55443, + [SMALL_STATE(1329)] = 55467, + [SMALL_STATE(1330)] = 55491, + [SMALL_STATE(1331)] = 55515, + [SMALL_STATE(1332)] = 55539, + [SMALL_STATE(1333)] = 55559, + [SMALL_STATE(1334)] = 55579, + [SMALL_STATE(1335)] = 55603, + [SMALL_STATE(1336)] = 55627, + [SMALL_STATE(1337)] = 55651, + [SMALL_STATE(1338)] = 55671, + [SMALL_STATE(1339)] = 55695, + [SMALL_STATE(1340)] = 55715, + [SMALL_STATE(1341)] = 55735, + [SMALL_STATE(1342)] = 55755, + [SMALL_STATE(1343)] = 55777, + [SMALL_STATE(1344)] = 55797, + [SMALL_STATE(1345)] = 55817, + [SMALL_STATE(1346)] = 55839, + [SMALL_STATE(1347)] = 55863, + [SMALL_STATE(1348)] = 55885, + [SMALL_STATE(1349)] = 55907, + [SMALL_STATE(1350)] = 55927, + [SMALL_STATE(1351)] = 55951, + [SMALL_STATE(1352)] = 55971, + [SMALL_STATE(1353)] = 55991, + [SMALL_STATE(1354)] = 56011, + [SMALL_STATE(1355)] = 56031, + [SMALL_STATE(1356)] = 56055, + [SMALL_STATE(1357)] = 56079, + [SMALL_STATE(1358)] = 56099, + [SMALL_STATE(1359)] = 56119, + [SMALL_STATE(1360)] = 56139, + [SMALL_STATE(1361)] = 56159, + [SMALL_STATE(1362)] = 56179, + [SMALL_STATE(1363)] = 56203, + [SMALL_STATE(1364)] = 56223, + [SMALL_STATE(1365)] = 56243, + [SMALL_STATE(1366)] = 56263, + [SMALL_STATE(1367)] = 56283, + [SMALL_STATE(1368)] = 56303, + [SMALL_STATE(1369)] = 56323, + [SMALL_STATE(1370)] = 56343, + [SMALL_STATE(1371)] = 56363, + [SMALL_STATE(1372)] = 56383, + [SMALL_STATE(1373)] = 56414, + [SMALL_STATE(1374)] = 56445, + [SMALL_STATE(1375)] = 56476, + [SMALL_STATE(1376)] = 56509, + [SMALL_STATE(1377)] = 56540, + [SMALL_STATE(1378)] = 56571, + [SMALL_STATE(1379)] = 56604, + [SMALL_STATE(1380)] = 56635, + [SMALL_STATE(1381)] = 56666, + [SMALL_STATE(1382)] = 56695, + [SMALL_STATE(1383)] = 56726, + [SMALL_STATE(1384)] = 56759, + [SMALL_STATE(1385)] = 56778, + [SMALL_STATE(1386)] = 56809, + [SMALL_STATE(1387)] = 56842, + [SMALL_STATE(1388)] = 56865, + [SMALL_STATE(1389)] = 56888, + [SMALL_STATE(1390)] = 56915, + [SMALL_STATE(1391)] = 56940, + [SMALL_STATE(1392)] = 56970, + [SMALL_STATE(1393)] = 57000, + [SMALL_STATE(1394)] = 57022, + [SMALL_STATE(1395)] = 57052, + [SMALL_STATE(1396)] = 57082, + [SMALL_STATE(1397)] = 57104, + [SMALL_STATE(1398)] = 57126, + [SMALL_STATE(1399)] = 57158, + [SMALL_STATE(1400)] = 57188, + [SMALL_STATE(1401)] = 57218, + [SMALL_STATE(1402)] = 57242, + [SMALL_STATE(1403)] = 57262, + [SMALL_STATE(1404)] = 57292, + [SMALL_STATE(1405)] = 57312, + [SMALL_STATE(1406)] = 57344, + [SMALL_STATE(1407)] = 57374, + [SMALL_STATE(1408)] = 57396, + [SMALL_STATE(1409)] = 57422, + [SMALL_STATE(1410)] = 57452, + [SMALL_STATE(1411)] = 57472, + [SMALL_STATE(1412)] = 57502, + [SMALL_STATE(1413)] = 57534, + [SMALL_STATE(1414)] = 57564, + [SMALL_STATE(1415)] = 57594, + [SMALL_STATE(1416)] = 57624, + [SMALL_STATE(1417)] = 57654, + [SMALL_STATE(1418)] = 57684, + [SMALL_STATE(1419)] = 57714, + [SMALL_STATE(1420)] = 57740, + [SMALL_STATE(1421)] = 57770, + [SMALL_STATE(1422)] = 57800, + [SMALL_STATE(1423)] = 57830, + [SMALL_STATE(1424)] = 57862, + [SMALL_STATE(1425)] = 57884, + [SMALL_STATE(1426)] = 57914, + [SMALL_STATE(1427)] = 57934, + [SMALL_STATE(1428)] = 57954, + [SMALL_STATE(1429)] = 57974, + [SMALL_STATE(1430)] = 58004, + [SMALL_STATE(1431)] = 58031, + [SMALL_STATE(1432)] = 58058, + [SMALL_STATE(1433)] = 58077, + [SMALL_STATE(1434)] = 58096, + [SMALL_STATE(1435)] = 58121, + [SMALL_STATE(1436)] = 58150, + [SMALL_STATE(1437)] = 58165, + [SMALL_STATE(1438)] = 58180, + [SMALL_STATE(1439)] = 58207, + [SMALL_STATE(1440)] = 58230, + [SMALL_STATE(1441)] = 58255, + [SMALL_STATE(1442)] = 58280, + [SMALL_STATE(1443)] = 58301, + [SMALL_STATE(1444)] = 58328, + [SMALL_STATE(1445)] = 58353, + [SMALL_STATE(1446)] = 58380, + [SMALL_STATE(1447)] = 58407, + [SMALL_STATE(1448)] = 58428, + [SMALL_STATE(1449)] = 58455, + [SMALL_STATE(1450)] = 58480, + [SMALL_STATE(1451)] = 58507, + [SMALL_STATE(1452)] = 58536, + [SMALL_STATE(1453)] = 58565, + [SMALL_STATE(1454)] = 58584, + [SMALL_STATE(1455)] = 58613, + [SMALL_STATE(1456)] = 58640, + [SMALL_STATE(1457)] = 58667, + [SMALL_STATE(1458)] = 58690, + [SMALL_STATE(1459)] = 58719, + [SMALL_STATE(1460)] = 58740, + [SMALL_STATE(1461)] = 58767, + [SMALL_STATE(1462)] = 58792, + [SMALL_STATE(1463)] = 58819, + [SMALL_STATE(1464)] = 58838, + [SMALL_STATE(1465)] = 58857, + [SMALL_STATE(1466)] = 58876, + [SMALL_STATE(1467)] = 58903, + [SMALL_STATE(1468)] = 58928, + [SMALL_STATE(1469)] = 58947, + [SMALL_STATE(1470)] = 58976, + [SMALL_STATE(1471)] = 59001, + [SMALL_STATE(1472)] = 59028, + [SMALL_STATE(1473)] = 59055, + [SMALL_STATE(1474)] = 59080, + [SMALL_STATE(1475)] = 59100, + [SMALL_STATE(1476)] = 59116, + [SMALL_STATE(1477)] = 59138, + [SMALL_STATE(1478)] = 59160, + [SMALL_STATE(1479)] = 59182, + [SMALL_STATE(1480)] = 59204, + [SMALL_STATE(1481)] = 59220, + [SMALL_STATE(1482)] = 59234, + [SMALL_STATE(1483)] = 59256, + [SMALL_STATE(1484)] = 59272, + [SMALL_STATE(1485)] = 59286, + [SMALL_STATE(1486)] = 59312, + [SMALL_STATE(1487)] = 59326, + [SMALL_STATE(1488)] = 59342, + [SMALL_STATE(1489)] = 59356, + [SMALL_STATE(1490)] = 59372, + [SMALL_STATE(1491)] = 59398, + [SMALL_STATE(1492)] = 59414, + [SMALL_STATE(1493)] = 59440, + [SMALL_STATE(1494)] = 59462, + [SMALL_STATE(1495)] = 59486, + [SMALL_STATE(1496)] = 59502, + [SMALL_STATE(1497)] = 59526, + [SMALL_STATE(1498)] = 59552, + [SMALL_STATE(1499)] = 59566, + [SMALL_STATE(1500)] = 59592, + [SMALL_STATE(1501)] = 59616, + [SMALL_STATE(1502)] = 59642, + [SMALL_STATE(1503)] = 59664, + [SMALL_STATE(1504)] = 59680, + [SMALL_STATE(1505)] = 59706, + [SMALL_STATE(1506)] = 59730, + [SMALL_STATE(1507)] = 59752, + [SMALL_STATE(1508)] = 59768, + [SMALL_STATE(1509)] = 59790, + [SMALL_STATE(1510)] = 59806, + [SMALL_STATE(1511)] = 59832, + [SMALL_STATE(1512)] = 59846, + [SMALL_STATE(1513)] = 59872, + [SMALL_STATE(1514)] = 59898, + [SMALL_STATE(1515)] = 59924, + [SMALL_STATE(1516)] = 59938, + [SMALL_STATE(1517)] = 59964, + [SMALL_STATE(1518)] = 59987, + [SMALL_STATE(1519)] = 60006, + [SMALL_STATE(1520)] = 60027, + [SMALL_STATE(1521)] = 60050, + [SMALL_STATE(1522)] = 60073, + [SMALL_STATE(1523)] = 60096, + [SMALL_STATE(1524)] = 60119, + [SMALL_STATE(1525)] = 60140, + [SMALL_STATE(1526)] = 60163, + [SMALL_STATE(1527)] = 60186, + [SMALL_STATE(1528)] = 60209, + [SMALL_STATE(1529)] = 60232, + [SMALL_STATE(1530)] = 60255, + [SMALL_STATE(1531)] = 60278, + [SMALL_STATE(1532)] = 60301, + [SMALL_STATE(1533)] = 60324, + [SMALL_STATE(1534)] = 60347, + [SMALL_STATE(1535)] = 60370, + [SMALL_STATE(1536)] = 60393, + [SMALL_STATE(1537)] = 60416, + [SMALL_STATE(1538)] = 60439, + [SMALL_STATE(1539)] = 60462, + [SMALL_STATE(1540)] = 60485, + [SMALL_STATE(1541)] = 60508, + [SMALL_STATE(1542)] = 60531, + [SMALL_STATE(1543)] = 60554, + [SMALL_STATE(1544)] = 60577, + [SMALL_STATE(1545)] = 60596, + [SMALL_STATE(1546)] = 60619, + [SMALL_STATE(1547)] = 60642, + [SMALL_STATE(1548)] = 60665, + [SMALL_STATE(1549)] = 60686, + [SMALL_STATE(1550)] = 60709, + [SMALL_STATE(1551)] = 60726, + [SMALL_STATE(1552)] = 60749, + [SMALL_STATE(1553)] = 60766, + [SMALL_STATE(1554)] = 60789, + [SMALL_STATE(1555)] = 60812, + [SMALL_STATE(1556)] = 60835, + [SMALL_STATE(1557)] = 60858, + [SMALL_STATE(1558)] = 60881, + [SMALL_STATE(1559)] = 60904, + [SMALL_STATE(1560)] = 60923, + [SMALL_STATE(1561)] = 60946, + [SMALL_STATE(1562)] = 60969, + [SMALL_STATE(1563)] = 60992, + [SMALL_STATE(1564)] = 61009, + [SMALL_STATE(1565)] = 61026, + [SMALL_STATE(1566)] = 61043, + [SMALL_STATE(1567)] = 61066, + [SMALL_STATE(1568)] = 61089, + [SMALL_STATE(1569)] = 61112, + [SMALL_STATE(1570)] = 61135, + [SMALL_STATE(1571)] = 61152, + [SMALL_STATE(1572)] = 61169, + [SMALL_STATE(1573)] = 61186, + [SMALL_STATE(1574)] = 61209, + [SMALL_STATE(1575)] = 61226, + [SMALL_STATE(1576)] = 61249, + [SMALL_STATE(1577)] = 61272, + [SMALL_STATE(1578)] = 61295, + [SMALL_STATE(1579)] = 61307, + [SMALL_STATE(1580)] = 61323, + [SMALL_STATE(1581)] = 61339, + [SMALL_STATE(1582)] = 61355, + [SMALL_STATE(1583)] = 61371, + [SMALL_STATE(1584)] = 61391, + [SMALL_STATE(1585)] = 61407, + [SMALL_STATE(1586)] = 61421, + [SMALL_STATE(1587)] = 61439, + [SMALL_STATE(1588)] = 61455, + [SMALL_STATE(1589)] = 61471, + [SMALL_STATE(1590)] = 61491, + [SMALL_STATE(1591)] = 61507, + [SMALL_STATE(1592)] = 61527, + [SMALL_STATE(1593)] = 61547, + [SMALL_STATE(1594)] = 61563, + [SMALL_STATE(1595)] = 61583, + [SMALL_STATE(1596)] = 61603, + [SMALL_STATE(1597)] = 61619, + [SMALL_STATE(1598)] = 61631, + [SMALL_STATE(1599)] = 61651, + [SMALL_STATE(1600)] = 61663, + [SMALL_STATE(1601)] = 61683, + [SMALL_STATE(1602)] = 61703, + [SMALL_STATE(1603)] = 61719, + [SMALL_STATE(1604)] = 61731, + [SMALL_STATE(1605)] = 61743, + [SMALL_STATE(1606)] = 61763, + [SMALL_STATE(1607)] = 61779, + [SMALL_STATE(1608)] = 61791, + [SMALL_STATE(1609)] = 61807, + [SMALL_STATE(1610)] = 61819, + [SMALL_STATE(1611)] = 61831, + [SMALL_STATE(1612)] = 61851, + [SMALL_STATE(1613)] = 61863, + [SMALL_STATE(1614)] = 61879, + [SMALL_STATE(1615)] = 61891, + [SMALL_STATE(1616)] = 61911, + [SMALL_STATE(1617)] = 61931, + [SMALL_STATE(1618)] = 61947, + [SMALL_STATE(1619)] = 61967, + [SMALL_STATE(1620)] = 61983, + [SMALL_STATE(1621)] = 62003, + [SMALL_STATE(1622)] = 62019, + [SMALL_STATE(1623)] = 62039, + [SMALL_STATE(1624)] = 62055, + [SMALL_STATE(1625)] = 62075, + [SMALL_STATE(1626)] = 62091, + [SMALL_STATE(1627)] = 62111, + [SMALL_STATE(1628)] = 62131, + [SMALL_STATE(1629)] = 62151, + [SMALL_STATE(1630)] = 62167, + [SMALL_STATE(1631)] = 62179, + [SMALL_STATE(1632)] = 62195, + [SMALL_STATE(1633)] = 62215, + [SMALL_STATE(1634)] = 62231, + [SMALL_STATE(1635)] = 62251, + [SMALL_STATE(1636)] = 62271, + [SMALL_STATE(1637)] = 62291, + [SMALL_STATE(1638)] = 62305, + [SMALL_STATE(1639)] = 62321, + [SMALL_STATE(1640)] = 62341, + [SMALL_STATE(1641)] = 62353, + [SMALL_STATE(1642)] = 62373, + [SMALL_STATE(1643)] = 62393, + [SMALL_STATE(1644)] = 62413, + [SMALL_STATE(1645)] = 62433, + [SMALL_STATE(1646)] = 62450, + [SMALL_STATE(1647)] = 62463, + [SMALL_STATE(1648)] = 62478, + [SMALL_STATE(1649)] = 62495, + [SMALL_STATE(1650)] = 62508, + [SMALL_STATE(1651)] = 62523, + [SMALL_STATE(1652)] = 62538, + [SMALL_STATE(1653)] = 62555, + [SMALL_STATE(1654)] = 62572, + [SMALL_STATE(1655)] = 62587, + [SMALL_STATE(1656)] = 62604, + [SMALL_STATE(1657)] = 62621, + [SMALL_STATE(1658)] = 62638, + [SMALL_STATE(1659)] = 62655, + [SMALL_STATE(1660)] = 62672, + [SMALL_STATE(1661)] = 62689, + [SMALL_STATE(1662)] = 62702, + [SMALL_STATE(1663)] = 62719, + [SMALL_STATE(1664)] = 62734, + [SMALL_STATE(1665)] = 62751, + [SMALL_STATE(1666)] = 62768, + [SMALL_STATE(1667)] = 62783, + [SMALL_STATE(1668)] = 62800, + [SMALL_STATE(1669)] = 62817, + [SMALL_STATE(1670)] = 62834, + [SMALL_STATE(1671)] = 62849, + [SMALL_STATE(1672)] = 62862, + [SMALL_STATE(1673)] = 62877, + [SMALL_STATE(1674)] = 62894, + [SMALL_STATE(1675)] = 62909, + [SMALL_STATE(1676)] = 62924, + [SMALL_STATE(1677)] = 62941, + [SMALL_STATE(1678)] = 62958, + [SMALL_STATE(1679)] = 62973, + [SMALL_STATE(1680)] = 62988, + [SMALL_STATE(1681)] = 63003, + [SMALL_STATE(1682)] = 63020, + [SMALL_STATE(1683)] = 63037, + [SMALL_STATE(1684)] = 63054, + [SMALL_STATE(1685)] = 63071, + [SMALL_STATE(1686)] = 63088, + [SMALL_STATE(1687)] = 63105, + [SMALL_STATE(1688)] = 63122, + [SMALL_STATE(1689)] = 63139, + [SMALL_STATE(1690)] = 63156, + [SMALL_STATE(1691)] = 63173, + [SMALL_STATE(1692)] = 63188, + [SMALL_STATE(1693)] = 63205, + [SMALL_STATE(1694)] = 63222, + [SMALL_STATE(1695)] = 63239, + [SMALL_STATE(1696)] = 63256, + [SMALL_STATE(1697)] = 63273, + [SMALL_STATE(1698)] = 63290, + [SMALL_STATE(1699)] = 63307, + [SMALL_STATE(1700)] = 63322, + [SMALL_STATE(1701)] = 63339, + [SMALL_STATE(1702)] = 63356, + [SMALL_STATE(1703)] = 63373, + [SMALL_STATE(1704)] = 63390, + [SMALL_STATE(1705)] = 63407, + [SMALL_STATE(1706)] = 63424, + [SMALL_STATE(1707)] = 63441, + [SMALL_STATE(1708)] = 63454, + [SMALL_STATE(1709)] = 63467, + [SMALL_STATE(1710)] = 63484, + [SMALL_STATE(1711)] = 63501, + [SMALL_STATE(1712)] = 63518, + [SMALL_STATE(1713)] = 63535, + [SMALL_STATE(1714)] = 63552, + [SMALL_STATE(1715)] = 63569, + [SMALL_STATE(1716)] = 63584, + [SMALL_STATE(1717)] = 63601, + [SMALL_STATE(1718)] = 63616, + [SMALL_STATE(1719)] = 63633, + [SMALL_STATE(1720)] = 63650, + [SMALL_STATE(1721)] = 63667, + [SMALL_STATE(1722)] = 63682, + [SMALL_STATE(1723)] = 63695, + [SMALL_STATE(1724)] = 63712, + [SMALL_STATE(1725)] = 63727, + [SMALL_STATE(1726)] = 63744, + [SMALL_STATE(1727)] = 63759, + [SMALL_STATE(1728)] = 63774, + [SMALL_STATE(1729)] = 63791, + [SMALL_STATE(1730)] = 63806, + [SMALL_STATE(1731)] = 63823, + [SMALL_STATE(1732)] = 63840, + [SMALL_STATE(1733)] = 63853, + [SMALL_STATE(1734)] = 63868, + [SMALL_STATE(1735)] = 63885, + [SMALL_STATE(1736)] = 63902, + [SMALL_STATE(1737)] = 63916, + [SMALL_STATE(1738)] = 63928, + [SMALL_STATE(1739)] = 63942, + [SMALL_STATE(1740)] = 63956, + [SMALL_STATE(1741)] = 63970, + [SMALL_STATE(1742)] = 63982, + [SMALL_STATE(1743)] = 63996, + [SMALL_STATE(1744)] = 64008, + [SMALL_STATE(1745)] = 64022, + [SMALL_STATE(1746)] = 64034, + [SMALL_STATE(1747)] = 64044, + [SMALL_STATE(1748)] = 64054, + [SMALL_STATE(1749)] = 64068, + [SMALL_STATE(1750)] = 64080, + [SMALL_STATE(1751)] = 64094, + [SMALL_STATE(1752)] = 64108, + [SMALL_STATE(1753)] = 64122, + [SMALL_STATE(1754)] = 64132, + [SMALL_STATE(1755)] = 64142, + [SMALL_STATE(1756)] = 64156, + [SMALL_STATE(1757)] = 64170, + [SMALL_STATE(1758)] = 64184, + [SMALL_STATE(1759)] = 64198, + [SMALL_STATE(1760)] = 64210, + [SMALL_STATE(1761)] = 64222, + [SMALL_STATE(1762)] = 64236, + [SMALL_STATE(1763)] = 64250, + [SMALL_STATE(1764)] = 64262, + [SMALL_STATE(1765)] = 64276, + [SMALL_STATE(1766)] = 64290, + [SMALL_STATE(1767)] = 64304, + [SMALL_STATE(1768)] = 64314, + [SMALL_STATE(1769)] = 64324, + [SMALL_STATE(1770)] = 64338, + [SMALL_STATE(1771)] = 64352, + [SMALL_STATE(1772)] = 64366, + [SMALL_STATE(1773)] = 64380, + [SMALL_STATE(1774)] = 64394, + [SMALL_STATE(1775)] = 64408, + [SMALL_STATE(1776)] = 64418, + [SMALL_STATE(1777)] = 64432, + [SMALL_STATE(1778)] = 64446, + [SMALL_STATE(1779)] = 64456, + [SMALL_STATE(1780)] = 64466, + [SMALL_STATE(1781)] = 64480, + [SMALL_STATE(1782)] = 64490, + [SMALL_STATE(1783)] = 64504, + [SMALL_STATE(1784)] = 64518, + [SMALL_STATE(1785)] = 64528, + [SMALL_STATE(1786)] = 64540, + [SMALL_STATE(1787)] = 64554, + [SMALL_STATE(1788)] = 64568, + [SMALL_STATE(1789)] = 64582, + [SMALL_STATE(1790)] = 64596, + [SMALL_STATE(1791)] = 64610, + [SMALL_STATE(1792)] = 64624, + [SMALL_STATE(1793)] = 64634, + [SMALL_STATE(1794)] = 64648, + [SMALL_STATE(1795)] = 64662, + [SMALL_STATE(1796)] = 64676, + [SMALL_STATE(1797)] = 64690, + [SMALL_STATE(1798)] = 64704, + [SMALL_STATE(1799)] = 64718, + [SMALL_STATE(1800)] = 64732, + [SMALL_STATE(1801)] = 64746, + [SMALL_STATE(1802)] = 64760, + [SMALL_STATE(1803)] = 64770, + [SMALL_STATE(1804)] = 64784, + [SMALL_STATE(1805)] = 64798, + [SMALL_STATE(1806)] = 64812, + [SMALL_STATE(1807)] = 64826, + [SMALL_STATE(1808)] = 64838, + [SMALL_STATE(1809)] = 64852, + [SMALL_STATE(1810)] = 64866, + [SMALL_STATE(1811)] = 64878, + [SMALL_STATE(1812)] = 64888, + [SMALL_STATE(1813)] = 64900, + [SMALL_STATE(1814)] = 64914, + [SMALL_STATE(1815)] = 64928, + [SMALL_STATE(1816)] = 64942, + [SMALL_STATE(1817)] = 64954, + [SMALL_STATE(1818)] = 64968, + [SMALL_STATE(1819)] = 64982, + [SMALL_STATE(1820)] = 64996, + [SMALL_STATE(1821)] = 65008, + [SMALL_STATE(1822)] = 65018, + [SMALL_STATE(1823)] = 65032, + [SMALL_STATE(1824)] = 65044, + [SMALL_STATE(1825)] = 65054, + [SMALL_STATE(1826)] = 65068, + [SMALL_STATE(1827)] = 65080, + [SMALL_STATE(1828)] = 65094, + [SMALL_STATE(1829)] = 65106, + [SMALL_STATE(1830)] = 65118, + [SMALL_STATE(1831)] = 65132, + [SMALL_STATE(1832)] = 65146, + [SMALL_STATE(1833)] = 65156, + [SMALL_STATE(1834)] = 65168, + [SMALL_STATE(1835)] = 65182, + [SMALL_STATE(1836)] = 65196, + [SMALL_STATE(1837)] = 65210, + [SMALL_STATE(1838)] = 65224, + [SMALL_STATE(1839)] = 65238, + [SMALL_STATE(1840)] = 65252, + [SMALL_STATE(1841)] = 65262, + [SMALL_STATE(1842)] = 65276, + [SMALL_STATE(1843)] = 65286, + [SMALL_STATE(1844)] = 65300, + [SMALL_STATE(1845)] = 65310, + [SMALL_STATE(1846)] = 65320, + [SMALL_STATE(1847)] = 65332, + [SMALL_STATE(1848)] = 65342, + [SMALL_STATE(1849)] = 65356, + [SMALL_STATE(1850)] = 65370, + [SMALL_STATE(1851)] = 65382, + [SMALL_STATE(1852)] = 65396, + [SMALL_STATE(1853)] = 65410, + [SMALL_STATE(1854)] = 65424, + [SMALL_STATE(1855)] = 65438, + [SMALL_STATE(1856)] = 65452, + [SMALL_STATE(1857)] = 65466, + [SMALL_STATE(1858)] = 65480, + [SMALL_STATE(1859)] = 65490, + [SMALL_STATE(1860)] = 65504, + [SMALL_STATE(1861)] = 65518, + [SMALL_STATE(1862)] = 65532, + [SMALL_STATE(1863)] = 65546, + [SMALL_STATE(1864)] = 65558, + [SMALL_STATE(1865)] = 65572, + [SMALL_STATE(1866)] = 65586, + [SMALL_STATE(1867)] = 65600, + [SMALL_STATE(1868)] = 65610, + [SMALL_STATE(1869)] = 65622, + [SMALL_STATE(1870)] = 65636, + [SMALL_STATE(1871)] = 65650, + [SMALL_STATE(1872)] = 65664, + [SMALL_STATE(1873)] = 65678, + [SMALL_STATE(1874)] = 65692, + [SMALL_STATE(1875)] = 65704, + [SMALL_STATE(1876)] = 65718, + [SMALL_STATE(1877)] = 65732, + [SMALL_STATE(1878)] = 65746, + [SMALL_STATE(1879)] = 65760, + [SMALL_STATE(1880)] = 65774, + [SMALL_STATE(1881)] = 65788, + [SMALL_STATE(1882)] = 65798, + [SMALL_STATE(1883)] = 65812, + [SMALL_STATE(1884)] = 65826, + [SMALL_STATE(1885)] = 65840, + [SMALL_STATE(1886)] = 65854, + [SMALL_STATE(1887)] = 65868, + [SMALL_STATE(1888)] = 65882, + [SMALL_STATE(1889)] = 65896, + [SMALL_STATE(1890)] = 65910, + [SMALL_STATE(1891)] = 65924, + [SMALL_STATE(1892)] = 65938, + [SMALL_STATE(1893)] = 65952, + [SMALL_STATE(1894)] = 65966, + [SMALL_STATE(1895)] = 65980, + [SMALL_STATE(1896)] = 65992, + [SMALL_STATE(1897)] = 66006, + [SMALL_STATE(1898)] = 66018, + [SMALL_STATE(1899)] = 66032, + [SMALL_STATE(1900)] = 66046, + [SMALL_STATE(1901)] = 66060, + [SMALL_STATE(1902)] = 66074, + [SMALL_STATE(1903)] = 66088, + [SMALL_STATE(1904)] = 66100, + [SMALL_STATE(1905)] = 66114, + [SMALL_STATE(1906)] = 66128, + [SMALL_STATE(1907)] = 66142, + [SMALL_STATE(1908)] = 66156, + [SMALL_STATE(1909)] = 66168, + [SMALL_STATE(1910)] = 66182, + [SMALL_STATE(1911)] = 66196, + [SMALL_STATE(1912)] = 66208, + [SMALL_STATE(1913)] = 66222, + [SMALL_STATE(1914)] = 66236, + [SMALL_STATE(1915)] = 66250, + [SMALL_STATE(1916)] = 66264, + [SMALL_STATE(1917)] = 66278, + [SMALL_STATE(1918)] = 66292, + [SMALL_STATE(1919)] = 66306, + [SMALL_STATE(1920)] = 66320, + [SMALL_STATE(1921)] = 66334, + [SMALL_STATE(1922)] = 66348, + [SMALL_STATE(1923)] = 66362, + [SMALL_STATE(1924)] = 66372, + [SMALL_STATE(1925)] = 66386, + [SMALL_STATE(1926)] = 66396, + [SMALL_STATE(1927)] = 66410, + [SMALL_STATE(1928)] = 66424, + [SMALL_STATE(1929)] = 66434, + [SMALL_STATE(1930)] = 66444, + [SMALL_STATE(1931)] = 66458, + [SMALL_STATE(1932)] = 66472, + [SMALL_STATE(1933)] = 66482, + [SMALL_STATE(1934)] = 66496, + [SMALL_STATE(1935)] = 66506, + [SMALL_STATE(1936)] = 66516, + [SMALL_STATE(1937)] = 66530, + [SMALL_STATE(1938)] = 66540, + [SMALL_STATE(1939)] = 66554, + [SMALL_STATE(1940)] = 66566, + [SMALL_STATE(1941)] = 66580, + [SMALL_STATE(1942)] = 66594, + [SMALL_STATE(1943)] = 66604, + [SMALL_STATE(1944)] = 66618, + [SMALL_STATE(1945)] = 66632, + [SMALL_STATE(1946)] = 66646, + [SMALL_STATE(1947)] = 66658, + [SMALL_STATE(1948)] = 66672, + [SMALL_STATE(1949)] = 66684, + [SMALL_STATE(1950)] = 66698, + [SMALL_STATE(1951)] = 66712, + [SMALL_STATE(1952)] = 66726, + [SMALL_STATE(1953)] = 66740, + [SMALL_STATE(1954)] = 66754, + [SMALL_STATE(1955)] = 66764, + [SMALL_STATE(1956)] = 66778, + [SMALL_STATE(1957)] = 66792, + [SMALL_STATE(1958)] = 66802, + [SMALL_STATE(1959)] = 66816, + [SMALL_STATE(1960)] = 66830, + [SMALL_STATE(1961)] = 66844, + [SMALL_STATE(1962)] = 66858, + [SMALL_STATE(1963)] = 66872, + [SMALL_STATE(1964)] = 66886, + [SMALL_STATE(1965)] = 66896, + [SMALL_STATE(1966)] = 66910, + [SMALL_STATE(1967)] = 66924, + [SMALL_STATE(1968)] = 66938, + [SMALL_STATE(1969)] = 66952, + [SMALL_STATE(1970)] = 66962, + [SMALL_STATE(1971)] = 66976, + [SMALL_STATE(1972)] = 66990, + [SMALL_STATE(1973)] = 67004, + [SMALL_STATE(1974)] = 67018, + [SMALL_STATE(1975)] = 67032, + [SMALL_STATE(1976)] = 67046, + [SMALL_STATE(1977)] = 67060, + [SMALL_STATE(1978)] = 67074, + [SMALL_STATE(1979)] = 67084, + [SMALL_STATE(1980)] = 67098, + [SMALL_STATE(1981)] = 67112, + [SMALL_STATE(1982)] = 67126, + [SMALL_STATE(1983)] = 67140, + [SMALL_STATE(1984)] = 67154, + [SMALL_STATE(1985)] = 67168, + [SMALL_STATE(1986)] = 67182, + [SMALL_STATE(1987)] = 67196, + [SMALL_STATE(1988)] = 67205, + [SMALL_STATE(1989)] = 67214, + [SMALL_STATE(1990)] = 67225, + [SMALL_STATE(1991)] = 67236, + [SMALL_STATE(1992)] = 67247, + [SMALL_STATE(1993)] = 67258, + [SMALL_STATE(1994)] = 67269, + [SMALL_STATE(1995)] = 67280, + [SMALL_STATE(1996)] = 67291, + [SMALL_STATE(1997)] = 67300, + [SMALL_STATE(1998)] = 67311, + [SMALL_STATE(1999)] = 67322, + [SMALL_STATE(2000)] = 67333, + [SMALL_STATE(2001)] = 67344, + [SMALL_STATE(2002)] = 67355, + [SMALL_STATE(2003)] = 67366, + [SMALL_STATE(2004)] = 67377, + [SMALL_STATE(2005)] = 67388, + [SMALL_STATE(2006)] = 67399, + [SMALL_STATE(2007)] = 67410, + [SMALL_STATE(2008)] = 67421, + [SMALL_STATE(2009)] = 67432, + [SMALL_STATE(2010)] = 67443, + [SMALL_STATE(2011)] = 67454, + [SMALL_STATE(2012)] = 67463, + [SMALL_STATE(2013)] = 67474, + [SMALL_STATE(2014)] = 67485, + [SMALL_STATE(2015)] = 67496, + [SMALL_STATE(2016)] = 67507, + [SMALL_STATE(2017)] = 67518, + [SMALL_STATE(2018)] = 67527, + [SMALL_STATE(2019)] = 67538, + [SMALL_STATE(2020)] = 67549, + [SMALL_STATE(2021)] = 67560, + [SMALL_STATE(2022)] = 67571, + [SMALL_STATE(2023)] = 67582, + [SMALL_STATE(2024)] = 67591, + [SMALL_STATE(2025)] = 67602, + [SMALL_STATE(2026)] = 67613, + [SMALL_STATE(2027)] = 67622, + [SMALL_STATE(2028)] = 67633, + [SMALL_STATE(2029)] = 67644, + [SMALL_STATE(2030)] = 67655, + [SMALL_STATE(2031)] = 67664, + [SMALL_STATE(2032)] = 67675, + [SMALL_STATE(2033)] = 67686, + [SMALL_STATE(2034)] = 67697, + [SMALL_STATE(2035)] = 67708, + [SMALL_STATE(2036)] = 67717, + [SMALL_STATE(2037)] = 67728, + [SMALL_STATE(2038)] = 67739, + [SMALL_STATE(2039)] = 67750, + [SMALL_STATE(2040)] = 67761, + [SMALL_STATE(2041)] = 67772, + [SMALL_STATE(2042)] = 67781, + [SMALL_STATE(2043)] = 67792, + [SMALL_STATE(2044)] = 67803, + [SMALL_STATE(2045)] = 67812, + [SMALL_STATE(2046)] = 67823, + [SMALL_STATE(2047)] = 67834, + [SMALL_STATE(2048)] = 67843, + [SMALL_STATE(2049)] = 67854, + [SMALL_STATE(2050)] = 67865, + [SMALL_STATE(2051)] = 67876, + [SMALL_STATE(2052)] = 67887, + [SMALL_STATE(2053)] = 67898, + [SMALL_STATE(2054)] = 67909, + [SMALL_STATE(2055)] = 67920, + [SMALL_STATE(2056)] = 67931, + [SMALL_STATE(2057)] = 67942, + [SMALL_STATE(2058)] = 67953, + [SMALL_STATE(2059)] = 67964, + [SMALL_STATE(2060)] = 67975, + [SMALL_STATE(2061)] = 67986, + [SMALL_STATE(2062)] = 67997, + [SMALL_STATE(2063)] = 68008, + [SMALL_STATE(2064)] = 68019, + [SMALL_STATE(2065)] = 68030, + [SMALL_STATE(2066)] = 68041, + [SMALL_STATE(2067)] = 68052, + [SMALL_STATE(2068)] = 68063, + [SMALL_STATE(2069)] = 68074, + [SMALL_STATE(2070)] = 68085, + [SMALL_STATE(2071)] = 68096, + [SMALL_STATE(2072)] = 68107, + [SMALL_STATE(2073)] = 68116, + [SMALL_STATE(2074)] = 68127, + [SMALL_STATE(2075)] = 68138, + [SMALL_STATE(2076)] = 68149, + [SMALL_STATE(2077)] = 68160, + [SMALL_STATE(2078)] = 68169, + [SMALL_STATE(2079)] = 68180, + [SMALL_STATE(2080)] = 68191, + [SMALL_STATE(2081)] = 68202, + [SMALL_STATE(2082)] = 68211, + [SMALL_STATE(2083)] = 68222, + [SMALL_STATE(2084)] = 68233, + [SMALL_STATE(2085)] = 68244, + [SMALL_STATE(2086)] = 68253, + [SMALL_STATE(2087)] = 68264, + [SMALL_STATE(2088)] = 68273, + [SMALL_STATE(2089)] = 68284, + [SMALL_STATE(2090)] = 68295, + [SMALL_STATE(2091)] = 68304, + [SMALL_STATE(2092)] = 68315, + [SMALL_STATE(2093)] = 68326, + [SMALL_STATE(2094)] = 68337, + [SMALL_STATE(2095)] = 68348, + [SMALL_STATE(2096)] = 68357, + [SMALL_STATE(2097)] = 68368, + [SMALL_STATE(2098)] = 68379, + [SMALL_STATE(2099)] = 68390, + [SMALL_STATE(2100)] = 68401, + [SMALL_STATE(2101)] = 68412, + [SMALL_STATE(2102)] = 68423, + [SMALL_STATE(2103)] = 68434, + [SMALL_STATE(2104)] = 68445, + [SMALL_STATE(2105)] = 68454, + [SMALL_STATE(2106)] = 68465, + [SMALL_STATE(2107)] = 68476, + [SMALL_STATE(2108)] = 68487, + [SMALL_STATE(2109)] = 68498, + [SMALL_STATE(2110)] = 68509, + [SMALL_STATE(2111)] = 68520, + [SMALL_STATE(2112)] = 68531, + [SMALL_STATE(2113)] = 68542, + [SMALL_STATE(2114)] = 68553, + [SMALL_STATE(2115)] = 68564, + [SMALL_STATE(2116)] = 68575, + [SMALL_STATE(2117)] = 68584, + [SMALL_STATE(2118)] = 68595, + [SMALL_STATE(2119)] = 68606, + [SMALL_STATE(2120)] = 68617, + [SMALL_STATE(2121)] = 68628, + [SMALL_STATE(2122)] = 68639, + [SMALL_STATE(2123)] = 68650, + [SMALL_STATE(2124)] = 68661, + [SMALL_STATE(2125)] = 68672, + [SMALL_STATE(2126)] = 68681, + [SMALL_STATE(2127)] = 68692, + [SMALL_STATE(2128)] = 68703, + [SMALL_STATE(2129)] = 68714, + [SMALL_STATE(2130)] = 68725, + [SMALL_STATE(2131)] = 68736, + [SMALL_STATE(2132)] = 68747, + [SMALL_STATE(2133)] = 68758, + [SMALL_STATE(2134)] = 68767, + [SMALL_STATE(2135)] = 68776, + [SMALL_STATE(2136)] = 68785, + [SMALL_STATE(2137)] = 68796, + [SMALL_STATE(2138)] = 68807, + [SMALL_STATE(2139)] = 68818, + [SMALL_STATE(2140)] = 68829, + [SMALL_STATE(2141)] = 68840, + [SMALL_STATE(2142)] = 68851, + [SMALL_STATE(2143)] = 68862, + [SMALL_STATE(2144)] = 68873, + [SMALL_STATE(2145)] = 68884, + [SMALL_STATE(2146)] = 68895, + [SMALL_STATE(2147)] = 68904, + [SMALL_STATE(2148)] = 68915, + [SMALL_STATE(2149)] = 68924, + [SMALL_STATE(2150)] = 68935, + [SMALL_STATE(2151)] = 68946, + [SMALL_STATE(2152)] = 68957, + [SMALL_STATE(2153)] = 68968, + [SMALL_STATE(2154)] = 68979, + [SMALL_STATE(2155)] = 68990, + [SMALL_STATE(2156)] = 68999, + [SMALL_STATE(2157)] = 69010, + [SMALL_STATE(2158)] = 69021, + [SMALL_STATE(2159)] = 69032, + [SMALL_STATE(2160)] = 69043, + [SMALL_STATE(2161)] = 69054, + [SMALL_STATE(2162)] = 69063, + [SMALL_STATE(2163)] = 69072, + [SMALL_STATE(2164)] = 69083, + [SMALL_STATE(2165)] = 69094, + [SMALL_STATE(2166)] = 69105, + [SMALL_STATE(2167)] = 69116, + [SMALL_STATE(2168)] = 69127, + [SMALL_STATE(2169)] = 69135, + [SMALL_STATE(2170)] = 69143, + [SMALL_STATE(2171)] = 69151, + [SMALL_STATE(2172)] = 69159, + [SMALL_STATE(2173)] = 69167, + [SMALL_STATE(2174)] = 69175, + [SMALL_STATE(2175)] = 69183, + [SMALL_STATE(2176)] = 69191, + [SMALL_STATE(2177)] = 69199, + [SMALL_STATE(2178)] = 69207, + [SMALL_STATE(2179)] = 69215, + [SMALL_STATE(2180)] = 69223, + [SMALL_STATE(2181)] = 69231, + [SMALL_STATE(2182)] = 69239, + [SMALL_STATE(2183)] = 69247, + [SMALL_STATE(2184)] = 69255, + [SMALL_STATE(2185)] = 69263, + [SMALL_STATE(2186)] = 69271, + [SMALL_STATE(2187)] = 69279, + [SMALL_STATE(2188)] = 69287, + [SMALL_STATE(2189)] = 69295, + [SMALL_STATE(2190)] = 69303, + [SMALL_STATE(2191)] = 69311, + [SMALL_STATE(2192)] = 69319, + [SMALL_STATE(2193)] = 69327, + [SMALL_STATE(2194)] = 69335, + [SMALL_STATE(2195)] = 69343, + [SMALL_STATE(2196)] = 69351, + [SMALL_STATE(2197)] = 69359, + [SMALL_STATE(2198)] = 69367, + [SMALL_STATE(2199)] = 69375, + [SMALL_STATE(2200)] = 69383, + [SMALL_STATE(2201)] = 69391, + [SMALL_STATE(2202)] = 69399, + [SMALL_STATE(2203)] = 69407, + [SMALL_STATE(2204)] = 69415, + [SMALL_STATE(2205)] = 69423, + [SMALL_STATE(2206)] = 69431, + [SMALL_STATE(2207)] = 69439, + [SMALL_STATE(2208)] = 69447, + [SMALL_STATE(2209)] = 69455, + [SMALL_STATE(2210)] = 69463, + [SMALL_STATE(2211)] = 69471, + [SMALL_STATE(2212)] = 69479, + [SMALL_STATE(2213)] = 69487, + [SMALL_STATE(2214)] = 69495, + [SMALL_STATE(2215)] = 69503, + [SMALL_STATE(2216)] = 69511, + [SMALL_STATE(2217)] = 69519, + [SMALL_STATE(2218)] = 69527, + [SMALL_STATE(2219)] = 69535, + [SMALL_STATE(2220)] = 69543, + [SMALL_STATE(2221)] = 69551, + [SMALL_STATE(2222)] = 69559, + [SMALL_STATE(2223)] = 69567, + [SMALL_STATE(2224)] = 69575, + [SMALL_STATE(2225)] = 69583, + [SMALL_STATE(2226)] = 69591, + [SMALL_STATE(2227)] = 69599, + [SMALL_STATE(2228)] = 69607, + [SMALL_STATE(2229)] = 69615, + [SMALL_STATE(2230)] = 69623, + [SMALL_STATE(2231)] = 69631, + [SMALL_STATE(2232)] = 69639, + [SMALL_STATE(2233)] = 69647, + [SMALL_STATE(2234)] = 69655, + [SMALL_STATE(2235)] = 69663, + [SMALL_STATE(2236)] = 69671, + [SMALL_STATE(2237)] = 69679, + [SMALL_STATE(2238)] = 69687, + [SMALL_STATE(2239)] = 69695, + [SMALL_STATE(2240)] = 69703, + [SMALL_STATE(2241)] = 69711, + [SMALL_STATE(2242)] = 69719, + [SMALL_STATE(2243)] = 69727, + [SMALL_STATE(2244)] = 69735, + [SMALL_STATE(2245)] = 69743, + [SMALL_STATE(2246)] = 69751, + [SMALL_STATE(2247)] = 69759, + [SMALL_STATE(2248)] = 69767, + [SMALL_STATE(2249)] = 69775, + [SMALL_STATE(2250)] = 69783, + [SMALL_STATE(2251)] = 69791, + [SMALL_STATE(2252)] = 69799, + [SMALL_STATE(2253)] = 69807, + [SMALL_STATE(2254)] = 69815, + [SMALL_STATE(2255)] = 69823, + [SMALL_STATE(2256)] = 69831, + [SMALL_STATE(2257)] = 69839, + [SMALL_STATE(2258)] = 69847, + [SMALL_STATE(2259)] = 69855, + [SMALL_STATE(2260)] = 69863, + [SMALL_STATE(2261)] = 69871, + [SMALL_STATE(2262)] = 69879, + [SMALL_STATE(2263)] = 69887, + [SMALL_STATE(2264)] = 69895, + [SMALL_STATE(2265)] = 69903, + [SMALL_STATE(2266)] = 69911, + [SMALL_STATE(2267)] = 69919, + [SMALL_STATE(2268)] = 69927, + [SMALL_STATE(2269)] = 69935, + [SMALL_STATE(2270)] = 69943, + [SMALL_STATE(2271)] = 69951, + [SMALL_STATE(2272)] = 69959, + [SMALL_STATE(2273)] = 69967, + [SMALL_STATE(2274)] = 69975, + [SMALL_STATE(2275)] = 69983, + [SMALL_STATE(2276)] = 69991, + [SMALL_STATE(2277)] = 69999, + [SMALL_STATE(2278)] = 70007, + [SMALL_STATE(2279)] = 70015, + [SMALL_STATE(2280)] = 70023, + [SMALL_STATE(2281)] = 70031, + [SMALL_STATE(2282)] = 70039, + [SMALL_STATE(2283)] = 70047, + [SMALL_STATE(2284)] = 70055, + [SMALL_STATE(2285)] = 70063, + [SMALL_STATE(2286)] = 70071, + [SMALL_STATE(2287)] = 70079, + [SMALL_STATE(2288)] = 70087, + [SMALL_STATE(2289)] = 70095, + [SMALL_STATE(2290)] = 70103, + [SMALL_STATE(2291)] = 70111, + [SMALL_STATE(2292)] = 70119, + [SMALL_STATE(2293)] = 70127, + [SMALL_STATE(2294)] = 70135, + [SMALL_STATE(2295)] = 70143, + [SMALL_STATE(2296)] = 70151, + [SMALL_STATE(2297)] = 70159, + [SMALL_STATE(2298)] = 70167, + [SMALL_STATE(2299)] = 70175, + [SMALL_STATE(2300)] = 70183, + [SMALL_STATE(2301)] = 70191, + [SMALL_STATE(2302)] = 70199, + [SMALL_STATE(2303)] = 70207, + [SMALL_STATE(2304)] = 70215, + [SMALL_STATE(2305)] = 70223, + [SMALL_STATE(2306)] = 70231, + [SMALL_STATE(2307)] = 70239, + [SMALL_STATE(2308)] = 70247, + [SMALL_STATE(2309)] = 70255, + [SMALL_STATE(2310)] = 70263, + [SMALL_STATE(2311)] = 70271, + [SMALL_STATE(2312)] = 70279, + [SMALL_STATE(2313)] = 70287, + [SMALL_STATE(2314)] = 70295, + [SMALL_STATE(2315)] = 70303, + [SMALL_STATE(2316)] = 70311, + [SMALL_STATE(2317)] = 70319, + [SMALL_STATE(2318)] = 70327, + [SMALL_STATE(2319)] = 70335, + [SMALL_STATE(2320)] = 70343, + [SMALL_STATE(2321)] = 70351, + [SMALL_STATE(2322)] = 70359, + [SMALL_STATE(2323)] = 70367, + [SMALL_STATE(2324)] = 70375, + [SMALL_STATE(2325)] = 70383, + [SMALL_STATE(2326)] = 70391, + [SMALL_STATE(2327)] = 70399, + [SMALL_STATE(2328)] = 70407, + [SMALL_STATE(2329)] = 70415, + [SMALL_STATE(2330)] = 70423, + [SMALL_STATE(2331)] = 70431, + [SMALL_STATE(2332)] = 70439, + [SMALL_STATE(2333)] = 70447, + [SMALL_STATE(2334)] = 70455, + [SMALL_STATE(2335)] = 70463, + [SMALL_STATE(2336)] = 70471, + [SMALL_STATE(2337)] = 70479, + [SMALL_STATE(2338)] = 70487, + [SMALL_STATE(2339)] = 70495, + [SMALL_STATE(2340)] = 70503, + [SMALL_STATE(2341)] = 70511, + [SMALL_STATE(2342)] = 70519, + [SMALL_STATE(2343)] = 70527, + [SMALL_STATE(2344)] = 70535, + [SMALL_STATE(2345)] = 70543, + [SMALL_STATE(2346)] = 70551, + [SMALL_STATE(2347)] = 70559, + [SMALL_STATE(2348)] = 70567, + [SMALL_STATE(2349)] = 70575, + [SMALL_STATE(2350)] = 70583, + [SMALL_STATE(2351)] = 70591, + [SMALL_STATE(2352)] = 70599, + [SMALL_STATE(2353)] = 70607, + [SMALL_STATE(2354)] = 70615, + [SMALL_STATE(2355)] = 70623, + [SMALL_STATE(2356)] = 70631, + [SMALL_STATE(2357)] = 70639, + [SMALL_STATE(2358)] = 70647, + [SMALL_STATE(2359)] = 70655, + [SMALL_STATE(2360)] = 70663, + [SMALL_STATE(2361)] = 70671, + [SMALL_STATE(2362)] = 70679, + [SMALL_STATE(2363)] = 70687, + [SMALL_STATE(2364)] = 70695, + [SMALL_STATE(2365)] = 70703, + [SMALL_STATE(2366)] = 70711, + [SMALL_STATE(2367)] = 70719, + [SMALL_STATE(2368)] = 70727, + [SMALL_STATE(2369)] = 70735, + [SMALL_STATE(2370)] = 70743, + [SMALL_STATE(2371)] = 70751, + [SMALL_STATE(2372)] = 70759, + [SMALL_STATE(2373)] = 70767, + [SMALL_STATE(2374)] = 70775, + [SMALL_STATE(2375)] = 70783, + [SMALL_STATE(2376)] = 70791, + [SMALL_STATE(2377)] = 70799, + [SMALL_STATE(2378)] = 70807, + [SMALL_STATE(2379)] = 70815, + [SMALL_STATE(2380)] = 70823, + [SMALL_STATE(2381)] = 70831, + [SMALL_STATE(2382)] = 70839, + [SMALL_STATE(2383)] = 70847, + [SMALL_STATE(2384)] = 70855, + [SMALL_STATE(2385)] = 70863, + [SMALL_STATE(2386)] = 70871, + [SMALL_STATE(2387)] = 70879, + [SMALL_STATE(2388)] = 70887, + [SMALL_STATE(2389)] = 70895, + [SMALL_STATE(2390)] = 70903, + [SMALL_STATE(2391)] = 70911, + [SMALL_STATE(2392)] = 70919, + [SMALL_STATE(2393)] = 70927, + [SMALL_STATE(2394)] = 70935, + [SMALL_STATE(2395)] = 70943, + [SMALL_STATE(2396)] = 70951, + [SMALL_STATE(2397)] = 70959, + [SMALL_STATE(2398)] = 70967, + [SMALL_STATE(2399)] = 70975, + [SMALL_STATE(2400)] = 70983, + [SMALL_STATE(2401)] = 70991, + [SMALL_STATE(2402)] = 70999, + [SMALL_STATE(2403)] = 71007, + [SMALL_STATE(2404)] = 71015, + [SMALL_STATE(2405)] = 71023, + [SMALL_STATE(2406)] = 71031, + [SMALL_STATE(2407)] = 71039, + [SMALL_STATE(2408)] = 71047, + [SMALL_STATE(2409)] = 71055, + [SMALL_STATE(2410)] = 71063, + [SMALL_STATE(2411)] = 71071, + [SMALL_STATE(2412)] = 71079, + [SMALL_STATE(2413)] = 71087, + [SMALL_STATE(2414)] = 71095, + [SMALL_STATE(2415)] = 71103, }; static TSParseActionEntry ts_parse_actions[] = { @@ -113984,2678 +114280,2684 @@ static TSParseActionEntry ts_parse_actions[] = { [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(1066), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1066), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(414), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2286), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(59), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4), - [118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(30), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(97), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(964), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2412), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1404), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(16), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1478), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(728), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(742), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2409), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1994), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(698), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(73), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(531), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(678), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1995), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(89), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2405), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1254), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(17), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1947), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2395), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2392), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2344), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1092), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1370), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1223), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(81), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2057), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1325), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(544), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2335), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(527), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2060), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1176), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1726), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(734), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(975), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2330), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1259), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(975), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1066), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(367), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2322), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(58), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(110), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1024), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2415), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1393), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1503), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(736), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(851), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2414), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1988), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(699), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(550), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1991), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(159), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2411), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1256), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1738), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2408), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2402), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2401), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1091), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1390), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1222), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(81), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2010), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1350), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(556), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2395), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(78), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(17), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(520), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2012), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1194), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1647), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(733), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(975), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2381), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1269), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(975), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 139), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 139), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 57), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 57), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 225), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 225), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 129), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 129), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 88), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 88), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 4), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 4), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__else_tail, 2, .production_id = 98), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__else_tail, 2, .production_id = 98), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 208), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 208), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(709), - [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(59), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(5), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(30), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(97), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(964), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2412), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1775), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(16), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(728), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(984), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(694), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(82), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2082), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(174), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(17), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2075), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(83), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(544), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2335), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(84), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(527), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2060), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1178), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1726), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(734), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(975), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2330), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(975), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(211), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(350), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(348), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(344), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2252), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(514), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(211), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1718), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(501), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(492), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2102), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(865), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2347), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2291), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1447), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1483), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2206), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2054), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(540), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(681), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2211), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1254), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1946), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2212), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2213), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2214), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2166), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1436), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1222), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2053), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1368), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(544), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2278), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2221), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1267), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2221), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 150), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 150), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 110), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 110), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 217), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 217), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 185), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 185), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 68), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 68), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 152), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 152), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 149), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 149), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 201), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 201), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 148), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 148), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 51), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 51), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 200), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 200), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 119), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 119), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 50), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 50), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 199), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 199), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 198), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 198), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 202), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 202), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 197), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 197), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 229), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 229), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 69), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 69), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 232), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 232), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 135), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 135), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 70), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 70), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 134), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 134), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 133), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 133), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 4), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 4), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 196), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 196), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 195), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 195), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 231), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 231), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 223), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 223), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 230), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 230), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 228), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 228), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 217), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 217), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 49), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 49), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 226), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 226), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 72), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 72), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 224), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 224), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 223), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 223), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 5), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 5), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 222), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 222), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 73), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 73), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 155), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 155), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 156), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 156), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 221), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 221), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 80), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 80), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 128), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 128), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 127), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 127), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 119), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 119), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 117), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 117), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 119), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 119), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 126), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 126), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 117), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 117), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 73), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 73), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 119), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 119), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 117), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 117), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 73), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 73), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 125), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 125), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 220), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 220), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 80), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 80), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 5), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 5), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 124), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 124), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(342), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(466), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(467), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(470), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2229), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(504), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(342), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1718), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(501), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 84), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 84), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 139), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 139), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 208), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 208), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 183), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 4), + [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 4), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 88), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 88), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 97), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 97), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__else_tail, 2, .production_id = 98), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__else_tail, 2, .production_id = 98), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 57), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 57), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 163), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 129), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 129), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 225), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 225), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(719), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(58), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(31), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(110), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1024), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2415), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1755), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(736), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1030), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(653), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(83), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2140), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(161), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2029), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(84), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(556), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2395), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(78), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(17), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(520), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2012), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1195), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1647), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(733), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(975), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2381), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(975), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 150), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 150), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 110), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 110), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(233), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(278), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(280), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(281), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2171), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(518), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(233), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1679), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(508), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(492), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2158), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(827), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2350), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2272), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1459), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1480), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2209), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2035), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(552), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(631), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2214), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1256), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1744), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2215), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2216), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2217), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2194), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1453), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1221), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2034), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1356), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(556), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2182), + [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2224), + [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1268), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2224), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 51), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 51), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 117), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 117), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 73), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 73), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 85), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 85), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 84), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 84), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 80), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 80), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 73), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 73), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 166), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 135), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 135), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 134), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 134), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 133), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 133), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 180), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 180), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 134), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 134), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 181), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 181), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 167), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 167), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 80), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 80), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 124), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 124), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 48), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 48), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 184), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 184), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 185), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 185), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 187), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 187), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 73), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 73), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 189), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 189), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 176), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 176), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 148), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 148), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 168), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 168), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 86), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 86), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 152), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 152), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 128), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 128), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 149), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 149), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 72), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 72), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 176), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 176), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 127), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 127), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 119), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 119), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 117), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 117), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 48), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 48), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 119), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 119), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 126), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 126), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 117), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 117), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 70), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 70), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 48), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 48), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 73), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 73), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 196), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 196), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 119), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 119), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 117), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 117), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 125), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 125), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 161), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 161), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 69), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 69), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 48), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 48), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 124), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 124), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(325), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(467), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(468), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(475), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2249), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(501), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(325), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1679), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(508), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 166), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 197), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 197), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 198), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 198), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 199), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 199), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 119), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 119), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 50), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 50), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 200), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 200), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 201), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 201), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 94), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 94), [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 6), [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 6), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 5), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 5), [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 202), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 202), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 73), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 73), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 203), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 203), [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 85), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 85), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 73), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 73), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 73), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 73), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 6), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 6), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 176), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 176), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 189), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 189), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 213), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 213), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 219), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 219), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 119), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 119), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 198), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 198), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 117), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 117), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 116), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 116), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 115), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 115), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 114), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 114), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 86), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 86), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 113), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 113), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 5), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 5), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 112), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 112), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 164), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 187), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 187), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 161), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 161), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 203), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 203), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 49), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 49), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 167), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 167), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 216), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 216), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 124), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 124), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 233), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 233), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 184), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 184), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 168), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 168), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 90), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 90), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 152), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 152), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 5), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 5), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 161), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 161), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 110), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 110), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 73), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 73), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 109), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 109), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 119), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 119), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 204), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 204), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 215), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 215), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 161), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 161), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 169), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 169), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 90), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 90), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 181), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 181), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 213), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 213), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 212), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 212), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 134), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 134), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 5), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 5), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 50), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 50), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 180), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 180), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 176), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 176), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 94), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 94), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 210), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 210), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 204), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 204), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 6), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 6), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 68), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 68), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 119), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 119), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 159), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 159), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 118), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 118), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 152), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 152), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 119), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 119), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 158), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 158), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 116), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 116), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 115), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 115), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 92), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 92), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 161), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 161), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 114), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 114), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 90), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 90), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 233), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 233), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 179), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 113), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 113), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 50), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 50), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 210), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 210), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 212), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 212), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 92), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 92), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 112), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 112), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 213), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 213), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 169), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 169), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 172), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 172), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 215), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 215), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 156), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 156), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 216), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 216), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 217), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 217), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 92), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 92), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 92), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 92), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 49), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 49), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 218), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 218), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 155), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 155), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 49), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 49), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 198), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 198), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 219), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 219), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 213), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 213), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 220), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 220), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 229), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 229), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 221), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 221), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 232), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 232), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 231), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 231), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 222), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 222), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 223), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 223), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 224), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 224), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 223), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 223), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 161), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 161), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 109), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 109), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 110), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 110), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 230), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 230), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 226), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 226), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 217), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 217), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 90), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 90), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 228), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 228), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 4), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 4), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, .production_id = 2), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, .production_id = 2), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1320), - [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(573), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(574), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1458), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2314), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(666), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(544), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2303), - [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1664), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(677), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(676), - [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1334), - [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2088), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1489), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1681), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1454), - [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1843), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1843), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, .production_id = 2), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, .production_id = 2), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2314), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 6), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 67), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 67), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 7), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 7), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 63), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 63), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 2), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 2), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 104), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 104), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 87), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 87), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 122), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 122), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 140), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 140), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 89), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 89), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 186), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 186), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 142), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 142), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [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_type_cast_expression, 3, .production_id = 42), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 130), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 130), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 59), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 59), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 59), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 59), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 58), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 58), - [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 = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 146), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 146), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 60), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 60), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2352), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 60), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 60), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 60), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 60), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 150), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 150), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 150), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 110), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 110), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 110), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 110), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 123), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 209), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 178), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 150), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 177), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 131), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 165), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 111), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 111), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 4, .production_id = 188), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 151), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 52), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 52), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 56), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 56), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 53), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 53), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 53), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 53), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 53), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 53), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 53), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 53), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(393), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(384), - [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(383), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(522), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1466), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1463), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 47), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 132), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 2), REDUCE(sym__pattern, 1, .production_id = 1), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 5), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 190), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 53), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 59), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 53), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 60), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 59), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 214), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 227), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(685), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2), - [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2), SHIFT_REPEAT(691), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 82), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1116), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1694), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 83), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1282), - [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(181), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 109), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 121), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 120), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1220), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1440), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(115), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(62), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1453), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 55), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1445), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(184), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 154), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 136), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1536), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 138), - [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(212), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2008), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 90), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(636), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 61), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), SHIFT_REPEAT(503), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1443), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1322), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(535), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(530), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1447), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2360), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(662), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(556), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2340), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1692), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(667), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(669), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1353), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2044), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(671), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1507), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1724), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1437), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1846), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1846), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, .production_id = 2), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, .production_id = 2), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 175), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, .production_id = 2), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, .production_id = 2), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2360), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 6), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 2), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 2), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 67), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 67), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 66), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 66), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 63), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 63), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 142), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 142), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 122), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 122), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 146), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 146), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 58), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 58), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 59), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 59), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 59), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 59), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 186), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 186), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 130), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 130), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 87), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 87), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 140), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 140), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 104), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 104), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 89), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 89), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 60), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 60), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 60), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 60), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2355), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 60), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 60), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 110), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 110), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 110), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 150), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 150), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 150), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 178), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 177), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 131), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 110), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 150), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 123), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 165), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 209), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 111), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 111), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 151), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 4, .production_id = 188), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 52), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 52), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 56), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 56), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 53), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 53), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 53), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 53), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_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_captured_pattern, 3), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 53), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 53), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_box_pattern, 2), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_box_pattern, 2), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 53), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 53), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(524), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1442), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1432), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(376), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(374), + [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(373), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 47), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 132), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 2), REDUCE(sym__pattern, 1, .production_id = 1), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 5), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 60), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 53), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 59), + [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 53), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 190), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 59), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 214), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 227), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 121), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1292), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(82), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1674), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 82), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 83), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2), + [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2), SHIFT_REPEAT(568), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(582), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 109), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1087), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(111), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1455), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 120), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(63), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1439), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1223), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 136), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1443), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1519), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(566), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 138), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(235), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 61), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 91), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1215), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2100), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 90), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 191), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(104), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 74), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 75), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 78), - [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 61), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 79), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 91), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(533), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 59), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 191), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [5038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1213), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 182), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 211), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 137), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 81), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [5397] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(522), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), + [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 153), SHIFT_REPEAT(506), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 154), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 59), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1471), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 79), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 78), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 75), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 74), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 55), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 61), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 182), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 81), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 137), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 211), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5482] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), }; #ifdef __cplusplus